QRGdImageWEBPTest.php 630 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Class QRGdImageWEBPTest
  4. *
  5. * @created 05.09.2023
  6. * @author smiley <smiley@chillerlan.net>
  7. * @copyright 2023 smiley
  8. * @license MIT
  9. */
  10. namespace chillerlan\QRCodeTest\Output;
  11. use chillerlan\QRCode\QROptions;
  12. use chillerlan\QRCode\Data\QRMatrix;
  13. use chillerlan\QRCode\Output\{QRGdImageWEBP, QROutputInterface};
  14. /**
  15. *
  16. */
  17. final class QRGdImageWEBPTest extends QRGdImageTestAbstract{
  18. protected string $type = QROutputInterface::GDIMAGE_WEBP;
  19. protected function getOutputInterface(QROptions $options, QRMatrix $matrix):QROutputInterface{
  20. return new QRGdImageWEBP($options, $matrix);
  21. }
  22. }