🔥 v6.0 first pass: PHP 8.2, remove deprecated elements, add type hints

This commit is contained in:
smiley
2023-11-25 12:49:56 +01:00
parent a301af5b7f
commit 39e3dfe83b
80 changed files with 332 additions and 1029 deletions
+2 -2
View File
@@ -13,7 +13,7 @@
*/
use chillerlan\QRCode\{QRCode, QROptions};
use chillerlan\QRCode\Output\{QROutputInterface, QRGdImagePNG};
use chillerlan\QRCode\Output\QRGdImagePNG;
require_once __DIR__.'/../vendor/autoload.php';
@@ -66,7 +66,7 @@ class QRImageWithText extends QRGdImagePNG{
$background = imagecolorallocate($this->image, ...$textBG);
// allow transparency
if($this->options->imageTransparent && $this->options->outputType !== QROutputInterface::GDIMAGE_JPG){
if($this->options->imageTransparent){
imagecolortransparent($this->image, $background);
}