1. Go to this page and download the library: Download filmtools/filmspeed 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\FilmSpeed\FilmSpeedInterface;
// Returns the Film speed as DIN number.
// Because the value may be calculated, this value is float.
public function getDin() : float;
// Returns the Film speed as ASA number.
//Because the value may be calculated, this value is float.
public function getAsa() : float;
// Returns the Film speed as ISO-formatted string like "ISO 400/27°"
public function getIso() : string;
use FilmTools\FilmSpeed\FilmSpeedProviderInterface;
use FilmTools\FilmSpeed\FilmSpeedProviderTrait;
// Returns the Film speed.
public function getFilmSpeed() : FilmSpeedInterface;
use FilmTools\FilmSpeed\FilmSpeedAwareInterface;
use FilmTools\FilmSpeed\FilmSpeedAwareTrait;
// Sets the Film speed.
public function setFilmSpeed( FilmSpeedInterface $filmspeed );
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.