QROptions.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /**
  3. * Class QROptions
  4. *
  5. * @created 08.12.2015
  6. * @author Smiley <smiley@chillerlan.net>
  7. * @copyright 2015 Smiley
  8. * @license MIT
  9. */
  10. namespace chillerlan\QRCode;
  11. use chillerlan\Settings\SettingsContainerAbstract;
  12. /**
  13. * The QRCode settings container
  14. *
  15. * @property int $version
  16. * @property int $versionMin
  17. * @property int $versionMax
  18. * @property int $eccLevel
  19. * @property int $maskPattern
  20. * @property bool $addQuietzone
  21. * @property int $quietzoneSize
  22. * @property string $outputType
  23. * @property string|null $outputInterface
  24. * @property string|null $cachefile
  25. * @property string $eol
  26. * @property int $scale
  27. * @property string $cssClass
  28. * @property float $svgOpacity
  29. * @property string $svgDefs
  30. * @property int $svgViewBoxSize
  31. * @property string $svgPreserveAspectRatio
  32. * @property string $svgWidth
  33. * @property string $svgHeight
  34. * @property bool $svgConnectPaths
  35. * @property array $svgExcludeFromConnect
  36. * @property bool $svgDrawCircularModules
  37. * @property float $svgCircleRadius
  38. * @property array $svgKeepAsSquare
  39. * @property string $textDark
  40. * @property string $textLight
  41. * @property string $markupDark
  42. * @property string $markupLight
  43. * @property bool $returnResource
  44. * @property bool $imageBase64
  45. * @property bool $imageTransparent
  46. * @property array $imageTransparencyBG
  47. * @property int $pngCompression
  48. * @property int $jpegQuality
  49. * @property string $imagickFormat
  50. * @property string|null $imagickBG
  51. * @property string $fpdfMeasureUnit
  52. * @property array|null $moduleValues
  53. * @property bool $useImagickIfAvailable
  54. */
  55. class QROptions extends SettingsContainerAbstract{
  56. use QROptionsTrait;
  57. }