Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare(strict_types=1); namespace Endroid\QrCode\Writer\Result; use Endroid\QrCo..
Decoded Output download
<?php
declare(strict_types=1);
namespace Endroid\QrCode\Writer\Result;
use Endroid\QrCode\Matrix\MatrixInterface;
final class PngResult extends GdResult
{
public function __construct(
MatrixInterface $matrix,
\GdImage $image,
private readonly int $quality = -1
) {
parent::__construct($matrix, $image);
}
public function getString(): string
{
ob_start();
imagepng($this->image, quality: $this->quality);
return strval(ob_get_clean());
}
public function getMimeType(): string
{
return 'image/png';
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Endroid\QrCode\Writer\Result;
use Endroid\QrCode\Matrix\MatrixInterface;
final class PngResult extends GdResult
{
public function __construct(
MatrixInterface $matrix,
\GdImage $image,
private readonly int $quality = -1
) {
parent::__construct($matrix, $image);
}
public function getString(): string
{
ob_start();
imagepng($this->image, quality: $this->quality);
return strval(ob_get_clean());
}
public function getMimeType(): string
{
return 'image/png';
}
}
Function Calls
None |
Stats
MD5 | 389a1a3451cf2ba3b0e2a3ee82b349b9 |
Eval Count | 0 |
Decode Time | 85 ms |