filmtools / speedpoint
Interfaces, classes and traits for dealing with Speed points in film developing
Requires
- php: ^7.1|^8.0
Requires (Dev)
- php-coveralls/php-coveralls: ^2.0
- phpstan/phpstan: ^0.12
- phpunit/phpunit: ^7.0|^8.0|^9.0
- spatie/phpunit-watcher: ^1.8
This package is auto-updated.
Last update: 2024-11-17 19:04:00 UTC
README
Interfaces, classes and decorators for the speed point of a film developing.
Installation
$ composer require filmtools/speedpoint
Interfaces and Classes
SpeedPointInterface
use FilmTools\SpeedPoint\SpeedPointInterface;
getType() : string|null Returns name or description (film speed evaluation method).
getValue() : float|null Returns the speed point exposure value which yields a certain minimum density.
getSpeedLoss() : float|null Returns the difference between the real speed point and the exposure value where the minimum density had been expected.
getEICorrection() : float|null Converts the "speed loss" to Exposure Index (°DIN) steps. The correction value is negative when the film needs “more light”.
valid() : bool Returns true if the value is valid.
SpeedPointProviderInterface
use FilmTools\SpeedPoint\SpeedPointProviderInterface;
getSpeedPoint() : SpeedPointInterface Returns a Speed point instance.
SpeedPoint
The ready-to-use SpeedPoint class extends SpeedPointAbstract and implements the SpeedPointInterface.
use FilmTools\SpeedPoint\SpeedPoint; // The exposure value where a density is reached $logH = 0.46; // Text description is optional. $sp = new SpeedPoint( $logH ); $sp = new SpeedPoint( $logH, "Description" ); // Examples: $sp->getValue(); // 0.46 $sp->getSpeedLoss(); // 0.16 $sp->getEICorrection(); // -3.0 $sp->getType(); // "Description", may be null.
Development and Testing
$ git clone https://github.com/filmtools/speedpoint.git
$ cd speedpoint
$ composer install
$ composer test