escpos-php icon indicating copy to clipboard operation
escpos-php copied to clipboard

Deprecated warnings in php 8.1 when printing image

Open Bjornar97 opened this issue 2 years ago • 0 comments

Im using php 8.1 and printing image like so:

try {
	$logo = new NativeEscposImage(ABSPATH . "/public/img/hc-shop-logo.png");
	$this->printer->graphics($logo);
} catch (\Throwable $th) {
	error_log("Printer error while printing logo: " . $th->getMessage());
}

When printing I get hundreds of these deprecation warnings: Deprecated: Implicit conversion from float 66.32941176470587 to int loses precision in /home/hcshop/kasse/vendor/mike42/gfx-php/src/Mike42/GfxPhp/RgbRasterImage.php on line 59

Bjornar97 avatar Mar 16 '23 11:03 Bjornar97