| 1 | <?php |
||
| 5 | class Scale |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * New map of pixels scaled by a constant factor. |
||
| 9 | * |
||
| 10 | * @param array $bitmap |
||
| 11 | * @param int $width |
||
| 12 | * @param int $height |
||
| 13 | * @param float $maximum |
||
| 14 | * @param float $factor |
||
| 15 | * |
||
| 16 | * @return array |
||
| 17 | */ |
||
| 18 | 1 | public function __invoke(array $bitmap, $width, $height, $maximum, $factor) |
|
| 32 | } |
||
| 33 |