1 | <?php |
||
5 | class Difference |
||
6 | { |
||
7 | /** |
||
8 | * Difference between all pixels of two images. |
||
9 | * |
||
10 | * @param array $bitmap1 |
||
11 | * @param array $bitmap2 |
||
12 | * @param int $width |
||
13 | * @param int $height |
||
14 | * @param callable $method |
||
15 | * |
||
16 | * @return array |
||
17 | */ |
||
18 | 1 | public function __invoke(array $bitmap1, array $bitmap2, $width, $height, callable $method) |
|
35 | } |
||
36 |