1. Go to this page and download the library: Download filmtools/developing library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
use FilmTools\Commons\Exposures;
use FilmTools\Commons\Zones;
use FilmTools\Commons\FStops;
use FilmTools\Commons\Densities;
$exposures = new Exposure 0, 0.3, 0.6, 0.9 ]);
$exposures = new Zones([ 0, 1, 2, 3 ]);
$exposures = new FStops([ -5, -4, -3, -2 ]);
$densities = new Densities([ 0, 0.1, 0.4, 0.6 ]);
$developing = new Developing( $exposures, $densities, 600);
use FilmTools\Commons\Exposures;
use FilmTools\Commons\Densities;
// Returns "Exposures" instance
public function getExposures() : ExposuresInterface;
// Returns "Densities" instance
public function getDensities() : DensitiesInterface;
// Returns the developing time.
public function getTime() : int;