-
-
Notifications
You must be signed in to change notification settings - Fork 145
/
ImagickPixelIterator.stub.php
66 lines (44 loc) · 1.64 KB
/
ImagickPixelIterator.stub.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
/** @generate-function-entries */
class ImagickPixelIterator {
public function __construct(Imagick $imagick) {}
public function clear(): bool {}
public static function getPixelIterator(Imagick $imagick) : ImagickPixelIterator {}
public static function getPixelRegionIterator(
Imagick $imagick,
int $x,
int $y,
int $columns,
int $rows): ImagickPixelIterator {}
/** @alias ImagickPixelIterator::clear */
public function destroy(): bool {}
public function getCurrentIteratorRow(): array {}
public function getIteratorRow(): int {}
public function getNextIteratorRow(): array {}
public function getPreviousIteratorRow(): array {}
/** @alias ImagickPixelIterator::getIteratorRow */
public function key(): int {}
/** @alias ImagickPixelIterator::getNextIteratorRow
* @tentative-return-type
*/
public function next(): void {}
/** @alias ImagickPixelIterator::resetIterator
* @tentative-return-type
*/
public function rewind(): void {}
/** @alias ImagickPixelIterator::getCurrentIteratorRow */
public function current(): array {}
public function newPixelIterator(Imagick $imagick): bool {}
public function newPixelRegionIterator(
Imagick $imagick,
int $x,
int $y,
int $columns,
int $rows): bool {}
public function resetIterator(): bool {}
public function setIteratorFirstRow(): bool {}
public function setIteratorLastRow(): bool {}
public function setIteratorRow(int $row): bool {}
public function syncIterator(): bool {}
public function valid(): bool {}
}