chillerlan-QRCode-QROptions.html 191 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Documentation</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <base href="../">
  8. <link rel="icon" href="images/favicon.ico"/>
  9. <link rel="stylesheet" href="css/normalize.css">
  10. <link rel="stylesheet" href="css/base.css">
  11. <link rel="preconnect" href="https://fonts.gstatic.com">
  12. <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@100;200;300;400;600;700&display=swap" rel="stylesheet">
  13. <link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;600;700&display=swap" rel="stylesheet">
  14. <link rel="stylesheet" href="css/template.css">
  15. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0/css/all.min.css" integrity="sha256-ybRkN9dBjhcS2qrW1z+hfCxq+1aBdwyQM5wlQoQVt/0=" crossorigin="anonymous" />
  16. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/themes/prism-okaidia.css">
  17. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/line-numbers/prism-line-numbers.css">
  18. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/line-highlight/prism-line-highlight.css">
  19. <script src="https://cdn.jsdelivr.net/npm/fuse.js@3.4.6"></script>
  20. <script src="https://cdn.jsdelivr.net/npm/css-vars-ponyfill@2"></script>
  21. <script src="js/template.js"></script>
  22. <script src="js/search.js"></script>
  23. <script defer src="js/searchIndex.js"></script>
  24. </head>
  25. <body id="top">
  26. <header class="phpdocumentor-header phpdocumentor-section">
  27. <h1 class="phpdocumentor-title"><a href="" class="phpdocumentor-title__link">Documentation</a></h1>
  28. <input class="phpdocumentor-header__menu-button" type="checkbox" id="menu-button" name="menu-button" />
  29. <label class="phpdocumentor-header__menu-icon" for="menu-button">
  30. <i class="fas fa-bars"></i>
  31. </label>
  32. <section data-search-form class="phpdocumentor-search">
  33. <label>
  34. <span class="visually-hidden">Search for</span>
  35. <svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
  36. <circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
  37. <line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
  38. </svg>
  39. <input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
  40. </label>
  41. </section>
  42. <nav class="phpdocumentor-topnav">
  43. <ul class="phpdocumentor-topnav__menu">
  44. <li class="phpdocumentor-topnav__menu-item -menu">
  45. <a href="https://php-qrcode.readthedocs.io">
  46. <span>
  47. User Manual
  48. </span>
  49. </a>
  50. </li>
  51. <li class="phpdocumentor-topnav__menu-item -social">
  52. <a href="https://github.com/chillerlan/php-qrcode">
  53. <span>
  54. <i class="fab fa-github"></i>
  55. </span>
  56. </a>
  57. </li>
  58. </ul>
  59. </nav>
  60. </header>
  61. <main class="phpdocumentor">
  62. <div class="phpdocumentor-section">
  63. <input class="phpdocumentor-sidebar__menu-button" type="checkbox" id="sidebar-button" name="sidebar-button" />
  64. <label class="phpdocumentor-sidebar__menu-icon" for="sidebar-button">
  65. Menu
  66. </label>
  67. <aside class="phpdocumentor-column -three phpdocumentor-sidebar">
  68. <section class="phpdocumentor-sidebar__category">
  69. <h2 class="phpdocumentor-sidebar__category-header">Namespaces</h2>
  70. <h4 class="phpdocumentor-sidebar__root-namespace">
  71. <a href="namespaces/chillerlan.html" class="">chillerlan</a>
  72. </h4>
  73. <ul class="phpdocumentor-list">
  74. <li>
  75. <a href="namespaces/chillerlan-qrcode.html" class="">QRCode</a>
  76. </li>
  77. <li>
  78. <a href="namespaces/chillerlan-qrcodetest.html" class="">QRCodeTest</a>
  79. </li>
  80. </ul>
  81. </section>
  82. <section class="phpdocumentor-sidebar__category">
  83. <h2 class="phpdocumentor-sidebar__category-header">Packages</h2>
  84. <h4 class="phpdocumentor-sidebar__root-namespace">
  85. <a href="packages/Application.html" class="">Application</a>
  86. </h4>
  87. </section>
  88. <section class="phpdocumentor-sidebar__category">
  89. <h2 class="phpdocumentor-sidebar__category-header">Reports</h2>
  90. <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/deprecated.html">Deprecated</a></h3>
  91. <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/errors.html">Errors</a></h3>
  92. <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
  93. </section>
  94. <section class="phpdocumentor-sidebar__category">
  95. <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
  96. <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
  97. </section>
  98. </aside>
  99. <div class="phpdocumentor-column -nine phpdocumentor-content">
  100. <section>
  101. <ul class="phpdocumentor-breadcrumbs">
  102. <li class="phpdocumentor-breadcrumb"><a href="namespaces/chillerlan.html">chillerlan</a></li>
  103. <li class="phpdocumentor-breadcrumb"><a href="namespaces/chillerlan-qrcode.html">QRCode</a></li>
  104. </ul>
  105. <article class="phpdocumentor-element -class">
  106. <h2 class="phpdocumentor-content__title">
  107. QROptions
  108. <span class="phpdocumentor-element__extends">
  109. extends <abbr title="\chillerlan\Settings\SettingsContainerAbstract">SettingsContainerAbstract</abbr>
  110. </span>
  111. <div class="phpdocumentor-element__package">
  112. in package
  113. <ul class="phpdocumentor-breadcrumbs">
  114. <li class="phpdocumentor-breadcrumb"><a href="packages/Application.html">Application</a></li>
  115. </ul>
  116. </div>
  117. <span class="phpdocumentor-element__extends">
  118. Uses
  119. <a href="classes/chillerlan-QRCode-QROptionsTrait.html"><abbr title="\chillerlan\QRCode\QROptionsTrait">QROptionsTrait</abbr></a> </span>
  120. </h2>
  121. <div class="phpdocumentor-label-line">
  122. </div>
  123. <aside class="phpdocumentor-element-found-in">
  124. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptions.php"><a href="files/src-qroptions.html"><abbr title="src/QROptions.php">QROptions.php</abbr></a></abbr>
  125. :
  126. <span class="phpdocumentor-element-found-in__line">18</span>
  127. </aside>
  128. <p class="phpdocumentor-summary">The QRCode settings container</p>
  129. <h3 id="toc">
  130. Table of Contents
  131. <a href="classes/chillerlan-QRCode-QROptions.html#toc" class="headerlink"><i class="fas fa-link"></i></a>
  132. </h3>
  133. <h4 id="toc-properties">
  134. Properties
  135. <a href="classes/chillerlan-QRCode-QROptions.html#toc-properties" class="headerlink"><i class="fas fa-link"></i></a>
  136. </h4>
  137. <dl class="phpdocumentor-table-of-contents">
  138. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  139. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_addLogoSpace">$addLogoSpace</a>
  140. <span>
  141. &nbsp;: bool </span>
  142. </dt>
  143. <dd>Toggles logo space creation</dd>
  144. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  145. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_addQuietzone">$addQuietzone</a>
  146. <span>
  147. &nbsp;: bool </span>
  148. </dt>
  149. <dd>Add a &quot;quiet zone&quot; (margin) according to the QR code spec</dd>
  150. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  151. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_bgColor">$bgColor</a>
  152. <span>
  153. &nbsp;: mixed|null </span>
  154. </dt>
  155. <dd>Sets the image background color (if applicable)</dd>
  156. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  157. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_cachefile">$cachefile</a>
  158. <span>
  159. &nbsp;: string|null </span>
  160. </dt>
  161. <dd>Optional cache file path `/path/to/cache.file`</dd>
  162. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  163. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_circleRadius">$circleRadius</a>
  164. <span>
  165. &nbsp;: float </span>
  166. </dt>
  167. <dd>Specifies the radius of the modules when $drawCircularModules is set to true</dd>
  168. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  169. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_connectPaths">$connectPaths</a>
  170. <span>
  171. &nbsp;: bool </span>
  172. </dt>
  173. <dd>Whether to connect the paths for the several module types to avoid weird glitches when using gradients etc.</dd>
  174. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  175. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_cssClass">$cssClass</a>
  176. <span>
  177. &nbsp;: string </span>
  178. </dt>
  179. <dd>A common css class</dd>
  180. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  181. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_drawCircularModules">$drawCircularModules</a>
  182. <span>
  183. &nbsp;: bool </span>
  184. </dt>
  185. <dd>Specify whether to draw the modules as filled circles</dd>
  186. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  187. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_drawLightModules">$drawLightModules</a>
  188. <span>
  189. &nbsp;: bool </span>
  190. </dt>
  191. <dd>Whether to draw the light (false) modules</dd>
  192. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  193. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_eccLevel">$eccLevel</a>
  194. <span>
  195. &nbsp;: int </span>
  196. </dt>
  197. <dd>Error correct level</dd>
  198. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  199. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_eol">$eol</a>
  200. <span>
  201. &nbsp;: string </span>
  202. </dt>
  203. <dd>Newline string</dd>
  204. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  205. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_excludeFromConnect">$excludeFromConnect</a>
  206. <span>
  207. &nbsp;: array&lt;string|int, mixed&gt; </span>
  208. </dt>
  209. <dd>Specify which paths/patterns to exclude from connecting if $connectPaths is set to true</dd>
  210. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  211. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_fpdfMeasureUnit">$fpdfMeasureUnit</a>
  212. <span>
  213. &nbsp;: string </span>
  214. </dt>
  215. <dd>Measurement unit for FPDF output: pt, mm, cm, in (defaults to &quot;pt&quot;)</dd>
  216. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  217. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imageBase64">$imageBase64</a>
  218. <span>
  219. &nbsp;: bool </span>
  220. </dt>
  221. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  222. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imageTransparent">$imageTransparent</a>
  223. <span>
  224. &nbsp;: bool </span>
  225. </dt>
  226. <dd>Toggle transparency</dd>
  227. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  228. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imagickFormat">$imagickFormat</a>
  229. <span>
  230. &nbsp;: string </span>
  231. </dt>
  232. <dd>Imagick output format</dd>
  233. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  234. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_jpegQuality">$jpegQuality</a>
  235. <span>
  236. &nbsp;: int </span>
  237. </dt>
  238. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  239. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_jsonAsBooleans">$jsonAsBooleans</a>
  240. <span>
  241. &nbsp;: bool </span>
  242. </dt>
  243. <dd>Whether to return matrix values in JSON as booleans or $M_TYPE integers</dd>
  244. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  245. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_keepAsSquare">$keepAsSquare</a>
  246. <span>
  247. &nbsp;: array&lt;string|int, mixed&gt; </span>
  248. </dt>
  249. <dd>Specifies which module types to exclude when $drawCircularModules is set to true</dd>
  250. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  251. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_logoSpaceHeight">$logoSpaceHeight</a>
  252. <span>
  253. &nbsp;: int|null </span>
  254. </dt>
  255. <dd>Height of the logo space</dd>
  256. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  257. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_logoSpaceStartX">$logoSpaceStartX</a>
  258. <span>
  259. &nbsp;: int|null </span>
  260. </dt>
  261. <dd>Optional horizontal start position of the logo space (top left corner)</dd>
  262. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  263. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_logoSpaceStartY">$logoSpaceStartY</a>
  264. <span>
  265. &nbsp;: int|null </span>
  266. </dt>
  267. <dd>Optional vertical start position of the logo space (top left corner)</dd>
  268. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  269. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_logoSpaceWidth">$logoSpaceWidth</a>
  270. <span>
  271. &nbsp;: int|null </span>
  272. </dt>
  273. <dd>Width of the logo space</dd>
  274. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  275. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_markupDark">$markupDark</a>
  276. <span>
  277. &nbsp;: string </span>
  278. </dt>
  279. <dd>Markup substitute for dark (CSS value)</dd>
  280. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  281. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_markupLight">$markupLight</a>
  282. <span>
  283. &nbsp;: string </span>
  284. </dt>
  285. <dd>Markup substitute for light (CSS value)</dd>
  286. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  287. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_maskPattern">$maskPattern</a>
  288. <span>
  289. &nbsp;: int </span>
  290. </dt>
  291. <dd>Mask Pattern to use (no value in using, mostly for unit testing purposes)</dd>
  292. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  293. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_moduleValues">$moduleValues</a>
  294. <span>
  295. &nbsp;: array&lt;string|int, mixed&gt;|null </span>
  296. </dt>
  297. <dd>Module values map</dd>
  298. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  299. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_outputBase64">$outputBase64</a>
  300. <span>
  301. &nbsp;: bool </span>
  302. </dt>
  303. <dd>Toggle base64 data URI or raw data output (if applicable)</dd>
  304. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  305. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_outputInterface">$outputInterface</a>
  306. <span>
  307. &nbsp;: string|null </span>
  308. </dt>
  309. <dd>The FQCN of the custom QROutputInterface if $outputType is set to QRCode::OUTPUT_CUSTOM</dd>
  310. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  311. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_outputType">$outputType</a>
  312. <span>
  313. &nbsp;: string </span>
  314. </dt>
  315. <dd>The built-in output type</dd>
  316. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  317. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_pngCompression">$pngCompression</a>
  318. <span>
  319. &nbsp;: int </span>
  320. </dt>
  321. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  322. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_quality">$quality</a>
  323. <span>
  324. &nbsp;: int </span>
  325. </dt>
  326. <dd>Compression quality</dd>
  327. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  328. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_quietzoneSize">$quietzoneSize</a>
  329. <span>
  330. &nbsp;: int </span>
  331. </dt>
  332. <dd>Size of the quiet zone</dd>
  333. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  334. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_readerGrayscale">$readerGrayscale</a>
  335. <span>
  336. &nbsp;: bool </span>
  337. </dt>
  338. <dd>Grayscale the image before reading</dd>
  339. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  340. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_readerIncreaseContrast">$readerIncreaseContrast</a>
  341. <span>
  342. &nbsp;: bool </span>
  343. </dt>
  344. <dd>Increase the contrast before reading</dd>
  345. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  346. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_readerUseImagickIfAvailable">$readerUseImagickIfAvailable</a>
  347. <span>
  348. &nbsp;: bool </span>
  349. </dt>
  350. <dd>Use Imagick (if available) when reading QR Codes</dd>
  351. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  352. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_returnResource">$returnResource</a>
  353. <span>
  354. &nbsp;: bool </span>
  355. </dt>
  356. <dd>Return the image resource instead of a render if applicable.</dd>
  357. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  358. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_scale">$scale</a>
  359. <span>
  360. &nbsp;: int </span>
  361. </dt>
  362. <dd>Pixel size of a QR code module</dd>
  363. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  364. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgAddXmlHeader">$svgAddXmlHeader</a>
  365. <span>
  366. &nbsp;: bool </span>
  367. </dt>
  368. <dd>Whether to add an XML header line or not, e.g. to embed the SVG directly in HTML</dd>
  369. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  370. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgDefs">$svgDefs</a>
  371. <span>
  372. &nbsp;: string </span>
  373. </dt>
  374. <dd>Anything in the &lt;defs&gt; tag</dd>
  375. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  376. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgHeight">$svgHeight</a>
  377. <span>
  378. &nbsp;: string|null </span>
  379. </dt>
  380. <dd>Optional &quot;height&quot; attribute with the specified value (note that the value is not checked!)</dd>
  381. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  382. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgOpacity">$svgOpacity</a>
  383. <span>
  384. &nbsp;: float </span>
  385. </dt>
  386. <dd>SVG opacity</dd>
  387. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  388. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgPreserveAspectRatio">$svgPreserveAspectRatio</a>
  389. <span>
  390. &nbsp;: string </span>
  391. </dt>
  392. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  393. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgViewBoxSize">$svgViewBoxSize</a>
  394. <span>
  395. &nbsp;: int|null </span>
  396. </dt>
  397. <dd>SVG viewBox size. A single integer number which defines width/height of the viewBox attribute.</dd>
  398. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  399. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgWidth">$svgWidth</a>
  400. <span>
  401. &nbsp;: string|null </span>
  402. </dt>
  403. <dd>Optional &quot;width&quot; attribute with the specified value (note that the value is not checked!)</dd>
  404. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  405. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_textDark">$textDark</a>
  406. <span>
  407. &nbsp;: string </span>
  408. </dt>
  409. <dd>String substitute for dark</dd>
  410. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  411. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_textLight">$textLight</a>
  412. <span>
  413. &nbsp;: string </span>
  414. </dt>
  415. <dd>String substitute for light</dd>
  416. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  417. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_textLineStart">$textLineStart</a>
  418. <span>
  419. &nbsp;: string </span>
  420. </dt>
  421. <dd>An optional line prefix, e.g. empty space to align the QR Code in a console</dd>
  422. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  423. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_transparencyColor">$transparencyColor</a>
  424. <span>
  425. &nbsp;: mixed|null </span>
  426. </dt>
  427. <dd>Sets a transparency color for when {@see \chillerlan\QRCode\QROptions::$imageTransparent QROptions::$imageTransparent} is set to true.</dd>
  428. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  429. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_version">$version</a>
  430. <span>
  431. &nbsp;: int </span>
  432. </dt>
  433. <dd>QR Code version number</dd>
  434. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  435. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_versionMax">$versionMax</a>
  436. <span>
  437. &nbsp;: int </span>
  438. </dt>
  439. <dd>Maximum QR version</dd>
  440. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  441. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_versionMin">$versionMin</a>
  442. <span>
  443. &nbsp;: int </span>
  444. </dt>
  445. <dd>Minimum QR version</dd>
  446. </dl>
  447. <h4 id="toc-methods">
  448. Methods
  449. <a href="classes/chillerlan-QRCode-QROptions.html#toc-methods" class="headerlink"><i class="fas fa-link"></i></a>
  450. </h4>
  451. <dl class="phpdocumentor-table-of-contents">
  452. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  453. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_clampLogoSpaceValue">clampLogoSpaceValue()</a>
  454. <span>
  455. &nbsp;: int|null </span>
  456. </dt>
  457. <dd>clamp the logo space values between 0 and maximum length (177 modules at version 40)</dd>
  458. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  459. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_get_imageBase64">get_imageBase64()</a>
  460. <span>
  461. &nbsp;: bool </span>
  462. </dt>
  463. <dd>redirect call to the new variable</dd>
  464. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  465. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_get_jpegQuality">get_jpegQuality()</a>
  466. <span>
  467. &nbsp;: int </span>
  468. </dt>
  469. <dd>redirect call to the new variable</dd>
  470. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  471. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_get_pngCompression">get_pngCompression()</a>
  472. <span>
  473. &nbsp;: int </span>
  474. </dt>
  475. <dd>redirect call to the new variable</dd>
  476. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  477. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_circleRadius">set_circleRadius()</a>
  478. <span>
  479. &nbsp;: void </span>
  480. </dt>
  481. <dd>clamp/set SVG circle radius</dd>
  482. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  483. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_fpdfMeasureUnit">set_fpdfMeasureUnit()</a>
  484. <span>
  485. &nbsp;: void </span>
  486. </dt>
  487. <dd>sets the FPDF measurement unit</dd>
  488. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  489. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_imageBase64">set_imageBase64()</a>
  490. <span>
  491. &nbsp;: void </span>
  492. </dt>
  493. <dd>redirect call to the new variable</dd>
  494. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  495. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_jpegQuality">set_jpegQuality()</a>
  496. <span>
  497. &nbsp;: void </span>
  498. </dt>
  499. <dd>redirect call to the new variable</dd>
  500. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  501. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_logoSpaceHeight">set_logoSpaceHeight()</a>
  502. <span>
  503. &nbsp;: void </span>
  504. </dt>
  505. <dd>clamp/set logo space height</dd>
  506. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  507. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_logoSpaceStartX">set_logoSpaceStartX()</a>
  508. <span>
  509. &nbsp;: void </span>
  510. </dt>
  511. <dd>clamp/set horizontal logo space start</dd>
  512. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  513. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_logoSpaceStartY">set_logoSpaceStartY()</a>
  514. <span>
  515. &nbsp;: void </span>
  516. </dt>
  517. <dd>clamp/set vertical logo space start</dd>
  518. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  519. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_logoSpaceWidth">set_logoSpaceWidth()</a>
  520. <span>
  521. &nbsp;: void </span>
  522. </dt>
  523. <dd>clamp/set logo space width</dd>
  524. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  525. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_pngCompression">set_pngCompression()</a>
  526. <span>
  527. &nbsp;: void </span>
  528. </dt>
  529. <dd>redirect call to the new variable</dd>
  530. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  531. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_quietzoneSize">set_quietzoneSize()</a>
  532. <span>
  533. &nbsp;: void </span>
  534. </dt>
  535. <dd>sets/clamps the quiet zone size</dd>
  536. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  537. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_readerUseImagickIfAvailable">set_readerUseImagickIfAvailable()</a>
  538. <span>
  539. &nbsp;: void </span>
  540. </dt>
  541. <dd>enables Imagick for the QR Code reader if the extension is available</dd>
  542. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  543. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_version">set_version()</a>
  544. <span>
  545. &nbsp;: void </span>
  546. </dt>
  547. <dd>sets/clamps the version number</dd>
  548. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  549. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_versionMax">set_versionMax()</a>
  550. <span>
  551. &nbsp;: void </span>
  552. </dt>
  553. <dd>sets the maximum version number</dd>
  554. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  555. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_versionMin">set_versionMin()</a>
  556. <span>
  557. &nbsp;: void </span>
  558. </dt>
  559. <dd>sets the minimum version number</dd>
  560. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  561. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_setMinMaxVersion">setMinMaxVersion()</a>
  562. <span>
  563. &nbsp;: void </span>
  564. </dt>
  565. <dd>clamp min/max version number</dd>
  566. </dl>
  567. <section class="phpdocumentor-properties">
  568. <h3 class="phpdocumentor-elements__header" id="properties">
  569. Properties
  570. <a href="classes/chillerlan-QRCode-QROptions.html#properties" class="headerlink"><i class="fas fa-link"></i></a>
  571. </h3>
  572. <article
  573. class="
  574. phpdocumentor-element
  575. -property
  576. -protected
  577. "
  578. >
  579. <h4 class="phpdocumentor-element__name" id="property_addLogoSpace">
  580. $addLogoSpace
  581. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_addLogoSpace" class="headerlink"><i class="fas fa-link"></i></a>
  582. <span class="phpdocumentor-element__modifiers">
  583. </span>
  584. </h4>
  585. <aside class="phpdocumentor-element-found-in">
  586. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  587. :
  588. <span class="phpdocumentor-element-found-in__line">216</span>
  589. </aside>
  590. <p class="phpdocumentor-summary">Toggles logo space creation</p>
  591. <code class="phpdocumentor-code phpdocumentor-signature ">
  592. <span class="phpdocumentor-signature__visibility">protected</span>
  593. <span class="phpdocumentor-signature__type">bool</span>
  594. <span class="phpdocumentor-signature__name">$addLogoSpace</span>
  595. = <span class="phpdocumentor-signature__default-value">false</span></code>
  596. </article>
  597. <article
  598. class="
  599. phpdocumentor-element
  600. -property
  601. -protected
  602. "
  603. >
  604. <h4 class="phpdocumentor-element__name" id="property_addQuietzone">
  605. $addQuietzone
  606. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_addQuietzone" class="headerlink"><i class="fas fa-link"></i></a>
  607. <span class="phpdocumentor-element__modifiers">
  608. </span>
  609. </h4>
  610. <aside class="phpdocumentor-element-found-in">
  611. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  612. :
  613. <span class="phpdocumentor-element-found-in__line">74</span>
  614. </aside>
  615. <p class="phpdocumentor-summary">Add a &quot;quiet zone&quot; (margin) according to the QR code spec</p>
  616. <code class="phpdocumentor-code phpdocumentor-signature ">
  617. <span class="phpdocumentor-signature__visibility">protected</span>
  618. <span class="phpdocumentor-signature__type">bool</span>
  619. <span class="phpdocumentor-signature__name">$addQuietzone</span>
  620. = <span class="phpdocumentor-signature__default-value">true</span></code>
  621. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  622. Tags
  623. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_addQuietzone#tags" class="headerlink"><i class="fas fa-link"></i></a>
  624. </h5>
  625. <dl class="phpdocumentor-tag-list">
  626. <dt class="phpdocumentor-tag-list__entry">
  627. <span class="phpdocumentor-tag__name">see</span>
  628. </dt>
  629. <dd class="phpdocumentor-tag-list__definition">
  630. <span class="phpdocumentor-tag-link"><a href="https://www.qrcode.com/en/howto/code.html">https://www.qrcode.com/en/howto/code.html</a></span>
  631. </dd>
  632. </dl>
  633. </article>
  634. <article
  635. class="
  636. phpdocumentor-element
  637. -property
  638. -protected
  639. "
  640. >
  641. <h4 class="phpdocumentor-element__name" id="property_bgColor">
  642. $bgColor
  643. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_bgColor" class="headerlink"><i class="fas fa-link"></i></a>
  644. <span class="phpdocumentor-element__modifiers">
  645. </span>
  646. </h4>
  647. <aside class="phpdocumentor-element-found-in">
  648. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  649. :
  650. <span class="phpdocumentor-element-found-in__line">158</span>
  651. </aside>
  652. <p class="phpdocumentor-summary">Sets the image background color (if applicable)</p>
  653. <code class="phpdocumentor-code phpdocumentor-signature ">
  654. <span class="phpdocumentor-signature__visibility">protected</span>
  655. <span class="phpdocumentor-signature__type">mixed|null</span>
  656. <span class="phpdocumentor-signature__name">$bgColor</span>
  657. = <span class="phpdocumentor-signature__default-value">null</span></code>
  658. <section class="phpdocumentor-description"><ul>
  659. <li>QRImagick: defaults to &quot;white&quot;</li>
  660. <li>QRGdImage: defaults to [255, 255, 255]</li>
  661. <li>QRFpdf: defaults to blank internally (white page)</li>
  662. </ul>
  663. </section>
  664. </article>
  665. <article
  666. class="
  667. phpdocumentor-element
  668. -property
  669. -protected
  670. "
  671. >
  672. <h4 class="phpdocumentor-element__name" id="property_cachefile">
  673. $cachefile
  674. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_cachefile" class="headerlink"><i class="fas fa-link"></i></a>
  675. <span class="phpdocumentor-element__modifiers">
  676. </span>
  677. </h4>
  678. <aside class="phpdocumentor-element-found-in">
  679. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  680. :
  681. <span class="phpdocumentor-element-found-in__line">127</span>
  682. </aside>
  683. <p class="phpdocumentor-summary">Optional cache file path `/path/to/cache.file`</p>
  684. <code class="phpdocumentor-code phpdocumentor-signature ">
  685. <span class="phpdocumentor-signature__visibility">protected</span>
  686. <span class="phpdocumentor-signature__type">string|null</span>
  687. <span class="phpdocumentor-signature__name">$cachefile</span>
  688. = <span class="phpdocumentor-signature__default-value">null</span></code>
  689. <section class="phpdocumentor-description"><p>please note that the $file parameter in QRCode::render*() takes precedence over the $cachefile value</p>
  690. </section>
  691. </article>
  692. <article
  693. class="
  694. phpdocumentor-element
  695. -property
  696. -protected
  697. "
  698. >
  699. <h4 class="phpdocumentor-element__name" id="property_circleRadius">
  700. $circleRadius
  701. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_circleRadius" class="headerlink"><i class="fas fa-link"></i></a>
  702. <span class="phpdocumentor-element__modifiers">
  703. </span>
  704. </h4>
  705. <aside class="phpdocumentor-element-found-in">
  706. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  707. :
  708. <span class="phpdocumentor-element-found-in__line">185</span>
  709. </aside>
  710. <p class="phpdocumentor-summary">Specifies the radius of the modules when $drawCircularModules is set to true</p>
  711. <code class="phpdocumentor-code phpdocumentor-signature ">
  712. <span class="phpdocumentor-signature__visibility">protected</span>
  713. <span class="phpdocumentor-signature__type">float</span>
  714. <span class="phpdocumentor-signature__name">$circleRadius</span>
  715. = <span class="phpdocumentor-signature__default-value">0.45</span></code>
  716. </article>
  717. <article
  718. class="
  719. phpdocumentor-element
  720. -property
  721. -protected
  722. "
  723. >
  724. <h4 class="phpdocumentor-element__name" id="property_connectPaths">
  725. $connectPaths
  726. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_connectPaths" class="headerlink"><i class="fas fa-link"></i></a>
  727. <span class="phpdocumentor-element__modifiers">
  728. </span>
  729. </h4>
  730. <aside class="phpdocumentor-element-found-in">
  731. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  732. :
  733. <span class="phpdocumentor-element-found-in__line">197</span>
  734. </aside>
  735. <p class="phpdocumentor-summary">Whether to connect the paths for the several module types to avoid weird glitches when using gradients etc.</p>
  736. <code class="phpdocumentor-code phpdocumentor-signature ">
  737. <span class="phpdocumentor-signature__visibility">protected</span>
  738. <span class="phpdocumentor-signature__type">bool</span>
  739. <span class="phpdocumentor-signature__name">$connectPaths</span>
  740. = <span class="phpdocumentor-signature__default-value">false</span></code>
  741. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  742. Tags
  743. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_connectPaths#tags" class="headerlink"><i class="fas fa-link"></i></a>
  744. </h5>
  745. <dl class="phpdocumentor-tag-list">
  746. <dt class="phpdocumentor-tag-list__entry">
  747. <span class="phpdocumentor-tag__name">see</span>
  748. </dt>
  749. <dd class="phpdocumentor-tag-list__definition">
  750. <span class="phpdocumentor-tag-link"><a href="https://github.com/chillerlan/php-qrcode/issues/57">https://github.com/chillerlan/php-qrcode/issues/57</a></span>
  751. </dd>
  752. </dl>
  753. </article>
  754. <article
  755. class="
  756. phpdocumentor-element
  757. -property
  758. -protected
  759. "
  760. >
  761. <h4 class="phpdocumentor-element__name" id="property_cssClass">
  762. $cssClass
  763. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_cssClass" class="headerlink"><i class="fas fa-link"></i></a>
  764. <span class="phpdocumentor-element__modifiers">
  765. </span>
  766. </h4>
  767. <aside class="phpdocumentor-element-found-in">
  768. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  769. :
  770. <span class="phpdocumentor-element-found-in__line">322</span>
  771. </aside>
  772. <p class="phpdocumentor-summary">A common css class</p>
  773. <code class="phpdocumentor-code phpdocumentor-signature ">
  774. <span class="phpdocumentor-signature__visibility">protected</span>
  775. <span class="phpdocumentor-signature__type">string</span>
  776. <span class="phpdocumentor-signature__name">$cssClass</span>
  777. = <span class="phpdocumentor-signature__default-value">&#039;qrcode&#039;</span></code>
  778. </article>
  779. <article
  780. class="
  781. phpdocumentor-element
  782. -property
  783. -protected
  784. "
  785. >
  786. <h4 class="phpdocumentor-element__name" id="property_drawCircularModules">
  787. $drawCircularModules
  788. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_drawCircularModules" class="headerlink"><i class="fas fa-link"></i></a>
  789. <span class="phpdocumentor-element__modifiers">
  790. </span>
  791. </h4>
  792. <aside class="phpdocumentor-element-found-in">
  793. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  794. :
  795. <span class="phpdocumentor-element-found-in__line">180</span>
  796. </aside>
  797. <p class="phpdocumentor-summary">Specify whether to draw the modules as filled circles</p>
  798. <code class="phpdocumentor-code phpdocumentor-signature ">
  799. <span class="phpdocumentor-signature__visibility">protected</span>
  800. <span class="phpdocumentor-signature__type">bool</span>
  801. <span class="phpdocumentor-signature__name">$drawCircularModules</span>
  802. = <span class="phpdocumentor-signature__default-value">false</span></code>
  803. <section class="phpdocumentor-description"><p>a note for GDImage output:</p>
  804. <p>if QROptions::$scale is less than 20, the image will be upscaled internally, then the modules will be drawn
  805. using imagefilledellipse() and then scaled back to the expected size</p>
  806. <p>No effect in: QREps, QRFpdf, QRMarkupHTML</p>
  807. </section>
  808. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  809. Tags
  810. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_drawCircularModules#tags" class="headerlink"><i class="fas fa-link"></i></a>
  811. </h5>
  812. <dl class="phpdocumentor-tag-list">
  813. <dt class="phpdocumentor-tag-list__entry">
  814. <span class="phpdocumentor-tag__name">see</span>
  815. </dt>
  816. <dd class="phpdocumentor-tag-list__definition">
  817. <span class="phpdocumentor-tag-link"><a href="https://github.com/chillerlan/php-qrcode/issues/23">https://github.com/chillerlan/php-qrcode/issues/23</a></span>
  818. </dd>
  819. <dt class="phpdocumentor-tag-list__entry">
  820. <span class="phpdocumentor-tag__name">see</span>
  821. </dt>
  822. <dd class="phpdocumentor-tag-list__definition">
  823. <span class="phpdocumentor-tag-link"><a href="https://github.com/chillerlan/php-qrcode/discussions/122">https://github.com/chillerlan/php-qrcode/discussions/122</a></span>
  824. </dd>
  825. </dl>
  826. </article>
  827. <article
  828. class="
  829. phpdocumentor-element
  830. -property
  831. -protected
  832. "
  833. >
  834. <h4 class="phpdocumentor-element__name" id="property_drawLightModules">
  835. $drawLightModules
  836. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_drawLightModules" class="headerlink"><i class="fas fa-link"></i></a>
  837. <span class="phpdocumentor-element__modifiers">
  838. </span>
  839. </h4>
  840. <aside class="phpdocumentor-element-found-in">
  841. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  842. :
  843. <span class="phpdocumentor-element-found-in__line">165</span>
  844. </aside>
  845. <p class="phpdocumentor-summary">Whether to draw the light (false) modules</p>
  846. <code class="phpdocumentor-code phpdocumentor-signature ">
  847. <span class="phpdocumentor-signature__visibility">protected</span>
  848. <span class="phpdocumentor-signature__type">bool</span>
  849. <span class="phpdocumentor-signature__name">$drawLightModules</span>
  850. = <span class="phpdocumentor-signature__default-value">true</span></code>
  851. </article>
  852. <article
  853. class="
  854. phpdocumentor-element
  855. -property
  856. -protected
  857. "
  858. >
  859. <h4 class="phpdocumentor-element__name" id="property_eccLevel">
  860. $eccLevel
  861. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_eccLevel" class="headerlink"><i class="fas fa-link"></i></a>
  862. <span class="phpdocumentor-element__modifiers">
  863. </span>
  864. </h4>
  865. <aside class="phpdocumentor-element-found-in">
  866. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  867. :
  868. <span class="phpdocumentor-element-found-in__line">60</span>
  869. </aside>
  870. <p class="phpdocumentor-summary">Error correct level</p>
  871. <code class="phpdocumentor-code phpdocumentor-signature ">
  872. <span class="phpdocumentor-signature__visibility">protected</span>
  873. <span class="phpdocumentor-signature__type">int</span>
  874. <span class="phpdocumentor-signature__name">$eccLevel</span>
  875. = <span class="phpdocumentor-signature__default-value">\chillerlan\QRCode\Common\EccLevel::L</span></code>
  876. <section class="phpdocumentor-description"><p>QRCode::ECC_X where X is:</p>
  877. <ul>
  878. <li>L =&gt; 7%</li>
  879. <li>M =&gt; 15%</li>
  880. <li>Q =&gt; 25%</li>
  881. <li>H =&gt; 30%</li>
  882. </ul>
  883. </section>
  884. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  885. Tags
  886. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_eccLevel#tags" class="headerlink"><i class="fas fa-link"></i></a>
  887. </h5>
  888. <dl class="phpdocumentor-tag-list">
  889. <dt class="phpdocumentor-tag-list__entry">
  890. <span class="phpdocumentor-tag__name">todo:</span>
  891. </dt>
  892. <dd class="phpdocumentor-tag-list__definition">
  893. <section class="phpdocumentor-description"><p>accept string values (PHP8+)</p>
  894. </section>
  895. </dd>
  896. <dt class="phpdocumentor-tag-list__entry">
  897. <span class="phpdocumentor-tag__name">see</span>
  898. </dt>
  899. <dd class="phpdocumentor-tag-list__definition">
  900. <span class="phpdocumentor-tag-link"><a href="https://github.com/chillerlan/php-qrcode/discussions/160">https://github.com/chillerlan/php-qrcode/discussions/160</a></span>
  901. </dd>
  902. </dl>
  903. </article>
  904. <article
  905. class="
  906. phpdocumentor-element
  907. -property
  908. -protected
  909. "
  910. >
  911. <h4 class="phpdocumentor-element__name" id="property_eol">
  912. $eol
  913. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_eol" class="headerlink"><i class="fas fa-link"></i></a>
  914. <span class="phpdocumentor-element__modifiers">
  915. </span>
  916. </h4>
  917. <aside class="phpdocumentor-element-found-in">
  918. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  919. :
  920. <span class="phpdocumentor-element-found-in__line">143</span>
  921. </aside>
  922. <p class="phpdocumentor-summary">Newline string</p>
  923. <code class="phpdocumentor-code phpdocumentor-signature ">
  924. <span class="phpdocumentor-signature__visibility">protected</span>
  925. <span class="phpdocumentor-signature__type">string</span>
  926. <span class="phpdocumentor-signature__name">$eol</span>
  927. = <span class="phpdocumentor-signature__default-value">PHP_EOL</span></code>
  928. </article>
  929. <article
  930. class="
  931. phpdocumentor-element
  932. -property
  933. -protected
  934. "
  935. >
  936. <h4 class="phpdocumentor-element__name" id="property_excludeFromConnect">
  937. $excludeFromConnect
  938. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_excludeFromConnect" class="headerlink"><i class="fas fa-link"></i></a>
  939. <span class="phpdocumentor-element__modifiers">
  940. </span>
  941. </h4>
  942. <aside class="phpdocumentor-element-found-in">
  943. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  944. :
  945. <span class="phpdocumentor-element-found-in__line">202</span>
  946. </aside>
  947. <p class="phpdocumentor-summary">Specify which paths/patterns to exclude from connecting if $connectPaths is set to true</p>
  948. <code class="phpdocumentor-code phpdocumentor-signature ">
  949. <span class="phpdocumentor-signature__visibility">protected</span>
  950. <span class="phpdocumentor-signature__type">array&lt;string|int, mixed&gt;</span>
  951. <span class="phpdocumentor-signature__name">$excludeFromConnect</span>
  952. = <span class="phpdocumentor-signature__default-value">[]</span></code>
  953. </article>
  954. <article
  955. class="
  956. phpdocumentor-element
  957. -property
  958. -protected
  959. "
  960. >
  961. <h4 class="phpdocumentor-element__name" id="property_fpdfMeasureUnit">
  962. $fpdfMeasureUnit
  963. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_fpdfMeasureUnit" class="headerlink"><i class="fas fa-link"></i></a>
  964. <span class="phpdocumentor-element__modifiers">
  965. </span>
  966. </h4>
  967. <aside class="phpdocumentor-element-found-in">
  968. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  969. :
  970. <span class="phpdocumentor-element-found-in__line">421</span>
  971. </aside>
  972. <p class="phpdocumentor-summary">Measurement unit for FPDF output: pt, mm, cm, in (defaults to &quot;pt&quot;)</p>
  973. <code class="phpdocumentor-code phpdocumentor-signature ">
  974. <span class="phpdocumentor-signature__visibility">protected</span>
  975. <span class="phpdocumentor-signature__type">string</span>
  976. <span class="phpdocumentor-signature__name">$fpdfMeasureUnit</span>
  977. = <span class="phpdocumentor-signature__default-value">&#039;pt&#039;</span></code>
  978. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  979. Tags
  980. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_fpdfMeasureUnit#tags" class="headerlink"><i class="fas fa-link"></i></a>
  981. </h5>
  982. <dl class="phpdocumentor-tag-list">
  983. <dt class="phpdocumentor-tag-list__entry">
  984. <span class="phpdocumentor-tag__name">see</span>
  985. </dt>
  986. <dd class="phpdocumentor-tag-list__definition">
  987. <span class="phpdocumentor-tag-link"><abbr title="\FPDF::__construct()">FPDF::__construct()</abbr></span>
  988. </dd>
  989. </dl>
  990. </article>
  991. <article
  992. class="
  993. phpdocumentor-element
  994. -property
  995. -protected
  996. -deprecated "
  997. >
  998. <h4 class="phpdocumentor-element__name" id="property_imageBase64">
  999. $imageBase64
  1000. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imageBase64" class="headerlink"><i class="fas fa-link"></i></a>
  1001. <span class="phpdocumentor-element__modifiers">
  1002. </span>
  1003. </h4>
  1004. <aside class="phpdocumentor-element-found-in">
  1005. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1006. :
  1007. <span class="phpdocumentor-element-found-in__line">133</span>
  1008. </aside>
  1009. <code class="phpdocumentor-code phpdocumentor-signature -deprecated">
  1010. <span class="phpdocumentor-signature__visibility">protected</span>
  1011. <span class="phpdocumentor-signature__type">bool</span>
  1012. <span class="phpdocumentor-signature__name">$imageBase64</span>
  1013. = <span class="phpdocumentor-signature__default-value">true</span></code>
  1014. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1015. Tags
  1016. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imageBase64#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1017. </h5>
  1018. <dl class="phpdocumentor-tag-list">
  1019. <dt class="phpdocumentor-tag-list__entry">
  1020. <span class="phpdocumentor-tag__name">deprecated</span>
  1021. </dt>
  1022. <dd class="phpdocumentor-tag-list__definition">
  1023. <span class="phpdocumentor-tag-link">5.0.0</span>
  1024. <section class="phpdocumentor-description"><p>use QROptions::$outputBase64 instead</p>
  1025. </section>
  1026. </dd>
  1027. <dt class="phpdocumentor-tag-list__entry">
  1028. <span class="phpdocumentor-tag__name">see</span>
  1029. </dt>
  1030. <dd class="phpdocumentor-tag-list__definition">
  1031. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\QROptions::$outputBase64">QROptions::$outputBase64</abbr></span>
  1032. </dd>
  1033. </dl>
  1034. </article>
  1035. <article
  1036. class="
  1037. phpdocumentor-element
  1038. -property
  1039. -protected
  1040. "
  1041. >
  1042. <h4 class="phpdocumentor-element__name" id="property_imageTransparent">
  1043. $imageTransparent
  1044. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imageTransparent" class="headerlink"><i class="fas fa-link"></i></a>
  1045. <span class="phpdocumentor-element__modifiers">
  1046. </span>
  1047. </h4>
  1048. <aside class="phpdocumentor-element-found-in">
  1049. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1050. :
  1051. <span class="phpdocumentor-element-found-in__line">259</span>
  1052. </aside>
  1053. <p class="phpdocumentor-summary">Toggle transparency</p>
  1054. <code class="phpdocumentor-code phpdocumentor-signature ">
  1055. <span class="phpdocumentor-signature__visibility">protected</span>
  1056. <span class="phpdocumentor-signature__type">bool</span>
  1057. <span class="phpdocumentor-signature__name">$imageTransparent</span>
  1058. = <span class="phpdocumentor-signature__default-value">true</span></code>
  1059. <section class="phpdocumentor-description"><ul>
  1060. <li>QRGdImage and QRImagick: the given \chillerlan\QRCode\QROptions::$transparencyColor is set as transparent</li>
  1061. </ul>
  1062. </section>
  1063. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1064. Tags
  1065. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imageTransparent#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1066. </h5>
  1067. <dl class="phpdocumentor-tag-list">
  1068. <dt class="phpdocumentor-tag-list__entry">
  1069. <span class="phpdocumentor-tag__name">see</span>
  1070. </dt>
  1071. <dd class="phpdocumentor-tag-list__definition">
  1072. <span class="phpdocumentor-tag-link"><a href="https://github.com/chillerlan/php-qrcode/discussions/121">https://github.com/chillerlan/php-qrcode/discussions/121</a></span>
  1073. </dd>
  1074. </dl>
  1075. </article>
  1076. <article
  1077. class="
  1078. phpdocumentor-element
  1079. -property
  1080. -protected
  1081. "
  1082. >
  1083. <h4 class="phpdocumentor-element__name" id="property_imagickFormat">
  1084. $imagickFormat
  1085. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imagickFormat" class="headerlink"><i class="fas fa-link"></i></a>
  1086. <span class="phpdocumentor-element__modifiers">
  1087. </span>
  1088. </h4>
  1089. <aside class="phpdocumentor-element-found-in">
  1090. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1091. :
  1092. <span class="phpdocumentor-element-found-in__line">312</span>
  1093. </aside>
  1094. <p class="phpdocumentor-summary">Imagick output format</p>
  1095. <code class="phpdocumentor-code phpdocumentor-signature ">
  1096. <span class="phpdocumentor-signature__visibility">protected</span>
  1097. <span class="phpdocumentor-signature__type">string</span>
  1098. <span class="phpdocumentor-signature__name">$imagickFormat</span>
  1099. = <span class="phpdocumentor-signature__default-value">&#039;png32&#039;</span></code>
  1100. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1101. Tags
  1102. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imagickFormat#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1103. </h5>
  1104. <dl class="phpdocumentor-tag-list">
  1105. <dt class="phpdocumentor-tag-list__entry">
  1106. <span class="phpdocumentor-tag__name">see</span>
  1107. </dt>
  1108. <dd class="phpdocumentor-tag-list__definition">
  1109. <span class="phpdocumentor-tag-link"><abbr title="\Imagick::setImageFormat()">Imagick::setImageFormat()</abbr></span>
  1110. </dd>
  1111. <dt class="phpdocumentor-tag-list__entry">
  1112. <span class="phpdocumentor-tag__name">see</span>
  1113. </dt>
  1114. <dd class="phpdocumentor-tag-list__definition">
  1115. <span class="phpdocumentor-tag-link"><a href="https://www.imagemagick.org/script/formats.php">https://www.imagemagick.org/script/formats.php</a></span>
  1116. </dd>
  1117. </dl>
  1118. </article>
  1119. <article
  1120. class="
  1121. phpdocumentor-element
  1122. -property
  1123. -protected
  1124. -deprecated "
  1125. >
  1126. <h4 class="phpdocumentor-element__name" id="property_jpegQuality">
  1127. $jpegQuality
  1128. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_jpegQuality" class="headerlink"><i class="fas fa-link"></i></a>
  1129. <span class="phpdocumentor-element__modifiers">
  1130. </span>
  1131. </h4>
  1132. <aside class="phpdocumentor-element-found-in">
  1133. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1134. :
  1135. <span class="phpdocumentor-element-found-in__line">299</span>
  1136. </aside>
  1137. <code class="phpdocumentor-code phpdocumentor-signature -deprecated">
  1138. <span class="phpdocumentor-signature__visibility">protected</span>
  1139. <span class="phpdocumentor-signature__type">int</span>
  1140. <span class="phpdocumentor-signature__name">$jpegQuality</span>
  1141. = <span class="phpdocumentor-signature__default-value">85</span></code>
  1142. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1143. Tags
  1144. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_jpegQuality#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1145. </h5>
  1146. <dl class="phpdocumentor-tag-list">
  1147. <dt class="phpdocumentor-tag-list__entry">
  1148. <span class="phpdocumentor-tag__name">deprecated</span>
  1149. </dt>
  1150. <dd class="phpdocumentor-tag-list__definition">
  1151. <span class="phpdocumentor-tag-link">5.0.0</span>
  1152. <section class="phpdocumentor-description"><p>use QROptions::$quality instead</p>
  1153. </section>
  1154. </dd>
  1155. <dt class="phpdocumentor-tag-list__entry">
  1156. <span class="phpdocumentor-tag__name">see</span>
  1157. </dt>
  1158. <dd class="phpdocumentor-tag-list__definition">
  1159. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\QROptions::$quality">QROptions::$quality</abbr></span>
  1160. </dd>
  1161. </dl>
  1162. </article>
  1163. <article
  1164. class="
  1165. phpdocumentor-element
  1166. -property
  1167. -protected
  1168. "
  1169. >
  1170. <h4 class="phpdocumentor-element__name" id="property_jsonAsBooleans">
  1171. $jsonAsBooleans
  1172. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_jsonAsBooleans" class="headerlink"><i class="fas fa-link"></i></a>
  1173. <span class="phpdocumentor-element__modifiers">
  1174. </span>
  1175. </h4>
  1176. <aside class="phpdocumentor-element-found-in">
  1177. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1178. :
  1179. <span class="phpdocumentor-element-found-in__line">410</span>
  1180. </aside>
  1181. <p class="phpdocumentor-summary">Whether to return matrix values in JSON as booleans or $M_TYPE integers</p>
  1182. <code class="phpdocumentor-code phpdocumentor-signature ">
  1183. <span class="phpdocumentor-signature__visibility">protected</span>
  1184. <span class="phpdocumentor-signature__type">bool</span>
  1185. <span class="phpdocumentor-signature__name">$jsonAsBooleans</span>
  1186. = <span class="phpdocumentor-signature__default-value">false</span></code>
  1187. </article>
  1188. <article
  1189. class="
  1190. phpdocumentor-element
  1191. -property
  1192. -protected
  1193. "
  1194. >
  1195. <h4 class="phpdocumentor-element__name" id="property_keepAsSquare">
  1196. $keepAsSquare
  1197. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_keepAsSquare" class="headerlink"><i class="fas fa-link"></i></a>
  1198. <span class="phpdocumentor-element__modifiers">
  1199. </span>
  1200. </h4>
  1201. <aside class="phpdocumentor-element-found-in">
  1202. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1203. :
  1204. <span class="phpdocumentor-element-found-in__line">190</span>
  1205. </aside>
  1206. <p class="phpdocumentor-summary">Specifies which module types to exclude when $drawCircularModules is set to true</p>
  1207. <code class="phpdocumentor-code phpdocumentor-signature ">
  1208. <span class="phpdocumentor-signature__visibility">protected</span>
  1209. <span class="phpdocumentor-signature__type">array&lt;string|int, mixed&gt;</span>
  1210. <span class="phpdocumentor-signature__name">$keepAsSquare</span>
  1211. = <span class="phpdocumentor-signature__default-value">[]</span></code>
  1212. </article>
  1213. <article
  1214. class="
  1215. phpdocumentor-element
  1216. -property
  1217. -protected
  1218. "
  1219. >
  1220. <h4 class="phpdocumentor-element__name" id="property_logoSpaceHeight">
  1221. $logoSpaceHeight
  1222. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_logoSpaceHeight" class="headerlink"><i class="fas fa-link"></i></a>
  1223. <span class="phpdocumentor-element__modifiers">
  1224. </span>
  1225. </h4>
  1226. <aside class="phpdocumentor-element-found-in">
  1227. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1228. :
  1229. <span class="phpdocumentor-element-found-in__line">230</span>
  1230. </aside>
  1231. <p class="phpdocumentor-summary">Height of the logo space</p>
  1232. <code class="phpdocumentor-code phpdocumentor-signature ">
  1233. <span class="phpdocumentor-signature__visibility">protected</span>
  1234. <span class="phpdocumentor-signature__type">int|null</span>
  1235. <span class="phpdocumentor-signature__name">$logoSpaceHeight</span>
  1236. = <span class="phpdocumentor-signature__default-value">null</span></code>
  1237. <section class="phpdocumentor-description"><p>if only either $logoSpaceWidth or $logoSpaceHeight is given, the logo space is assumed a square of that size</p>
  1238. </section>
  1239. </article>
  1240. <article
  1241. class="
  1242. phpdocumentor-element
  1243. -property
  1244. -protected
  1245. "
  1246. >
  1247. <h4 class="phpdocumentor-element__name" id="property_logoSpaceStartX">
  1248. $logoSpaceStartX
  1249. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_logoSpaceStartX" class="headerlink"><i class="fas fa-link"></i></a>
  1250. <span class="phpdocumentor-element__modifiers">
  1251. </span>
  1252. </h4>
  1253. <aside class="phpdocumentor-element-found-in">
  1254. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1255. :
  1256. <span class="phpdocumentor-element-found-in__line">235</span>
  1257. </aside>
  1258. <p class="phpdocumentor-summary">Optional horizontal start position of the logo space (top left corner)</p>
  1259. <code class="phpdocumentor-code phpdocumentor-signature ">
  1260. <span class="phpdocumentor-signature__visibility">protected</span>
  1261. <span class="phpdocumentor-signature__type">int|null</span>
  1262. <span class="phpdocumentor-signature__name">$logoSpaceStartX</span>
  1263. = <span class="phpdocumentor-signature__default-value">null</span></code>
  1264. </article>
  1265. <article
  1266. class="
  1267. phpdocumentor-element
  1268. -property
  1269. -protected
  1270. "
  1271. >
  1272. <h4 class="phpdocumentor-element__name" id="property_logoSpaceStartY">
  1273. $logoSpaceStartY
  1274. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_logoSpaceStartY" class="headerlink"><i class="fas fa-link"></i></a>
  1275. <span class="phpdocumentor-element__modifiers">
  1276. </span>
  1277. </h4>
  1278. <aside class="phpdocumentor-element-found-in">
  1279. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1280. :
  1281. <span class="phpdocumentor-element-found-in__line">240</span>
  1282. </aside>
  1283. <p class="phpdocumentor-summary">Optional vertical start position of the logo space (top left corner)</p>
  1284. <code class="phpdocumentor-code phpdocumentor-signature ">
  1285. <span class="phpdocumentor-signature__visibility">protected</span>
  1286. <span class="phpdocumentor-signature__type">int|null</span>
  1287. <span class="phpdocumentor-signature__name">$logoSpaceStartY</span>
  1288. = <span class="phpdocumentor-signature__default-value">null</span></code>
  1289. </article>
  1290. <article
  1291. class="
  1292. phpdocumentor-element
  1293. -property
  1294. -protected
  1295. "
  1296. >
  1297. <h4 class="phpdocumentor-element__name" id="property_logoSpaceWidth">
  1298. $logoSpaceWidth
  1299. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_logoSpaceWidth" class="headerlink"><i class="fas fa-link"></i></a>
  1300. <span class="phpdocumentor-element__modifiers">
  1301. </span>
  1302. </h4>
  1303. <aside class="phpdocumentor-element-found-in">
  1304. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1305. :
  1306. <span class="phpdocumentor-element-found-in__line">223</span>
  1307. </aside>
  1308. <p class="phpdocumentor-summary">Width of the logo space</p>
  1309. <code class="phpdocumentor-code phpdocumentor-signature ">
  1310. <span class="phpdocumentor-signature__visibility">protected</span>
  1311. <span class="phpdocumentor-signature__type">int|null</span>
  1312. <span class="phpdocumentor-signature__name">$logoSpaceWidth</span>
  1313. = <span class="phpdocumentor-signature__default-value">null</span></code>
  1314. <section class="phpdocumentor-description"><p>if only either $logoSpaceWidth or $logoSpaceHeight is given, the logo space is assumed a square of that size</p>
  1315. </section>
  1316. </article>
  1317. <article
  1318. class="
  1319. phpdocumentor-element
  1320. -property
  1321. -protected
  1322. "
  1323. >
  1324. <h4 class="phpdocumentor-element__name" id="property_markupDark">
  1325. $markupDark
  1326. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_markupDark" class="headerlink"><i class="fas fa-link"></i></a>
  1327. <span class="phpdocumentor-element__modifiers">
  1328. </span>
  1329. </h4>
  1330. <aside class="phpdocumentor-element-found-in">
  1331. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1332. :
  1333. <span class="phpdocumentor-element-found-in__line">327</span>
  1334. </aside>
  1335. <p class="phpdocumentor-summary">Markup substitute for dark (CSS value)</p>
  1336. <code class="phpdocumentor-code phpdocumentor-signature ">
  1337. <span class="phpdocumentor-signature__visibility">protected</span>
  1338. <span class="phpdocumentor-signature__type">string</span>
  1339. <span class="phpdocumentor-signature__name">$markupDark</span>
  1340. = <span class="phpdocumentor-signature__default-value">&#039;#000&#039;</span></code>
  1341. </article>
  1342. <article
  1343. class="
  1344. phpdocumentor-element
  1345. -property
  1346. -protected
  1347. "
  1348. >
  1349. <h4 class="phpdocumentor-element__name" id="property_markupLight">
  1350. $markupLight
  1351. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_markupLight" class="headerlink"><i class="fas fa-link"></i></a>
  1352. <span class="phpdocumentor-element__modifiers">
  1353. </span>
  1354. </h4>
  1355. <aside class="phpdocumentor-element-found-in">
  1356. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1357. :
  1358. <span class="phpdocumentor-element-found-in__line">332</span>
  1359. </aside>
  1360. <p class="phpdocumentor-summary">Markup substitute for light (CSS value)</p>
  1361. <code class="phpdocumentor-code phpdocumentor-signature ">
  1362. <span class="phpdocumentor-signature__visibility">protected</span>
  1363. <span class="phpdocumentor-signature__type">string</span>
  1364. <span class="phpdocumentor-signature__name">$markupLight</span>
  1365. = <span class="phpdocumentor-signature__default-value">&#039;#fff&#039;</span></code>
  1366. </article>
  1367. <article
  1368. class="
  1369. phpdocumentor-element
  1370. -property
  1371. -protected
  1372. "
  1373. >
  1374. <h4 class="phpdocumentor-element__name" id="property_maskPattern">
  1375. $maskPattern
  1376. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_maskPattern" class="headerlink"><i class="fas fa-link"></i></a>
  1377. <span class="phpdocumentor-element__modifiers">
  1378. </span>
  1379. </h4>
  1380. <aside class="phpdocumentor-element-found-in">
  1381. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1382. :
  1383. <span class="phpdocumentor-element-found-in__line">67</span>
  1384. </aside>
  1385. <p class="phpdocumentor-summary">Mask Pattern to use (no value in using, mostly for unit testing purposes)</p>
  1386. <code class="phpdocumentor-code phpdocumentor-signature ">
  1387. <span class="phpdocumentor-signature__visibility">protected</span>
  1388. <span class="phpdocumentor-signature__type">int</span>
  1389. <span class="phpdocumentor-signature__name">$maskPattern</span>
  1390. = <span class="phpdocumentor-signature__default-value">\chillerlan\QRCode\Common\MaskPattern::AUTO</span></code>
  1391. <section class="phpdocumentor-description"><p>[0...7] or MaskPattern::PATTERN_AUTO</p>
  1392. </section>
  1393. </article>
  1394. <article
  1395. class="
  1396. phpdocumentor-element
  1397. -property
  1398. -protected
  1399. "
  1400. >
  1401. <h4 class="phpdocumentor-element__name" id="property_moduleValues">
  1402. $moduleValues
  1403. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_moduleValues" class="headerlink"><i class="fas fa-link"></i></a>
  1404. <span class="phpdocumentor-element__modifiers">
  1405. </span>
  1406. </h4>
  1407. <aside class="phpdocumentor-element-found-in">
  1408. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1409. :
  1410. <span class="phpdocumentor-element-found-in__line">211</span>
  1411. </aside>
  1412. <p class="phpdocumentor-summary">Module values map</p>
  1413. <code class="phpdocumentor-code phpdocumentor-signature ">
  1414. <span class="phpdocumentor-signature__visibility">protected</span>
  1415. <span class="phpdocumentor-signature__type">array&lt;string|int, mixed&gt;|null</span>
  1416. <span class="phpdocumentor-signature__name">$moduleValues</span>
  1417. = <span class="phpdocumentor-signature__default-value">null</span></code>
  1418. <section class="phpdocumentor-description"><ul>
  1419. <li>QRImagick, QRMarkupHTML, QRMarkupSVG: #ABCDEF, cssname, rgb(), rgba()...</li>
  1420. <li>QREps, QRFpdf, QRGdImage: [R, G, B] // 0-255</li>
  1421. <li>QREps: [C, M, Y, K] // 0-255</li>
  1422. </ul>
  1423. </section>
  1424. </article>
  1425. <article
  1426. class="
  1427. phpdocumentor-element
  1428. -property
  1429. -protected
  1430. "
  1431. >
  1432. <h4 class="phpdocumentor-element__name" id="property_outputBase64">
  1433. $outputBase64
  1434. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_outputBase64" class="headerlink"><i class="fas fa-link"></i></a>
  1435. <span class="phpdocumentor-element__modifiers">
  1436. </span>
  1437. </h4>
  1438. <aside class="phpdocumentor-element-found-in">
  1439. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1440. :
  1441. <span class="phpdocumentor-element-found-in__line">138</span>
  1442. </aside>
  1443. <p class="phpdocumentor-summary">Toggle base64 data URI or raw data output (if applicable)</p>
  1444. <code class="phpdocumentor-code phpdocumentor-signature ">
  1445. <span class="phpdocumentor-signature__visibility">protected</span>
  1446. <span class="phpdocumentor-signature__type">bool</span>
  1447. <span class="phpdocumentor-signature__name">$outputBase64</span>
  1448. = <span class="phpdocumentor-signature__default-value">true</span></code>
  1449. </article>
  1450. <article
  1451. class="
  1452. phpdocumentor-element
  1453. -property
  1454. -protected
  1455. "
  1456. >
  1457. <h4 class="phpdocumentor-element__name" id="property_outputInterface">
  1458. $outputInterface
  1459. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_outputInterface" class="headerlink"><i class="fas fa-link"></i></a>
  1460. <span class="phpdocumentor-element__modifiers">
  1461. </span>
  1462. </h4>
  1463. <aside class="phpdocumentor-element-found-in">
  1464. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1465. :
  1466. <span class="phpdocumentor-element-found-in__line">104</span>
  1467. </aside>
  1468. <p class="phpdocumentor-summary">The FQCN of the custom QROutputInterface if $outputType is set to QRCode::OUTPUT_CUSTOM</p>
  1469. <code class="phpdocumentor-code phpdocumentor-signature ">
  1470. <span class="phpdocumentor-signature__visibility">protected</span>
  1471. <span class="phpdocumentor-signature__type">string|null</span>
  1472. <span class="phpdocumentor-signature__name">$outputInterface</span>
  1473. = <span class="phpdocumentor-signature__default-value">null</span></code>
  1474. </article>
  1475. <article
  1476. class="
  1477. phpdocumentor-element
  1478. -property
  1479. -protected
  1480. "
  1481. >
  1482. <h4 class="phpdocumentor-element__name" id="property_outputType">
  1483. $outputType
  1484. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_outputType" class="headerlink"><i class="fas fa-link"></i></a>
  1485. <span class="phpdocumentor-element__modifiers">
  1486. </span>
  1487. </h4>
  1488. <aside class="phpdocumentor-element-found-in">
  1489. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1490. :
  1491. <span class="phpdocumentor-element-found-in__line">99</span>
  1492. </aside>
  1493. <p class="phpdocumentor-summary">The built-in output type</p>
  1494. <code class="phpdocumentor-code phpdocumentor-signature ">
  1495. <span class="phpdocumentor-signature__visibility">protected</span>
  1496. <span class="phpdocumentor-signature__type">string</span>
  1497. <span class="phpdocumentor-signature__name">$outputType</span>
  1498. = <span class="phpdocumentor-signature__default-value">\chillerlan\QRCode\Output\QROutputInterface::MARKUP_SVG</span></code>
  1499. <section class="phpdocumentor-description"><ul>
  1500. <li>QROutputInterface::MARKUP_XXXX where XXXX = HTML, SVG</li>
  1501. <li>QROutputInterface::GDIMAGE_XXX where XXX = BMP, GIF, JPG, PNG, WEBP</li>
  1502. <li>QROutputInterface::STRING_XXXX where XXXX = TEXT, JSON</li>
  1503. <li>QROutputInterface::IMAGICK</li>
  1504. <li>QROutputInterface::EPS</li>
  1505. <li>QROutputInterface::FPDF</li>
  1506. <li>QROutputInterface::CUSTOM</li>
  1507. </ul>
  1508. </section>
  1509. </article>
  1510. <article
  1511. class="
  1512. phpdocumentor-element
  1513. -property
  1514. -protected
  1515. -deprecated "
  1516. >
  1517. <h4 class="phpdocumentor-element__name" id="property_pngCompression">
  1518. $pngCompression
  1519. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_pngCompression" class="headerlink"><i class="fas fa-link"></i></a>
  1520. <span class="phpdocumentor-element__modifiers">
  1521. </span>
  1522. </h4>
  1523. <aside class="phpdocumentor-element-found-in">
  1524. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1525. :
  1526. <span class="phpdocumentor-element-found-in__line">293</span>
  1527. </aside>
  1528. <code class="phpdocumentor-code phpdocumentor-signature -deprecated">
  1529. <span class="phpdocumentor-signature__visibility">protected</span>
  1530. <span class="phpdocumentor-signature__type">int</span>
  1531. <span class="phpdocumentor-signature__name">$pngCompression</span>
  1532. = <span class="phpdocumentor-signature__default-value">-1</span></code>
  1533. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1534. Tags
  1535. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_pngCompression#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1536. </h5>
  1537. <dl class="phpdocumentor-tag-list">
  1538. <dt class="phpdocumentor-tag-list__entry">
  1539. <span class="phpdocumentor-tag__name">deprecated</span>
  1540. </dt>
  1541. <dd class="phpdocumentor-tag-list__definition">
  1542. <span class="phpdocumentor-tag-link">5.0.0</span>
  1543. <section class="phpdocumentor-description"><p>use QROptions::$quality instead</p>
  1544. </section>
  1545. </dd>
  1546. <dt class="phpdocumentor-tag-list__entry">
  1547. <span class="phpdocumentor-tag__name">see</span>
  1548. </dt>
  1549. <dd class="phpdocumentor-tag-list__definition">
  1550. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\QROptions::$quality">QROptions::$quality</abbr></span>
  1551. </dd>
  1552. </dl>
  1553. </article>
  1554. <article
  1555. class="
  1556. phpdocumentor-element
  1557. -property
  1558. -protected
  1559. "
  1560. >
  1561. <h4 class="phpdocumentor-element__name" id="property_quality">
  1562. $quality
  1563. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_quality" class="headerlink"><i class="fas fa-link"></i></a>
  1564. <span class="phpdocumentor-element__modifiers">
  1565. </span>
  1566. </h4>
  1567. <aside class="phpdocumentor-element-found-in">
  1568. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1569. :
  1570. <span class="phpdocumentor-element-found-in__line">282</span>
  1571. </aside>
  1572. <p class="phpdocumentor-summary">Compression quality</p>
  1573. <code class="phpdocumentor-code phpdocumentor-signature ">
  1574. <span class="phpdocumentor-signature__visibility">protected</span>
  1575. <span class="phpdocumentor-signature__type">int</span>
  1576. <span class="phpdocumentor-signature__name">$quality</span>
  1577. = <span class="phpdocumentor-signature__default-value">-1</span></code>
  1578. <section class="phpdocumentor-description"><p>The given value depends on the used output type:</p>
  1579. </section>
  1580. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1581. Tags
  1582. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_quality#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1583. </h5>
  1584. <dl class="phpdocumentor-tag-list">
  1585. <dt class="phpdocumentor-tag-list__entry">
  1586. <span class="phpdocumentor-tag__name">see</span>
  1587. </dt>
  1588. <dd class="phpdocumentor-tag-list__definition">
  1589. <span class="phpdocumentor-tag-link"><abbr title="\imagejpeg()">imagejpeg()</abbr></span>
  1590. </dd>
  1591. <dt class="phpdocumentor-tag-list__entry">
  1592. <span class="phpdocumentor-tag__name">see</span>
  1593. </dt>
  1594. <dd class="phpdocumentor-tag-list__definition">
  1595. <span class="phpdocumentor-tag-link"><abbr title="\imagepng()">imagepng()</abbr></span>
  1596. </dd>
  1597. <dt class="phpdocumentor-tag-list__entry">
  1598. <span class="phpdocumentor-tag__name">see</span>
  1599. </dt>
  1600. <dd class="phpdocumentor-tag-list__definition">
  1601. <span class="phpdocumentor-tag-link"><abbr title="\imagewebp()">imagewebp()</abbr></span>
  1602. </dd>
  1603. <dt class="phpdocumentor-tag-list__entry">
  1604. <span class="phpdocumentor-tag__name">see</span>
  1605. </dt>
  1606. <dd class="phpdocumentor-tag-list__definition">
  1607. <span class="phpdocumentor-tag-link"><abbr title="\Imagick::setImageCompressionQuality()">Imagick::setImageCompressionQuality()</abbr></span>
  1608. </dd>
  1609. </dl>
  1610. </article>
  1611. <article
  1612. class="
  1613. phpdocumentor-element
  1614. -property
  1615. -protected
  1616. "
  1617. >
  1618. <h4 class="phpdocumentor-element__name" id="property_quietzoneSize">
  1619. $quietzoneSize
  1620. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_quietzoneSize" class="headerlink"><i class="fas fa-link"></i></a>
  1621. <span class="phpdocumentor-element__modifiers">
  1622. </span>
  1623. </h4>
  1624. <aside class="phpdocumentor-element-found-in">
  1625. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1626. :
  1627. <span class="phpdocumentor-element-found-in__line">81</span>
  1628. </aside>
  1629. <p class="phpdocumentor-summary">Size of the quiet zone</p>
  1630. <code class="phpdocumentor-code phpdocumentor-signature ">
  1631. <span class="phpdocumentor-signature__visibility">protected</span>
  1632. <span class="phpdocumentor-signature__type">int</span>
  1633. <span class="phpdocumentor-signature__name">$quietzoneSize</span>
  1634. = <span class="phpdocumentor-signature__default-value">4</span></code>
  1635. <section class="phpdocumentor-description"><p>internally clamped to [0 ... $moduleCount / 2], defaults to 4 modules</p>
  1636. </section>
  1637. </article>
  1638. <article
  1639. class="
  1640. phpdocumentor-element
  1641. -property
  1642. -protected
  1643. "
  1644. >
  1645. <h4 class="phpdocumentor-element__name" id="property_readerGrayscale">
  1646. $readerGrayscale
  1647. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_readerGrayscale" class="headerlink"><i class="fas fa-link"></i></a>
  1648. <span class="phpdocumentor-element__modifiers">
  1649. </span>
  1650. </h4>
  1651. <aside class="phpdocumentor-element-found-in">
  1652. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1653. :
  1654. <span class="phpdocumentor-element-found-in__line">436</span>
  1655. </aside>
  1656. <p class="phpdocumentor-summary">Grayscale the image before reading</p>
  1657. <code class="phpdocumentor-code phpdocumentor-signature ">
  1658. <span class="phpdocumentor-signature__visibility">protected</span>
  1659. <span class="phpdocumentor-signature__type">bool</span>
  1660. <span class="phpdocumentor-signature__name">$readerGrayscale</span>
  1661. = <span class="phpdocumentor-signature__default-value">false</span></code>
  1662. </article>
  1663. <article
  1664. class="
  1665. phpdocumentor-element
  1666. -property
  1667. -protected
  1668. "
  1669. >
  1670. <h4 class="phpdocumentor-element__name" id="property_readerIncreaseContrast">
  1671. $readerIncreaseContrast
  1672. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_readerIncreaseContrast" class="headerlink"><i class="fas fa-link"></i></a>
  1673. <span class="phpdocumentor-element__modifiers">
  1674. </span>
  1675. </h4>
  1676. <aside class="phpdocumentor-element-found-in">
  1677. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1678. :
  1679. <span class="phpdocumentor-element-found-in__line">443</span>
  1680. </aside>
  1681. <p class="phpdocumentor-summary">Increase the contrast before reading</p>
  1682. <code class="phpdocumentor-code phpdocumentor-signature ">
  1683. <span class="phpdocumentor-signature__visibility">protected</span>
  1684. <span class="phpdocumentor-signature__type">bool</span>
  1685. <span class="phpdocumentor-signature__name">$readerIncreaseContrast</span>
  1686. = <span class="phpdocumentor-signature__default-value">false</span></code>
  1687. <section class="phpdocumentor-description"><p>note that applying contrast works different in GD and Imagick, so mileage may vary</p>
  1688. </section>
  1689. </article>
  1690. <article
  1691. class="
  1692. phpdocumentor-element
  1693. -property
  1694. -protected
  1695. "
  1696. >
  1697. <h4 class="phpdocumentor-element__name" id="property_readerUseImagickIfAvailable">
  1698. $readerUseImagickIfAvailable
  1699. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_readerUseImagickIfAvailable" class="headerlink"><i class="fas fa-link"></i></a>
  1700. <span class="phpdocumentor-element__modifiers">
  1701. </span>
  1702. </h4>
  1703. <aside class="phpdocumentor-element-found-in">
  1704. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1705. :
  1706. <span class="phpdocumentor-element-found-in__line">431</span>
  1707. </aside>
  1708. <p class="phpdocumentor-summary">Use Imagick (if available) when reading QR Codes</p>
  1709. <code class="phpdocumentor-code phpdocumentor-signature ">
  1710. <span class="phpdocumentor-signature__visibility">protected</span>
  1711. <span class="phpdocumentor-signature__type">bool</span>
  1712. <span class="phpdocumentor-signature__name">$readerUseImagickIfAvailable</span>
  1713. = <span class="phpdocumentor-signature__default-value">false</span></code>
  1714. </article>
  1715. <article
  1716. class="
  1717. phpdocumentor-element
  1718. -property
  1719. -protected
  1720. "
  1721. >
  1722. <h4 class="phpdocumentor-element__name" id="property_returnResource">
  1723. $returnResource
  1724. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_returnResource" class="headerlink"><i class="fas fa-link"></i></a>
  1725. <span class="phpdocumentor-element__modifiers">
  1726. </span>
  1727. </h4>
  1728. <aside class="phpdocumentor-element-found-in">
  1729. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1730. :
  1731. <span class="phpdocumentor-element-found-in__line">120</span>
  1732. </aside>
  1733. <p class="phpdocumentor-summary">Return the image resource instead of a render if applicable.</p>
  1734. <code class="phpdocumentor-code phpdocumentor-signature ">
  1735. <span class="phpdocumentor-signature__visibility">protected</span>
  1736. <span class="phpdocumentor-signature__type">bool</span>
  1737. <span class="phpdocumentor-signature__name">$returnResource</span>
  1738. = <span class="phpdocumentor-signature__default-value">false</span></code>
  1739. <section class="phpdocumentor-description"><p>This option overrides/ignores other output options, such as $cachefile and $outputBase64.</p>
  1740. <p>Supported by the following modules:</p>
  1741. <ul>
  1742. <li>QRGdImage: resource (PHP &lt; 8), GdImage</li>
  1743. <li>QRImagick: Imagick</li>
  1744. <li>QRFpdf: FPDF</li>
  1745. </ul>
  1746. </section>
  1747. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1748. Tags
  1749. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_returnResource#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1750. </h5>
  1751. <dl class="phpdocumentor-tag-list">
  1752. <dt class="phpdocumentor-tag-list__entry">
  1753. <span class="phpdocumentor-tag__name">see</span>
  1754. </dt>
  1755. <dd class="phpdocumentor-tag-list__definition">
  1756. <span class="phpdocumentor-tag-link"><a href="classes/chillerlan-QRCode-Output-QROutputInterface.html#method_dump"><abbr title="\chillerlan\QRCode\Output\QROutputInterface::dump()">QROutputInterface::dump()</abbr></a></span>
  1757. </dd>
  1758. </dl>
  1759. </article>
  1760. <article
  1761. class="
  1762. phpdocumentor-element
  1763. -property
  1764. -protected
  1765. "
  1766. >
  1767. <h4 class="phpdocumentor-element__name" id="property_scale">
  1768. $scale
  1769. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_scale" class="headerlink"><i class="fas fa-link"></i></a>
  1770. <span class="phpdocumentor-element__modifiers">
  1771. </span>
  1772. </h4>
  1773. <aside class="phpdocumentor-element-found-in">
  1774. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1775. :
  1776. <span class="phpdocumentor-element-found-in__line">250</span>
  1777. </aside>
  1778. <p class="phpdocumentor-summary">Pixel size of a QR code module</p>
  1779. <code class="phpdocumentor-code phpdocumentor-signature ">
  1780. <span class="phpdocumentor-signature__visibility">protected</span>
  1781. <span class="phpdocumentor-signature__type">int</span>
  1782. <span class="phpdocumentor-signature__name">$scale</span>
  1783. = <span class="phpdocumentor-signature__default-value">5</span></code>
  1784. </article>
  1785. <article
  1786. class="
  1787. phpdocumentor-element
  1788. -property
  1789. -protected
  1790. "
  1791. >
  1792. <h4 class="phpdocumentor-element__name" id="property_svgAddXmlHeader">
  1793. $svgAddXmlHeader
  1794. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgAddXmlHeader" class="headerlink"><i class="fas fa-link"></i></a>
  1795. <span class="phpdocumentor-element__modifiers">
  1796. </span>
  1797. </h4>
  1798. <aside class="phpdocumentor-element-found-in">
  1799. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1800. :
  1801. <span class="phpdocumentor-element-found-in__line">344</span>
  1802. </aside>
  1803. <p class="phpdocumentor-summary">Whether to add an XML header line or not, e.g. to embed the SVG directly in HTML</p>
  1804. <code class="phpdocumentor-code phpdocumentor-signature ">
  1805. <span class="phpdocumentor-signature__visibility">protected</span>
  1806. <span class="phpdocumentor-signature__type">bool</span>
  1807. <span class="phpdocumentor-signature__name">$svgAddXmlHeader</span>
  1808. = <span class="phpdocumentor-signature__default-value">true</span></code>
  1809. <section class="phpdocumentor-description"><p><code class="prettyprint">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;</code></p>
  1810. </section>
  1811. </article>
  1812. <article
  1813. class="
  1814. phpdocumentor-element
  1815. -property
  1816. -protected
  1817. "
  1818. >
  1819. <h4 class="phpdocumentor-element__name" id="property_svgDefs">
  1820. $svgDefs
  1821. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgDefs" class="headerlink"><i class="fas fa-link"></i></a>
  1822. <span class="phpdocumentor-element__modifiers">
  1823. </span>
  1824. </h4>
  1825. <aside class="phpdocumentor-element-found-in">
  1826. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1827. :
  1828. <span class="phpdocumentor-element-found-in__line">356</span>
  1829. </aside>
  1830. <p class="phpdocumentor-summary">Anything in the &lt;defs&gt; tag</p>
  1831. <code class="phpdocumentor-code phpdocumentor-signature ">
  1832. <span class="phpdocumentor-signature__visibility">protected</span>
  1833. <span class="phpdocumentor-signature__type">string</span>
  1834. <span class="phpdocumentor-signature__name">$svgDefs</span>
  1835. = <span class="phpdocumentor-signature__default-value">&#039;&#039;</span></code>
  1836. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1837. Tags
  1838. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgDefs#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1839. </h5>
  1840. <dl class="phpdocumentor-tag-list">
  1841. <dt class="phpdocumentor-tag-list__entry">
  1842. <span class="phpdocumentor-tag__name">see</span>
  1843. </dt>
  1844. <dd class="phpdocumentor-tag-list__definition">
  1845. <span class="phpdocumentor-tag-link"><a href="https://developer.mozilla.org/en-US/docs/Web/SVG/Element/defs">https://developer.mozilla.org/en-US/docs/Web/SVG/Element/defs</a></span>
  1846. </dd>
  1847. </dl>
  1848. </article>
  1849. <article
  1850. class="
  1851. phpdocumentor-element
  1852. -property
  1853. -protected
  1854. "
  1855. >
  1856. <h4 class="phpdocumentor-element__name" id="property_svgHeight">
  1857. $svgHeight
  1858. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgHeight" class="headerlink"><i class="fas fa-link"></i></a>
  1859. <span class="phpdocumentor-element__modifiers">
  1860. </span>
  1861. </h4>
  1862. <aside class="phpdocumentor-element-found-in">
  1863. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1864. :
  1865. <span class="phpdocumentor-element-found-in__line">385</span>
  1866. </aside>
  1867. <p class="phpdocumentor-summary">Optional &quot;height&quot; attribute with the specified value (note that the value is not checked!)</p>
  1868. <code class="phpdocumentor-code phpdocumentor-signature ">
  1869. <span class="phpdocumentor-signature__visibility">protected</span>
  1870. <span class="phpdocumentor-signature__type">string|null</span>
  1871. <span class="phpdocumentor-signature__name">$svgHeight</span>
  1872. = <span class="phpdocumentor-signature__default-value">null</span></code>
  1873. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1874. Tags
  1875. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgHeight#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1876. </h5>
  1877. <dl class="phpdocumentor-tag-list">
  1878. <dt class="phpdocumentor-tag-list__entry">
  1879. <span class="phpdocumentor-tag__name">see</span>
  1880. </dt>
  1881. <dd class="phpdocumentor-tag-list__definition">
  1882. <span class="phpdocumentor-tag-link"><a href="https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/height">https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/height</a></span>
  1883. </dd>
  1884. </dl>
  1885. </article>
  1886. <article
  1887. class="
  1888. phpdocumentor-element
  1889. -property
  1890. -protected
  1891. "
  1892. >
  1893. <h4 class="phpdocumentor-element__name" id="property_svgOpacity">
  1894. $svgOpacity
  1895. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgOpacity" class="headerlink"><i class="fas fa-link"></i></a>
  1896. <span class="phpdocumentor-element__modifiers">
  1897. </span>
  1898. </h4>
  1899. <aside class="phpdocumentor-element-found-in">
  1900. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1901. :
  1902. <span class="phpdocumentor-element-found-in__line">349</span>
  1903. </aside>
  1904. <p class="phpdocumentor-summary">SVG opacity</p>
  1905. <code class="phpdocumentor-code phpdocumentor-signature ">
  1906. <span class="phpdocumentor-signature__visibility">protected</span>
  1907. <span class="phpdocumentor-signature__type">float</span>
  1908. <span class="phpdocumentor-signature__name">$svgOpacity</span>
  1909. = <span class="phpdocumentor-signature__default-value">1.0</span></code>
  1910. </article>
  1911. <article
  1912. class="
  1913. phpdocumentor-element
  1914. -property
  1915. -protected
  1916. "
  1917. >
  1918. <h4 class="phpdocumentor-element__name" id="property_svgPreserveAspectRatio">
  1919. $svgPreserveAspectRatio
  1920. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgPreserveAspectRatio" class="headerlink"><i class="fas fa-link"></i></a>
  1921. <span class="phpdocumentor-element__modifiers">
  1922. </span>
  1923. </h4>
  1924. <aside class="phpdocumentor-element-found-in">
  1925. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1926. :
  1927. <span class="phpdocumentor-element-found-in__line">371</span>
  1928. </aside>
  1929. <code class="phpdocumentor-code phpdocumentor-signature ">
  1930. <span class="phpdocumentor-signature__visibility">protected</span>
  1931. <span class="phpdocumentor-signature__type">string</span>
  1932. <span class="phpdocumentor-signature__name">$svgPreserveAspectRatio</span>
  1933. = <span class="phpdocumentor-signature__default-value">&#039;xMidYMid&#039;</span></code>
  1934. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1935. Tags
  1936. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgPreserveAspectRatio#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1937. </h5>
  1938. <dl class="phpdocumentor-tag-list">
  1939. <dt class="phpdocumentor-tag-list__entry">
  1940. <span class="phpdocumentor-tag__name">see</span>
  1941. </dt>
  1942. <dd class="phpdocumentor-tag-list__definition">
  1943. <span class="phpdocumentor-tag-link"><a href="https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/preserveAspectRatio">https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/preserveAspectRatio</a></span>
  1944. </dd>
  1945. </dl>
  1946. </article>
  1947. <article
  1948. class="
  1949. phpdocumentor-element
  1950. -property
  1951. -protected
  1952. "
  1953. >
  1954. <h4 class="phpdocumentor-element__name" id="property_svgViewBoxSize">
  1955. $svgViewBoxSize
  1956. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgViewBoxSize" class="headerlink"><i class="fas fa-link"></i></a>
  1957. <span class="phpdocumentor-element__modifiers">
  1958. </span>
  1959. </h4>
  1960. <aside class="phpdocumentor-element-found-in">
  1961. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  1962. :
  1963. <span class="phpdocumentor-element-found-in__line">366</span>
  1964. </aside>
  1965. <p class="phpdocumentor-summary">SVG viewBox size. A single integer number which defines width/height of the viewBox attribute.</p>
  1966. <code class="phpdocumentor-code phpdocumentor-signature ">
  1967. <span class="phpdocumentor-signature__visibility">protected</span>
  1968. <span class="phpdocumentor-signature__type">int|null</span>
  1969. <span class="phpdocumentor-signature__name">$svgViewBoxSize</span>
  1970. = <span class="phpdocumentor-signature__default-value">null</span></code>
  1971. <section class="phpdocumentor-description"><p>viewBox=&quot;0 0 x x&quot;</p>
  1972. </section>
  1973. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1974. Tags
  1975. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgViewBoxSize#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1976. </h5>
  1977. <dl class="phpdocumentor-tag-list">
  1978. <dt class="phpdocumentor-tag-list__entry">
  1979. <span class="phpdocumentor-tag__name">see</span>
  1980. </dt>
  1981. <dd class="phpdocumentor-tag-list__definition">
  1982. <span class="phpdocumentor-tag-link"><a href="https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/viewBox">https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/viewBox</a></span>
  1983. </dd>
  1984. <dt class="phpdocumentor-tag-list__entry">
  1985. <span class="phpdocumentor-tag__name">see</span>
  1986. </dt>
  1987. <dd class="phpdocumentor-tag-list__definition">
  1988. <span class="phpdocumentor-tag-link"><a href="https://css-tricks.com/scale-svg/#article-header-id-3">https://css-tricks.com/scale-svg/#article-header-id-3</a></span>
  1989. </dd>
  1990. </dl>
  1991. </article>
  1992. <article
  1993. class="
  1994. phpdocumentor-element
  1995. -property
  1996. -protected
  1997. "
  1998. >
  1999. <h4 class="phpdocumentor-element__name" id="property_svgWidth">
  2000. $svgWidth
  2001. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgWidth" class="headerlink"><i class="fas fa-link"></i></a>
  2002. <span class="phpdocumentor-element__modifiers">
  2003. </span>
  2004. </h4>
  2005. <aside class="phpdocumentor-element-found-in">
  2006. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2007. :
  2008. <span class="phpdocumentor-element-found-in__line">378</span>
  2009. </aside>
  2010. <p class="phpdocumentor-summary">Optional &quot;width&quot; attribute with the specified value (note that the value is not checked!)</p>
  2011. <code class="phpdocumentor-code phpdocumentor-signature ">
  2012. <span class="phpdocumentor-signature__visibility">protected</span>
  2013. <span class="phpdocumentor-signature__type">string|null</span>
  2014. <span class="phpdocumentor-signature__name">$svgWidth</span>
  2015. = <span class="phpdocumentor-signature__default-value">null</span></code>
  2016. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  2017. Tags
  2018. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgWidth#tags" class="headerlink"><i class="fas fa-link"></i></a>
  2019. </h5>
  2020. <dl class="phpdocumentor-tag-list">
  2021. <dt class="phpdocumentor-tag-list__entry">
  2022. <span class="phpdocumentor-tag__name">see</span>
  2023. </dt>
  2024. <dd class="phpdocumentor-tag-list__definition">
  2025. <span class="phpdocumentor-tag-link"><a href="https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/width">https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/width</a></span>
  2026. </dd>
  2027. </dl>
  2028. </article>
  2029. <article
  2030. class="
  2031. phpdocumentor-element
  2032. -property
  2033. -protected
  2034. "
  2035. >
  2036. <h4 class="phpdocumentor-element__name" id="property_textDark">
  2037. $textDark
  2038. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_textDark" class="headerlink"><i class="fas fa-link"></i></a>
  2039. <span class="phpdocumentor-element__modifiers">
  2040. </span>
  2041. </h4>
  2042. <aside class="phpdocumentor-element-found-in">
  2043. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2044. :
  2045. <span class="phpdocumentor-element-found-in__line">395</span>
  2046. </aside>
  2047. <p class="phpdocumentor-summary">String substitute for dark</p>
  2048. <code class="phpdocumentor-code phpdocumentor-signature ">
  2049. <span class="phpdocumentor-signature__visibility">protected</span>
  2050. <span class="phpdocumentor-signature__type">string</span>
  2051. <span class="phpdocumentor-signature__name">$textDark</span>
  2052. = <span class="phpdocumentor-signature__default-value">&#039;██&#039;</span></code>
  2053. </article>
  2054. <article
  2055. class="
  2056. phpdocumentor-element
  2057. -property
  2058. -protected
  2059. "
  2060. >
  2061. <h4 class="phpdocumentor-element__name" id="property_textLight">
  2062. $textLight
  2063. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_textLight" class="headerlink"><i class="fas fa-link"></i></a>
  2064. <span class="phpdocumentor-element__modifiers">
  2065. </span>
  2066. </h4>
  2067. <aside class="phpdocumentor-element-found-in">
  2068. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2069. :
  2070. <span class="phpdocumentor-element-found-in__line">400</span>
  2071. </aside>
  2072. <p class="phpdocumentor-summary">String substitute for light</p>
  2073. <code class="phpdocumentor-code phpdocumentor-signature ">
  2074. <span class="phpdocumentor-signature__visibility">protected</span>
  2075. <span class="phpdocumentor-signature__type">string</span>
  2076. <span class="phpdocumentor-signature__name">$textLight</span>
  2077. = <span class="phpdocumentor-signature__default-value">&#039;░░&#039;</span></code>
  2078. </article>
  2079. <article
  2080. class="
  2081. phpdocumentor-element
  2082. -property
  2083. -protected
  2084. "
  2085. >
  2086. <h4 class="phpdocumentor-element__name" id="property_textLineStart">
  2087. $textLineStart
  2088. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_textLineStart" class="headerlink"><i class="fas fa-link"></i></a>
  2089. <span class="phpdocumentor-element__modifiers">
  2090. </span>
  2091. </h4>
  2092. <aside class="phpdocumentor-element-found-in">
  2093. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2094. :
  2095. <span class="phpdocumentor-element-found-in__line">405</span>
  2096. </aside>
  2097. <p class="phpdocumentor-summary">An optional line prefix, e.g. empty space to align the QR Code in a console</p>
  2098. <code class="phpdocumentor-code phpdocumentor-signature ">
  2099. <span class="phpdocumentor-signature__visibility">protected</span>
  2100. <span class="phpdocumentor-signature__type">string</span>
  2101. <span class="phpdocumentor-signature__name">$textLineStart</span>
  2102. = <span class="phpdocumentor-signature__default-value">&#039;&#039;</span></code>
  2103. </article>
  2104. <article
  2105. class="
  2106. phpdocumentor-element
  2107. -property
  2108. -protected
  2109. "
  2110. >
  2111. <h4 class="phpdocumentor-element__name" id="property_transparencyColor">
  2112. $transparencyColor
  2113. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_transparencyColor" class="headerlink"><i class="fas fa-link"></i></a>
  2114. <span class="phpdocumentor-element__modifiers">
  2115. </span>
  2116. </h4>
  2117. <aside class="phpdocumentor-element-found-in">
  2118. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2119. :
  2120. <span class="phpdocumentor-element-found-in__line">270</span>
  2121. </aside>
  2122. <p class="phpdocumentor-summary">Sets a transparency color for when {@see \chillerlan\QRCode\QROptions::$imageTransparent QROptions::$imageTransparent} is set to true.</p>
  2123. <code class="phpdocumentor-code phpdocumentor-signature ">
  2124. <span class="phpdocumentor-signature__visibility">protected</span>
  2125. <span class="phpdocumentor-signature__type">mixed|null</span>
  2126. <span class="phpdocumentor-signature__name">$transparencyColor</span>
  2127. = <span class="phpdocumentor-signature__default-value">null</span></code>
  2128. <section class="phpdocumentor-description"><p>Defaults to \chillerlan\QRCode\QROptions::$bgColor.</p>
  2129. <ul>
  2130. <li>QRGdImage: [R, G, B], this color is set as transparent in <abbr title="\chillerlan\QRCode\imagecolortransparent()">imagecolortransparent()</abbr>
  2131. </li>
  2132. <li>QRImagick: &quot;color_str&quot;, this color is set in <abbr title="\chillerlan\QRCode\Imagick::transparentPaintImage()">Imagick::transparentPaintImage()</abbr>
  2133. </li>
  2134. </ul>
  2135. </section>
  2136. </article>
  2137. <article
  2138. class="
  2139. phpdocumentor-element
  2140. -property
  2141. -protected
  2142. "
  2143. >
  2144. <h4 class="phpdocumentor-element__name" id="property_version">
  2145. $version
  2146. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_version" class="headerlink"><i class="fas fa-link"></i></a>
  2147. <span class="phpdocumentor-element__modifiers">
  2148. </span>
  2149. </h4>
  2150. <aside class="phpdocumentor-element-found-in">
  2151. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2152. :
  2153. <span class="phpdocumentor-element-found-in__line">33</span>
  2154. </aside>
  2155. <p class="phpdocumentor-summary">QR Code version number</p>
  2156. <code class="phpdocumentor-code phpdocumentor-signature ">
  2157. <span class="phpdocumentor-signature__visibility">protected</span>
  2158. <span class="phpdocumentor-signature__type">int</span>
  2159. <span class="phpdocumentor-signature__name">$version</span>
  2160. = <span class="phpdocumentor-signature__default-value">\chillerlan\QRCode\Common\Version::AUTO</span></code>
  2161. <section class="phpdocumentor-description"><p>[1 ... 40] or Version::AUTO</p>
  2162. </section>
  2163. </article>
  2164. <article
  2165. class="
  2166. phpdocumentor-element
  2167. -property
  2168. -protected
  2169. "
  2170. >
  2171. <h4 class="phpdocumentor-element__name" id="property_versionMax">
  2172. $versionMax
  2173. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_versionMax" class="headerlink"><i class="fas fa-link"></i></a>
  2174. <span class="phpdocumentor-element__modifiers">
  2175. </span>
  2176. </h4>
  2177. <aside class="phpdocumentor-element-found-in">
  2178. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2179. :
  2180. <span class="phpdocumentor-element-found-in__line">45</span>
  2181. </aside>
  2182. <p class="phpdocumentor-summary">Maximum QR version</p>
  2183. <code class="phpdocumentor-code phpdocumentor-signature ">
  2184. <span class="phpdocumentor-signature__visibility">protected</span>
  2185. <span class="phpdocumentor-signature__type">int</span>
  2186. <span class="phpdocumentor-signature__name">$versionMax</span>
  2187. = <span class="phpdocumentor-signature__default-value">40</span></code>
  2188. </article>
  2189. <article
  2190. class="
  2191. phpdocumentor-element
  2192. -property
  2193. -protected
  2194. "
  2195. >
  2196. <h4 class="phpdocumentor-element__name" id="property_versionMin">
  2197. $versionMin
  2198. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_versionMin" class="headerlink"><i class="fas fa-link"></i></a>
  2199. <span class="phpdocumentor-element__modifiers">
  2200. </span>
  2201. </h4>
  2202. <aside class="phpdocumentor-element-found-in">
  2203. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2204. :
  2205. <span class="phpdocumentor-element-found-in__line">40</span>
  2206. </aside>
  2207. <p class="phpdocumentor-summary">Minimum QR version</p>
  2208. <code class="phpdocumentor-code phpdocumentor-signature ">
  2209. <span class="phpdocumentor-signature__visibility">protected</span>
  2210. <span class="phpdocumentor-signature__type">int</span>
  2211. <span class="phpdocumentor-signature__name">$versionMin</span>
  2212. = <span class="phpdocumentor-signature__default-value">1</span></code>
  2213. <section class="phpdocumentor-description"><p>if $version = QRCode::VERSION_AUTO</p>
  2214. </section>
  2215. </article>
  2216. </section>
  2217. <section class="phpdocumentor-methods">
  2218. <h3 class="phpdocumentor-elements__header" id="methods">
  2219. Methods
  2220. <a href="classes/chillerlan-QRCode-QROptions.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
  2221. </h3>
  2222. <article
  2223. class="phpdocumentor-element
  2224. -method
  2225. -protected
  2226. "
  2227. >
  2228. <h4 class="phpdocumentor-element__name" id="method_clampLogoSpaceValue">
  2229. clampLogoSpaceValue()
  2230. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_clampLogoSpaceValue" class="headerlink"><i class="fas fa-link"></i></a>
  2231. </h4>
  2232. <aside class="phpdocumentor-element-found-in">
  2233. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2234. :
  2235. <span class="phpdocumentor-element-found-in__line">510</span>
  2236. </aside>
  2237. <p class="phpdocumentor-summary">clamp the logo space values between 0 and maximum length (177 modules at version 40)</p>
  2238. <code class="phpdocumentor-code phpdocumentor-signature ">
  2239. <span class="phpdocumentor-signature__visibility">protected</span>
  2240. <span class="phpdocumentor-signature__name">clampLogoSpaceValue</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">int|null&nbsp;</span><span class="phpdocumentor-signature__argument__name">$value</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">int|null</span></code>
  2241. <div class="phpdocumentor-label-line">
  2242. </div>
  2243. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2244. <dl class="phpdocumentor-argument-list">
  2245. <dt class="phpdocumentor-argument-list__entry">
  2246. <span class="phpdocumentor-signature__argument__name">$value</span>
  2247. : <span class="phpdocumentor-signature__argument__return-type">int|null</span>
  2248. </dt>
  2249. <dd class="phpdocumentor-argument-list__definition">
  2250. </dd>
  2251. </dl>
  2252. <section>
  2253. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  2254. <span class="phpdocumentor-signature__response_type">int|null</span>
  2255. </section>
  2256. </article>
  2257. <article
  2258. class="phpdocumentor-element
  2259. -method
  2260. -protected
  2261. -deprecated "
  2262. >
  2263. <h4 class="phpdocumentor-element__name" id="method_get_imageBase64">
  2264. get_imageBase64()
  2265. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_get_imageBase64" class="headerlink"><i class="fas fa-link"></i></a>
  2266. </h4>
  2267. <aside class="phpdocumentor-element-found-in">
  2268. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2269. :
  2270. <span class="phpdocumentor-element-found-in__line">572</span>
  2271. </aside>
  2272. <p class="phpdocumentor-summary">redirect call to the new variable</p>
  2273. <code class="phpdocumentor-code phpdocumentor-signature -deprecated">
  2274. <span class="phpdocumentor-signature__visibility">protected</span>
  2275. <span class="phpdocumentor-signature__name">get_imageBase64</span><span>(</span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">bool</span></code>
  2276. <div class="phpdocumentor-label-line">
  2277. </div>
  2278. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  2279. Tags
  2280. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_get_imageBase64#tags" class="headerlink"><i class="fas fa-link"></i></a>
  2281. </h5>
  2282. <dl class="phpdocumentor-tag-list">
  2283. <dt class="phpdocumentor-tag-list__entry">
  2284. <span class="phpdocumentor-tag__name">deprecated</span>
  2285. </dt>
  2286. <dd class="phpdocumentor-tag-list__definition">
  2287. <span class="phpdocumentor-tag-link">5.0.0</span>
  2288. <section class="phpdocumentor-description"><p>use QROptions::$outputBase64 instead</p>
  2289. </section>
  2290. </dd>
  2291. <dt class="phpdocumentor-tag-list__entry">
  2292. <span class="phpdocumentor-tag__name">see</span>
  2293. </dt>
  2294. <dd class="phpdocumentor-tag-list__definition">
  2295. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\QROptions::$outputBase64">QROptions::$outputBase64</abbr></span>
  2296. </dd>
  2297. <dt class="phpdocumentor-tag-list__entry">
  2298. <span class="phpdocumentor-tag__name">codeCoverageIgnore</span>
  2299. </dt>
  2300. <dd class="phpdocumentor-tag-list__definition">
  2301. </dd>
  2302. </dl>
  2303. <section>
  2304. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  2305. <span class="phpdocumentor-signature__response_type">bool</span>
  2306. </section>
  2307. </article>
  2308. <article
  2309. class="phpdocumentor-element
  2310. -method
  2311. -protected
  2312. -deprecated "
  2313. >
  2314. <h4 class="phpdocumentor-element__name" id="method_get_jpegQuality">
  2315. get_jpegQuality()
  2316. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_get_jpegQuality" class="headerlink"><i class="fas fa-link"></i></a>
  2317. </h4>
  2318. <aside class="phpdocumentor-element-found-in">
  2319. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2320. :
  2321. <span class="phpdocumentor-element-found-in__line">594</span>
  2322. </aside>
  2323. <p class="phpdocumentor-summary">redirect call to the new variable</p>
  2324. <code class="phpdocumentor-code phpdocumentor-signature -deprecated">
  2325. <span class="phpdocumentor-signature__visibility">protected</span>
  2326. <span class="phpdocumentor-signature__name">get_jpegQuality</span><span>(</span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">int</span></code>
  2327. <div class="phpdocumentor-label-line">
  2328. </div>
  2329. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  2330. Tags
  2331. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_get_jpegQuality#tags" class="headerlink"><i class="fas fa-link"></i></a>
  2332. </h5>
  2333. <dl class="phpdocumentor-tag-list">
  2334. <dt class="phpdocumentor-tag-list__entry">
  2335. <span class="phpdocumentor-tag__name">deprecated</span>
  2336. </dt>
  2337. <dd class="phpdocumentor-tag-list__definition">
  2338. <span class="phpdocumentor-tag-link">5.0.0</span>
  2339. <section class="phpdocumentor-description"><p>use QROptions::$quality instead</p>
  2340. </section>
  2341. </dd>
  2342. <dt class="phpdocumentor-tag-list__entry">
  2343. <span class="phpdocumentor-tag__name">see</span>
  2344. </dt>
  2345. <dd class="phpdocumentor-tag-list__definition">
  2346. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\QROptions::$quality">QROptions::$quality</abbr></span>
  2347. </dd>
  2348. <dt class="phpdocumentor-tag-list__entry">
  2349. <span class="phpdocumentor-tag__name">codeCoverageIgnore</span>
  2350. </dt>
  2351. <dd class="phpdocumentor-tag-list__definition">
  2352. </dd>
  2353. </dl>
  2354. <section>
  2355. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  2356. <span class="phpdocumentor-signature__response_type">int</span>
  2357. </section>
  2358. </article>
  2359. <article
  2360. class="phpdocumentor-element
  2361. -method
  2362. -protected
  2363. -deprecated "
  2364. >
  2365. <h4 class="phpdocumentor-element__name" id="method_get_pngCompression">
  2366. get_pngCompression()
  2367. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_get_pngCompression" class="headerlink"><i class="fas fa-link"></i></a>
  2368. </h4>
  2369. <aside class="phpdocumentor-element-found-in">
  2370. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2371. :
  2372. <span class="phpdocumentor-element-found-in__line">616</span>
  2373. </aside>
  2374. <p class="phpdocumentor-summary">redirect call to the new variable</p>
  2375. <code class="phpdocumentor-code phpdocumentor-signature -deprecated">
  2376. <span class="phpdocumentor-signature__visibility">protected</span>
  2377. <span class="phpdocumentor-signature__name">get_pngCompression</span><span>(</span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">int</span></code>
  2378. <div class="phpdocumentor-label-line">
  2379. </div>
  2380. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  2381. Tags
  2382. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_get_pngCompression#tags" class="headerlink"><i class="fas fa-link"></i></a>
  2383. </h5>
  2384. <dl class="phpdocumentor-tag-list">
  2385. <dt class="phpdocumentor-tag-list__entry">
  2386. <span class="phpdocumentor-tag__name">deprecated</span>
  2387. </dt>
  2388. <dd class="phpdocumentor-tag-list__definition">
  2389. <span class="phpdocumentor-tag-link">5.0.0</span>
  2390. <section class="phpdocumentor-description"><p>use QROptions::$quality instead</p>
  2391. </section>
  2392. </dd>
  2393. <dt class="phpdocumentor-tag-list__entry">
  2394. <span class="phpdocumentor-tag__name">see</span>
  2395. </dt>
  2396. <dd class="phpdocumentor-tag-list__definition">
  2397. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\QROptions::$quality">QROptions::$quality</abbr></span>
  2398. </dd>
  2399. <dt class="phpdocumentor-tag-list__entry">
  2400. <span class="phpdocumentor-tag__name">codeCoverageIgnore</span>
  2401. </dt>
  2402. <dd class="phpdocumentor-tag-list__definition">
  2403. </dd>
  2404. </dl>
  2405. <section>
  2406. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  2407. <span class="phpdocumentor-signature__response_type">int</span>
  2408. </section>
  2409. </article>
  2410. <article
  2411. class="phpdocumentor-element
  2412. -method
  2413. -protected
  2414. "
  2415. >
  2416. <h4 class="phpdocumentor-element__name" id="method_set_circleRadius">
  2417. set_circleRadius()
  2418. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_circleRadius" class="headerlink"><i class="fas fa-link"></i></a>
  2419. </h4>
  2420. <aside class="phpdocumentor-element-found-in">
  2421. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2422. :
  2423. <span class="phpdocumentor-element-found-in__line">550</span>
  2424. </aside>
  2425. <p class="phpdocumentor-summary">clamp/set SVG circle radius</p>
  2426. <code class="phpdocumentor-code phpdocumentor-signature ">
  2427. <span class="phpdocumentor-signature__visibility">protected</span>
  2428. <span class="phpdocumentor-signature__name">set_circleRadius</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">float&nbsp;</span><span class="phpdocumentor-signature__argument__name">$circleRadius</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  2429. <div class="phpdocumentor-label-line">
  2430. </div>
  2431. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2432. <dl class="phpdocumentor-argument-list">
  2433. <dt class="phpdocumentor-argument-list__entry">
  2434. <span class="phpdocumentor-signature__argument__name">$circleRadius</span>
  2435. : <span class="phpdocumentor-signature__argument__return-type">float</span>
  2436. </dt>
  2437. <dd class="phpdocumentor-argument-list__definition">
  2438. </dd>
  2439. </dl>
  2440. </article>
  2441. <article
  2442. class="phpdocumentor-element
  2443. -method
  2444. -protected
  2445. "
  2446. >
  2447. <h4 class="phpdocumentor-element__name" id="method_set_fpdfMeasureUnit">
  2448. set_fpdfMeasureUnit()
  2449. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_fpdfMeasureUnit" class="headerlink"><i class="fas fa-link"></i></a>
  2450. </h4>
  2451. <aside class="phpdocumentor-element-found-in">
  2452. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2453. :
  2454. <span class="phpdocumentor-element-found-in__line">490</span>
  2455. </aside>
  2456. <p class="phpdocumentor-summary">sets the FPDF measurement unit</p>
  2457. <code class="phpdocumentor-code phpdocumentor-signature ">
  2458. <span class="phpdocumentor-signature__visibility">protected</span>
  2459. <span class="phpdocumentor-signature__name">set_fpdfMeasureUnit</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">string&nbsp;</span><span class="phpdocumentor-signature__argument__name">$unit</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  2460. <div class="phpdocumentor-label-line">
  2461. </div>
  2462. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2463. <dl class="phpdocumentor-argument-list">
  2464. <dt class="phpdocumentor-argument-list__entry">
  2465. <span class="phpdocumentor-signature__argument__name">$unit</span>
  2466. : <span class="phpdocumentor-signature__argument__return-type">string</span>
  2467. </dt>
  2468. <dd class="phpdocumentor-argument-list__definition">
  2469. </dd>
  2470. </dl>
  2471. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  2472. Tags
  2473. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_fpdfMeasureUnit#tags" class="headerlink"><i class="fas fa-link"></i></a>
  2474. </h5>
  2475. <dl class="phpdocumentor-tag-list">
  2476. <dt class="phpdocumentor-tag-list__entry">
  2477. <span class="phpdocumentor-tag__name">codeCoverageIgnore</span>
  2478. </dt>
  2479. <dd class="phpdocumentor-tag-list__definition">
  2480. </dd>
  2481. </dl>
  2482. </article>
  2483. <article
  2484. class="phpdocumentor-element
  2485. -method
  2486. -protected
  2487. -deprecated "
  2488. >
  2489. <h4 class="phpdocumentor-element__name" id="method_set_imageBase64">
  2490. set_imageBase64()
  2491. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_imageBase64" class="headerlink"><i class="fas fa-link"></i></a>
  2492. </h4>
  2493. <aside class="phpdocumentor-element-found-in">
  2494. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2495. :
  2496. <span class="phpdocumentor-element-found-in__line">561</span>
  2497. </aside>
  2498. <p class="phpdocumentor-summary">redirect call to the new variable</p>
  2499. <code class="phpdocumentor-code phpdocumentor-signature -deprecated">
  2500. <span class="phpdocumentor-signature__visibility">protected</span>
  2501. <span class="phpdocumentor-signature__name">set_imageBase64</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">bool&nbsp;</span><span class="phpdocumentor-signature__argument__name">$imageBase64</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  2502. <div class="phpdocumentor-label-line">
  2503. </div>
  2504. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2505. <dl class="phpdocumentor-argument-list">
  2506. <dt class="phpdocumentor-argument-list__entry">
  2507. <span class="phpdocumentor-signature__argument__name">$imageBase64</span>
  2508. : <span class="phpdocumentor-signature__argument__return-type">bool</span>
  2509. </dt>
  2510. <dd class="phpdocumentor-argument-list__definition">
  2511. </dd>
  2512. </dl>
  2513. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  2514. Tags
  2515. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_imageBase64#tags" class="headerlink"><i class="fas fa-link"></i></a>
  2516. </h5>
  2517. <dl class="phpdocumentor-tag-list">
  2518. <dt class="phpdocumentor-tag-list__entry">
  2519. <span class="phpdocumentor-tag__name">deprecated</span>
  2520. </dt>
  2521. <dd class="phpdocumentor-tag-list__definition">
  2522. <span class="phpdocumentor-tag-link">5.0.0</span>
  2523. <section class="phpdocumentor-description"><p>use QROptions::$outputBase64 instead</p>
  2524. </section>
  2525. </dd>
  2526. <dt class="phpdocumentor-tag-list__entry">
  2527. <span class="phpdocumentor-tag__name">see</span>
  2528. </dt>
  2529. <dd class="phpdocumentor-tag-list__definition">
  2530. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\QROptions::$outputBase64">QROptions::$outputBase64</abbr></span>
  2531. </dd>
  2532. <dt class="phpdocumentor-tag-list__entry">
  2533. <span class="phpdocumentor-tag__name">codeCoverageIgnore</span>
  2534. </dt>
  2535. <dd class="phpdocumentor-tag-list__definition">
  2536. </dd>
  2537. </dl>
  2538. </article>
  2539. <article
  2540. class="phpdocumentor-element
  2541. -method
  2542. -protected
  2543. -deprecated "
  2544. >
  2545. <h4 class="phpdocumentor-element__name" id="method_set_jpegQuality">
  2546. set_jpegQuality()
  2547. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_jpegQuality" class="headerlink"><i class="fas fa-link"></i></a>
  2548. </h4>
  2549. <aside class="phpdocumentor-element-found-in">
  2550. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2551. :
  2552. <span class="phpdocumentor-element-found-in__line">583</span>
  2553. </aside>
  2554. <p class="phpdocumentor-summary">redirect call to the new variable</p>
  2555. <code class="phpdocumentor-code phpdocumentor-signature -deprecated">
  2556. <span class="phpdocumentor-signature__visibility">protected</span>
  2557. <span class="phpdocumentor-signature__name">set_jpegQuality</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">int&nbsp;</span><span class="phpdocumentor-signature__argument__name">$jpegQuality</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  2558. <div class="phpdocumentor-label-line">
  2559. </div>
  2560. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2561. <dl class="phpdocumentor-argument-list">
  2562. <dt class="phpdocumentor-argument-list__entry">
  2563. <span class="phpdocumentor-signature__argument__name">$jpegQuality</span>
  2564. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  2565. </dt>
  2566. <dd class="phpdocumentor-argument-list__definition">
  2567. </dd>
  2568. </dl>
  2569. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  2570. Tags
  2571. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_jpegQuality#tags" class="headerlink"><i class="fas fa-link"></i></a>
  2572. </h5>
  2573. <dl class="phpdocumentor-tag-list">
  2574. <dt class="phpdocumentor-tag-list__entry">
  2575. <span class="phpdocumentor-tag__name">deprecated</span>
  2576. </dt>
  2577. <dd class="phpdocumentor-tag-list__definition">
  2578. <span class="phpdocumentor-tag-link">5.0.0</span>
  2579. <section class="phpdocumentor-description"><p>use QROptions::$quality instead</p>
  2580. </section>
  2581. </dd>
  2582. <dt class="phpdocumentor-tag-list__entry">
  2583. <span class="phpdocumentor-tag__name">see</span>
  2584. </dt>
  2585. <dd class="phpdocumentor-tag-list__definition">
  2586. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\QROptions::$quality">QROptions::$quality</abbr></span>
  2587. </dd>
  2588. <dt class="phpdocumentor-tag-list__entry">
  2589. <span class="phpdocumentor-tag__name">codeCoverageIgnore</span>
  2590. </dt>
  2591. <dd class="phpdocumentor-tag-list__definition">
  2592. </dd>
  2593. </dl>
  2594. </article>
  2595. <article
  2596. class="phpdocumentor-element
  2597. -method
  2598. -protected
  2599. "
  2600. >
  2601. <h4 class="phpdocumentor-element__name" id="method_set_logoSpaceHeight">
  2602. set_logoSpaceHeight()
  2603. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_logoSpaceHeight" class="headerlink"><i class="fas fa-link"></i></a>
  2604. </h4>
  2605. <aside class="phpdocumentor-element-found-in">
  2606. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2607. :
  2608. <span class="phpdocumentor-element-found-in__line">529</span>
  2609. </aside>
  2610. <p class="phpdocumentor-summary">clamp/set logo space height</p>
  2611. <code class="phpdocumentor-code phpdocumentor-signature ">
  2612. <span class="phpdocumentor-signature__visibility">protected</span>
  2613. <span class="phpdocumentor-signature__name">set_logoSpaceHeight</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">int|null&nbsp;</span><span class="phpdocumentor-signature__argument__name">$value</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  2614. <div class="phpdocumentor-label-line">
  2615. </div>
  2616. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2617. <dl class="phpdocumentor-argument-list">
  2618. <dt class="phpdocumentor-argument-list__entry">
  2619. <span class="phpdocumentor-signature__argument__name">$value</span>
  2620. : <span class="phpdocumentor-signature__argument__return-type">int|null</span>
  2621. </dt>
  2622. <dd class="phpdocumentor-argument-list__definition">
  2623. </dd>
  2624. </dl>
  2625. </article>
  2626. <article
  2627. class="phpdocumentor-element
  2628. -method
  2629. -protected
  2630. "
  2631. >
  2632. <h4 class="phpdocumentor-element__name" id="method_set_logoSpaceStartX">
  2633. set_logoSpaceStartX()
  2634. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_logoSpaceStartX" class="headerlink"><i class="fas fa-link"></i></a>
  2635. </h4>
  2636. <aside class="phpdocumentor-element-found-in">
  2637. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2638. :
  2639. <span class="phpdocumentor-element-found-in__line">536</span>
  2640. </aside>
  2641. <p class="phpdocumentor-summary">clamp/set horizontal logo space start</p>
  2642. <code class="phpdocumentor-code phpdocumentor-signature ">
  2643. <span class="phpdocumentor-signature__visibility">protected</span>
  2644. <span class="phpdocumentor-signature__name">set_logoSpaceStartX</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">int|null&nbsp;</span><span class="phpdocumentor-signature__argument__name">$value</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  2645. <div class="phpdocumentor-label-line">
  2646. </div>
  2647. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2648. <dl class="phpdocumentor-argument-list">
  2649. <dt class="phpdocumentor-argument-list__entry">
  2650. <span class="phpdocumentor-signature__argument__name">$value</span>
  2651. : <span class="phpdocumentor-signature__argument__return-type">int|null</span>
  2652. </dt>
  2653. <dd class="phpdocumentor-argument-list__definition">
  2654. </dd>
  2655. </dl>
  2656. </article>
  2657. <article
  2658. class="phpdocumentor-element
  2659. -method
  2660. -protected
  2661. "
  2662. >
  2663. <h4 class="phpdocumentor-element__name" id="method_set_logoSpaceStartY">
  2664. set_logoSpaceStartY()
  2665. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_logoSpaceStartY" class="headerlink"><i class="fas fa-link"></i></a>
  2666. </h4>
  2667. <aside class="phpdocumentor-element-found-in">
  2668. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2669. :
  2670. <span class="phpdocumentor-element-found-in__line">543</span>
  2671. </aside>
  2672. <p class="phpdocumentor-summary">clamp/set vertical logo space start</p>
  2673. <code class="phpdocumentor-code phpdocumentor-signature ">
  2674. <span class="phpdocumentor-signature__visibility">protected</span>
  2675. <span class="phpdocumentor-signature__name">set_logoSpaceStartY</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">int|null&nbsp;</span><span class="phpdocumentor-signature__argument__name">$value</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  2676. <div class="phpdocumentor-label-line">
  2677. </div>
  2678. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2679. <dl class="phpdocumentor-argument-list">
  2680. <dt class="phpdocumentor-argument-list__entry">
  2681. <span class="phpdocumentor-signature__argument__name">$value</span>
  2682. : <span class="phpdocumentor-signature__argument__return-type">int|null</span>
  2683. </dt>
  2684. <dd class="phpdocumentor-argument-list__definition">
  2685. </dd>
  2686. </dl>
  2687. </article>
  2688. <article
  2689. class="phpdocumentor-element
  2690. -method
  2691. -protected
  2692. "
  2693. >
  2694. <h4 class="phpdocumentor-element__name" id="method_set_logoSpaceWidth">
  2695. set_logoSpaceWidth()
  2696. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_logoSpaceWidth" class="headerlink"><i class="fas fa-link"></i></a>
  2697. </h4>
  2698. <aside class="phpdocumentor-element-found-in">
  2699. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2700. :
  2701. <span class="phpdocumentor-element-found-in__line">522</span>
  2702. </aside>
  2703. <p class="phpdocumentor-summary">clamp/set logo space width</p>
  2704. <code class="phpdocumentor-code phpdocumentor-signature ">
  2705. <span class="phpdocumentor-signature__visibility">protected</span>
  2706. <span class="phpdocumentor-signature__name">set_logoSpaceWidth</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">int|null&nbsp;</span><span class="phpdocumentor-signature__argument__name">$value</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  2707. <div class="phpdocumentor-label-line">
  2708. </div>
  2709. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2710. <dl class="phpdocumentor-argument-list">
  2711. <dt class="phpdocumentor-argument-list__entry">
  2712. <span class="phpdocumentor-signature__argument__name">$value</span>
  2713. : <span class="phpdocumentor-signature__argument__return-type">int|null</span>
  2714. </dt>
  2715. <dd class="phpdocumentor-argument-list__definition">
  2716. </dd>
  2717. </dl>
  2718. </article>
  2719. <article
  2720. class="phpdocumentor-element
  2721. -method
  2722. -protected
  2723. -deprecated "
  2724. >
  2725. <h4 class="phpdocumentor-element__name" id="method_set_pngCompression">
  2726. set_pngCompression()
  2727. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_pngCompression" class="headerlink"><i class="fas fa-link"></i></a>
  2728. </h4>
  2729. <aside class="phpdocumentor-element-found-in">
  2730. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2731. :
  2732. <span class="phpdocumentor-element-found-in__line">605</span>
  2733. </aside>
  2734. <p class="phpdocumentor-summary">redirect call to the new variable</p>
  2735. <code class="phpdocumentor-code phpdocumentor-signature -deprecated">
  2736. <span class="phpdocumentor-signature__visibility">protected</span>
  2737. <span class="phpdocumentor-signature__name">set_pngCompression</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">int&nbsp;</span><span class="phpdocumentor-signature__argument__name">$pngCompression</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  2738. <div class="phpdocumentor-label-line">
  2739. </div>
  2740. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2741. <dl class="phpdocumentor-argument-list">
  2742. <dt class="phpdocumentor-argument-list__entry">
  2743. <span class="phpdocumentor-signature__argument__name">$pngCompression</span>
  2744. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  2745. </dt>
  2746. <dd class="phpdocumentor-argument-list__definition">
  2747. </dd>
  2748. </dl>
  2749. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  2750. Tags
  2751. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_pngCompression#tags" class="headerlink"><i class="fas fa-link"></i></a>
  2752. </h5>
  2753. <dl class="phpdocumentor-tag-list">
  2754. <dt class="phpdocumentor-tag-list__entry">
  2755. <span class="phpdocumentor-tag__name">deprecated</span>
  2756. </dt>
  2757. <dd class="phpdocumentor-tag-list__definition">
  2758. <span class="phpdocumentor-tag-link">5.0.0</span>
  2759. <section class="phpdocumentor-description"><p>use QROptions::$quality instead</p>
  2760. </section>
  2761. </dd>
  2762. <dt class="phpdocumentor-tag-list__entry">
  2763. <span class="phpdocumentor-tag__name">see</span>
  2764. </dt>
  2765. <dd class="phpdocumentor-tag-list__definition">
  2766. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\QROptions::$quality">QROptions::$quality</abbr></span>
  2767. </dd>
  2768. <dt class="phpdocumentor-tag-list__entry">
  2769. <span class="phpdocumentor-tag__name">codeCoverageIgnore</span>
  2770. </dt>
  2771. <dd class="phpdocumentor-tag-list__definition">
  2772. </dd>
  2773. </dl>
  2774. </article>
  2775. <article
  2776. class="phpdocumentor-element
  2777. -method
  2778. -protected
  2779. "
  2780. >
  2781. <h4 class="phpdocumentor-element__name" id="method_set_quietzoneSize">
  2782. set_quietzoneSize()
  2783. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_quietzoneSize" class="headerlink"><i class="fas fa-link"></i></a>
  2784. </h4>
  2785. <aside class="phpdocumentor-element-found-in">
  2786. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2787. :
  2788. <span class="phpdocumentor-element-found-in__line">481</span>
  2789. </aside>
  2790. <p class="phpdocumentor-summary">sets/clamps the quiet zone size</p>
  2791. <code class="phpdocumentor-code phpdocumentor-signature ">
  2792. <span class="phpdocumentor-signature__visibility">protected</span>
  2793. <span class="phpdocumentor-signature__name">set_quietzoneSize</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">int&nbsp;</span><span class="phpdocumentor-signature__argument__name">$quietzoneSize</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  2794. <div class="phpdocumentor-label-line">
  2795. </div>
  2796. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2797. <dl class="phpdocumentor-argument-list">
  2798. <dt class="phpdocumentor-argument-list__entry">
  2799. <span class="phpdocumentor-signature__argument__name">$quietzoneSize</span>
  2800. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  2801. </dt>
  2802. <dd class="phpdocumentor-argument-list__definition">
  2803. </dd>
  2804. </dl>
  2805. </article>
  2806. <article
  2807. class="phpdocumentor-element
  2808. -method
  2809. -protected
  2810. "
  2811. >
  2812. <h4 class="phpdocumentor-element__name" id="method_set_readerUseImagickIfAvailable">
  2813. set_readerUseImagickIfAvailable()
  2814. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_readerUseImagickIfAvailable" class="headerlink"><i class="fas fa-link"></i></a>
  2815. </h4>
  2816. <aside class="phpdocumentor-element-found-in">
  2817. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2818. :
  2819. <span class="phpdocumentor-element-found-in__line">503</span>
  2820. </aside>
  2821. <p class="phpdocumentor-summary">enables Imagick for the QR Code reader if the extension is available</p>
  2822. <code class="phpdocumentor-code phpdocumentor-signature ">
  2823. <span class="phpdocumentor-signature__visibility">protected</span>
  2824. <span class="phpdocumentor-signature__name">set_readerUseImagickIfAvailable</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">bool&nbsp;</span><span class="phpdocumentor-signature__argument__name">$useImagickIfAvailable</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  2825. <div class="phpdocumentor-label-line">
  2826. </div>
  2827. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2828. <dl class="phpdocumentor-argument-list">
  2829. <dt class="phpdocumentor-argument-list__entry">
  2830. <span class="phpdocumentor-signature__argument__name">$useImagickIfAvailable</span>
  2831. : <span class="phpdocumentor-signature__argument__return-type">bool</span>
  2832. </dt>
  2833. <dd class="phpdocumentor-argument-list__definition">
  2834. </dd>
  2835. </dl>
  2836. </article>
  2837. <article
  2838. class="phpdocumentor-element
  2839. -method
  2840. -protected
  2841. "
  2842. >
  2843. <h4 class="phpdocumentor-element__name" id="method_set_version">
  2844. set_version()
  2845. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_version" class="headerlink"><i class="fas fa-link"></i></a>
  2846. </h4>
  2847. <aside class="phpdocumentor-element-found-in">
  2848. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2849. :
  2850. <span class="phpdocumentor-element-found-in__line">474</span>
  2851. </aside>
  2852. <p class="phpdocumentor-summary">sets/clamps the version number</p>
  2853. <code class="phpdocumentor-code phpdocumentor-signature ">
  2854. <span class="phpdocumentor-signature__visibility">protected</span>
  2855. <span class="phpdocumentor-signature__name">set_version</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">int&nbsp;</span><span class="phpdocumentor-signature__argument__name">$version</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  2856. <div class="phpdocumentor-label-line">
  2857. </div>
  2858. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2859. <dl class="phpdocumentor-argument-list">
  2860. <dt class="phpdocumentor-argument-list__entry">
  2861. <span class="phpdocumentor-signature__argument__name">$version</span>
  2862. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  2863. </dt>
  2864. <dd class="phpdocumentor-argument-list__definition">
  2865. </dd>
  2866. </dl>
  2867. </article>
  2868. <article
  2869. class="phpdocumentor-element
  2870. -method
  2871. -protected
  2872. "
  2873. >
  2874. <h4 class="phpdocumentor-element__name" id="method_set_versionMax">
  2875. set_versionMax()
  2876. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_versionMax" class="headerlink"><i class="fas fa-link"></i></a>
  2877. </h4>
  2878. <aside class="phpdocumentor-element-found-in">
  2879. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2880. :
  2881. <span class="phpdocumentor-element-found-in__line">467</span>
  2882. </aside>
  2883. <p class="phpdocumentor-summary">sets the maximum version number</p>
  2884. <code class="phpdocumentor-code phpdocumentor-signature ">
  2885. <span class="phpdocumentor-signature__visibility">protected</span>
  2886. <span class="phpdocumentor-signature__name">set_versionMax</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">int&nbsp;</span><span class="phpdocumentor-signature__argument__name">$version</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  2887. <div class="phpdocumentor-label-line">
  2888. </div>
  2889. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2890. <dl class="phpdocumentor-argument-list">
  2891. <dt class="phpdocumentor-argument-list__entry">
  2892. <span class="phpdocumentor-signature__argument__name">$version</span>
  2893. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  2894. </dt>
  2895. <dd class="phpdocumentor-argument-list__definition">
  2896. </dd>
  2897. </dl>
  2898. </article>
  2899. <article
  2900. class="phpdocumentor-element
  2901. -method
  2902. -protected
  2903. "
  2904. >
  2905. <h4 class="phpdocumentor-element__name" id="method_set_versionMin">
  2906. set_versionMin()
  2907. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_versionMin" class="headerlink"><i class="fas fa-link"></i></a>
  2908. </h4>
  2909. <aside class="phpdocumentor-element-found-in">
  2910. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2911. :
  2912. <span class="phpdocumentor-element-found-in__line">460</span>
  2913. </aside>
  2914. <p class="phpdocumentor-summary">sets the minimum version number</p>
  2915. <code class="phpdocumentor-code phpdocumentor-signature ">
  2916. <span class="phpdocumentor-signature__visibility">protected</span>
  2917. <span class="phpdocumentor-signature__name">set_versionMin</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">int&nbsp;</span><span class="phpdocumentor-signature__argument__name">$version</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  2918. <div class="phpdocumentor-label-line">
  2919. </div>
  2920. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2921. <dl class="phpdocumentor-argument-list">
  2922. <dt class="phpdocumentor-argument-list__entry">
  2923. <span class="phpdocumentor-signature__argument__name">$version</span>
  2924. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  2925. </dt>
  2926. <dd class="phpdocumentor-argument-list__definition">
  2927. </dd>
  2928. </dl>
  2929. </article>
  2930. <article
  2931. class="phpdocumentor-element
  2932. -method
  2933. -protected
  2934. "
  2935. >
  2936. <h4 class="phpdocumentor-element__name" id="method_setMinMaxVersion">
  2937. setMinMaxVersion()
  2938. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_setMinMaxVersion" class="headerlink"><i class="fas fa-link"></i></a>
  2939. </h4>
  2940. <aside class="phpdocumentor-element-found-in">
  2941. <abbr class="phpdocumentor-element-found-in__file" title="src/QROptionsTrait.php"><a href="files/src-qroptionstrait.html"><abbr title="src/QROptionsTrait.php">QROptionsTrait.php</abbr></a></abbr>
  2942. :
  2943. <span class="phpdocumentor-element-found-in__line">449</span>
  2944. </aside>
  2945. <p class="phpdocumentor-summary">clamp min/max version number</p>
  2946. <code class="phpdocumentor-code phpdocumentor-signature ">
  2947. <span class="phpdocumentor-signature__visibility">protected</span>
  2948. <span class="phpdocumentor-signature__name">setMinMaxVersion</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">int&nbsp;</span><span class="phpdocumentor-signature__argument__name">$versionMin</span></span><span class="phpdocumentor-signature__argument"><span>, </span><span class="phpdocumentor-signature__argument__return-type">int&nbsp;</span><span class="phpdocumentor-signature__argument__name">$versionMax</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  2949. <div class="phpdocumentor-label-line">
  2950. </div>
  2951. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2952. <dl class="phpdocumentor-argument-list">
  2953. <dt class="phpdocumentor-argument-list__entry">
  2954. <span class="phpdocumentor-signature__argument__name">$versionMin</span>
  2955. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  2956. </dt>
  2957. <dd class="phpdocumentor-argument-list__definition">
  2958. </dd>
  2959. <dt class="phpdocumentor-argument-list__entry">
  2960. <span class="phpdocumentor-signature__argument__name">$versionMax</span>
  2961. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  2962. </dt>
  2963. <dd class="phpdocumentor-argument-list__definition">
  2964. </dd>
  2965. </dl>
  2966. </article>
  2967. </section>
  2968. <div class="phpdocumentor-modal" id="source-view">
  2969. <div class="phpdocumentor-modal-bg" data-exit-button></div>
  2970. <div class="phpdocumentor-modal-container">
  2971. <div class="phpdocumentor-modal-content">
  2972. <pre style="max-height: 500px; overflow-y: scroll" data-src="files/src/QROptions.php.txt" class="language-php line-numbers linkable-line-numbers"></pre>
  2973. </div>
  2974. <button data-exit-button class="phpdocumentor-modal__close">&times;</button>
  2975. </div>
  2976. </div>
  2977. <script type="text/javascript">
  2978. (function () {
  2979. function loadExternalCodeSnippet(el, url, line) {
  2980. Array.prototype.slice.call(el.querySelectorAll('pre[data-src]')).forEach((pre) => {
  2981. const src = url || pre.getAttribute('data-src').replace(/\\/g, '/');
  2982. const language = 'php';
  2983. const code = document.createElement('code');
  2984. code.className = 'language-' + language;
  2985. pre.textContent = '';
  2986. pre.setAttribute('data-line', line)
  2987. code.textContent = 'Loading…';
  2988. pre.appendChild(code);
  2989. var xhr = new XMLHttpRequest();
  2990. xhr.open('GET', src, true);
  2991. xhr.onreadystatechange = function () {
  2992. if (xhr.readyState !== 4) {
  2993. return;
  2994. }
  2995. if (xhr.status < 400 && xhr.responseText) {
  2996. code.textContent = xhr.responseText;
  2997. Prism.highlightElement(code);
  2998. return;
  2999. }
  3000. if (xhr.status === 404) {
  3001. code.textContent = '✖ Error: File could not be found';
  3002. return;
  3003. }
  3004. if (xhr.status >= 400) {
  3005. code.textContent = '✖ Error ' + xhr.status + ' while fetching file: ' + xhr.statusText;
  3006. return;
  3007. }
  3008. code.textContent = '✖ Error: An unknown error occurred';
  3009. };
  3010. xhr.send(null);
  3011. });
  3012. }
  3013. const modalButtons = document.querySelectorAll("[data-modal]");
  3014. const openedAsLocalFile = window.location.protocol === 'file:';
  3015. if (modalButtons.length > 0 && openedAsLocalFile) {
  3016. console.warn(
  3017. 'Viewing the source code is unavailable because you are opening this page from the file:// scheme; ' +
  3018. 'browsers block XHR requests when a page is opened this way'
  3019. );
  3020. }
  3021. modalButtons.forEach(function (trigger) {
  3022. if (openedAsLocalFile) {
  3023. trigger.setAttribute("hidden", "hidden");
  3024. }
  3025. trigger.addEventListener("click", function (event) {
  3026. event.preventDefault();
  3027. const modal = document.getElementById(trigger.dataset.modal);
  3028. if (!modal) {
  3029. console.error(`Modal with id "${trigger.dataset.modal}" could not be found`);
  3030. return;
  3031. }
  3032. modal.classList.add("phpdocumentor-modal__open");
  3033. loadExternalCodeSnippet(modal, trigger.dataset.src || null, trigger.dataset.line)
  3034. const exits = modal.querySelectorAll("[data-exit-button]");
  3035. exits.forEach(function (exit) {
  3036. exit.addEventListener("click", function (event) {
  3037. event.preventDefault();
  3038. modal.classList.remove("phpdocumentor-modal__open");
  3039. });
  3040. });
  3041. });
  3042. });
  3043. })();
  3044. </script>
  3045. </article>
  3046. </section>
  3047. <section class="phpdocumentor-on-this-page__sidebar">
  3048. <section class="phpdocumentor-on-this-page__content">
  3049. <strong class="phpdocumentor-on-this-page__title">On this page</strong>
  3050. <ul class="phpdocumentor-list -clean">
  3051. <li class="phpdocumentor-on-this-page-section__title">Table Of Contents</li>
  3052. <li>
  3053. <ul class="phpdocumentor-list -clean">
  3054. <li><a href="classes/chillerlan-QRCode-QROptions.html#toc-properties">Properties</a></li>
  3055. <li><a href="classes/chillerlan-QRCode-QROptions.html#toc-methods">Methods</a></li>
  3056. </ul>
  3057. </li>
  3058. <li class="phpdocumentor-on-this-page-section__title">Properties</li>
  3059. <li>
  3060. <ul class="phpdocumentor-list -clean">
  3061. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_addLogoSpace">$addLogoSpace<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3062. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_addQuietzone">$addQuietzone<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3063. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_bgColor">$bgColor<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3064. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_cachefile">$cachefile<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3065. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_circleRadius">$circleRadius<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3066. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_connectPaths">$connectPaths<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3067. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_cssClass">$cssClass<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3068. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_drawCircularModules">$drawCircularModules<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3069. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_drawLightModules">$drawLightModules<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3070. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_eccLevel">$eccLevel<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3071. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_eol">$eol<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3072. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_excludeFromConnect">$excludeFromConnect<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3073. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_fpdfMeasureUnit">$fpdfMeasureUnit<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3074. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imageBase64">$imageBase64<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3075. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imageTransparent">$imageTransparent<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3076. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imagickFormat">$imagickFormat<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3077. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_jpegQuality">$jpegQuality<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3078. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_jsonAsBooleans">$jsonAsBooleans<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3079. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_keepAsSquare">$keepAsSquare<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3080. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_logoSpaceHeight">$logoSpaceHeight<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3081. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_logoSpaceStartX">$logoSpaceStartX<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3082. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_logoSpaceStartY">$logoSpaceStartY<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3083. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_logoSpaceWidth">$logoSpaceWidth<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3084. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_markupDark">$markupDark<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3085. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_markupLight">$markupLight<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3086. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_maskPattern">$maskPattern<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3087. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_moduleValues">$moduleValues<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3088. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_outputBase64">$outputBase64<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3089. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_outputInterface">$outputInterface<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3090. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_outputType">$outputType<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3091. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_pngCompression">$pngCompression<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3092. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_quality">$quality<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3093. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_quietzoneSize">$quietzoneSize<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3094. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_readerGrayscale">$readerGrayscale<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3095. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_readerIncreaseContrast">$readerIncreaseContrast<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3096. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_readerUseImagickIfAvailable">$readerUseImagickIfAvailable<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3097. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_returnResource">$returnResource<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3098. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_scale">$scale<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3099. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgAddXmlHeader">$svgAddXmlHeader<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3100. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgDefs">$svgDefs<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3101. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgHeight">$svgHeight<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3102. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgOpacity">$svgOpacity<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3103. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgPreserveAspectRatio">$svgPreserveAspectRatio<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3104. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgViewBoxSize">$svgViewBoxSize<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3105. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgWidth">$svgWidth<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3106. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_textDark">$textDark<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3107. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_textLight">$textLight<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3108. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_textLineStart">$textLineStart<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3109. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_transparencyColor">$transparencyColor<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3110. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_version">$version<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3111. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_versionMax">$versionMax<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3112. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_versionMin">$versionMin<a href="classes/chillerlan-QRCode-QROptions.html"></li>
  3113. </ul>
  3114. </li>
  3115. <li class="phpdocumentor-on-this-page-section__title">Methods</li>
  3116. <li>
  3117. <ul class="phpdocumentor-list -clean">
  3118. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_clampLogoSpaceValue">clampLogoSpaceValue()</a></li>
  3119. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_get_imageBase64">get_imageBase64()</a></li>
  3120. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_get_jpegQuality">get_jpegQuality()</a></li>
  3121. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_get_pngCompression">get_pngCompression()</a></li>
  3122. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_circleRadius">set_circleRadius()</a></li>
  3123. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_fpdfMeasureUnit">set_fpdfMeasureUnit()</a></li>
  3124. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_imageBase64">set_imageBase64()</a></li>
  3125. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_jpegQuality">set_jpegQuality()</a></li>
  3126. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_logoSpaceHeight">set_logoSpaceHeight()</a></li>
  3127. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_logoSpaceStartX">set_logoSpaceStartX()</a></li>
  3128. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_logoSpaceStartY">set_logoSpaceStartY()</a></li>
  3129. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_logoSpaceWidth">set_logoSpaceWidth()</a></li>
  3130. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_pngCompression">set_pngCompression()</a></li>
  3131. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_quietzoneSize">set_quietzoneSize()</a></li>
  3132. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_readerUseImagickIfAvailable">set_readerUseImagickIfAvailable()</a></li>
  3133. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_version">set_version()</a></li>
  3134. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_versionMax">set_versionMax()</a></li>
  3135. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_versionMin">set_versionMin()</a></li>
  3136. <li><a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_setMinMaxVersion">setMinMaxVersion()</a></li>
  3137. </ul>
  3138. </li>
  3139. </ul>
  3140. </section>
  3141. </section>
  3142. </div>
  3143. <section data-search-results class="phpdocumentor-search-results phpdocumentor-search-results--hidden">
  3144. <section class="phpdocumentor-search-results__dialog">
  3145. <header class="phpdocumentor-search-results__header">
  3146. <h2 class="phpdocumentor-search-results__title">Search results</h2>
  3147. <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
  3148. </header>
  3149. <section class="phpdocumentor-search-results__body">
  3150. <ul class="phpdocumentor-search-results__entries"></ul>
  3151. </section>
  3152. </section>
  3153. </section>
  3154. </div>
  3155. <a href="classes/chillerlan-QRCode-QROptions.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
  3156. </main>
  3157. <script>
  3158. cssVars({});
  3159. </script>
  3160. <script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/prism.min.js"></script>
  3161. <script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/autoloader/prism-autoloader.min.js"></script>
  3162. <script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/line-numbers/prism-line-numbers.min.js"></script>
  3163. <script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/line-highlight/prism-line-highlight.min.js"></script>
  3164. </body>
  3165. </html>