* @copyright 2023 smiley * @license MIT * * @noinspection PhpComposerExtensionStubsInspection */ namespace chillerlan\QRCode\Output; use function imagebmp; /** * GdImage bmp output * * @see \imagebmp() */ class QRGdImageBMP extends QRGdImage{ public const MIME_TYPE = 'image/bmp'; /** * @inheritDoc */ protected function renderImage():void{ imagebmp($this->image, null, ($this->options->quality > 0)); } }