SYMBOL INDEX (54 symbols across 9 files) FILE: spec/Zpl/BuilderSpec.php class BuilderSpec (line 9) | class BuilderSpec extends ObjectBehavior method it_creates_zpl_commands_with_string_number_and_boolean_parameters (line 11) | function it_creates_zpl_commands_with_string_number_and_boolean_parame... method it_creates_zpl_commands_from_magic_methods_and_their_arguments (line 16) | function it_creates_zpl_commands_from_magic_methods_and_their_arguments() method it_accepts_a_single_argument_of_image_for_gf_command (line 21) | function it_accepts_a_single_argument_of_image_for_gf_command(ImageCon... method it_can_be_converted_to_a_string (line 30) | function it_can_be_converted_to_a_string() FILE: spec/Zpl/ImageSpec.php class ImageSpec (line 9) | class ImageSpec extends ObjectBehavior method let (line 11) | function let() method it_converts_images_to_compressed_ascii_hexadecimal_bitmaps (line 17) | function it_converts_images_to_compressed_ascii_hexadecimal_bitmaps() method it_converts_large_images_to_compressed_ascii_hexadecimal_bitmaps (line 22) | function it_converts_large_images_to_compressed_ascii_hexadecimal_bitm... method it_gets_the_height_of_the_image_in_rows (line 30) | function it_gets_the_height_of_the_image_in_rows() method it_gets_the_width_of_the_image_in_bytes (line 35) | function it_gets_the_width_of_the_image_in_bytes() FILE: src/Client.php class Client (line 5) | class Client method __construct (line 20) | public function __construct($host, $port = 9100) method __destruct (line 28) | public function __destruct() method printer (line 40) | public static function printer(string $host, int $port = 9100): self method connect (line 52) | protected function connect(string $host, int $port): void method disconnect (line 65) | protected function disconnect(): void method send (line 76) | public function send(string $zpl): void method getLastError (line 89) | protected function getLastError(): array FILE: src/CommunicationException.php class CommunicationException (line 7) | class CommunicationException extends RuntimeException FILE: src/Contracts/Zpl/Decoder.php type Decoder (line 5) | interface Decoder method width (line 12) | public function width(): int; method height (line 19) | public function height(): int; method getBitAt (line 28) | public function getBitAt(int $x, int $y): int; FILE: src/Contracts/Zpl/Image.php type Image (line 5) | interface Image method width (line 12) | public function width(): int; method height (line 19) | public function height(): int; method toAscii (line 26) | public function toAscii(): string; FILE: src/Zpl/Builder.php class Builder (line 7) | class Builder method command (line 21) | public function command(): self method parameter (line 38) | protected function parameter($parameter) method __call (line 54) | public function __call($method, $arguments) method gf (line 66) | public function gf(): self method toZpl (line 88) | public function toZpl(bool $newlines = false): string method __toString (line 98) | public function __toString() FILE: src/Zpl/GdDecoder.php class GdDecoder (line 8) | class GdDecoder implements Decoder method __construct (line 22) | public function __construct($image) method __destruct (line 40) | public function __destruct() method isGdResource (line 51) | public function isGdResource($image): bool method fromResource (line 68) | public static function fromResource($image): self method fromPath (line 80) | public static function fromPath(string $path): self method fromString (line 91) | public static function fromString(string $data): self method width (line 103) | public function width(): int method height (line 111) | public function height(): int method getBitAt (line 119) | public function getBitAt(int $x, int $y): int FILE: src/Zpl/Image.php class Image (line 8) | class Image implements ImageContract method __construct (line 43) | public function __construct(Decoder $decoder) method width (line 55) | public function width(): int method height (line 65) | public function height(): int method toAscii (line 75) | public function toAscii(): string method encode (line 85) | protected function encode(): string method compress (line 120) | protected function compress(string $row, ?string $lastRow): string method compressTrailingZerosOrOnes (line 138) | protected function compressTrailingZerosOrOnes(string $row): string method compressRepeatingCharacters (line 149) | protected function compressRepeatingCharacters(string $row): string