chillerlan-QRCode-QROptions.html 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483
  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=Source+Sans+Pro:wght@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/search.js"></script>
  22. <script defer src="js/searchIndex.js"></script>
  23. </head>
  24. <body id="top">
  25. <header class="phpdocumentor-header phpdocumentor-section">
  26. <h1 class="phpdocumentor-title"><a href="" class="phpdocumentor-title__link">Documentation</a></h1>
  27. <input class="phpdocumentor-header__menu-button" type="checkbox" id="menu-button" name="menu-button" />
  28. <label class="phpdocumentor-header__menu-icon" for="menu-button">
  29. <i class="fas fa-bars"></i>
  30. </label>
  31. <section data-search-form class="phpdocumentor-search">
  32. <label>
  33. <span class="visually-hidden">Search for</span>
  34. <svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
  35. <circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
  36. <line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
  37. </svg>
  38. <input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
  39. </label>
  40. </section>
  41. <nav class="phpdocumentor-topnav">
  42. <ul class="phpdocumentor-topnav__menu">
  43. </ul>
  44. </nav>
  45. </header>
  46. <main class="phpdocumentor">
  47. <div class="phpdocumentor-section">
  48. <input class="phpdocumentor-sidebar__menu-button" type="checkbox" id="sidebar-button" name="sidebar-button" />
  49. <label class="phpdocumentor-sidebar__menu-icon" for="sidebar-button">
  50. Menu
  51. </label>
  52. <aside class="phpdocumentor-column -four phpdocumentor-sidebar">
  53. <section class="phpdocumentor-sidebar__category">
  54. <h2 class="phpdocumentor-sidebar__category-header">Namespaces</h2>
  55. <h4 class="phpdocumentor-sidebar__root-namespace"><a href="namespaces/chillerlan.html">chillerlan</a></h4>
  56. <ul class="phpdocumentor-list">
  57. <li>
  58. <a href="namespaces/chillerlan-qrcode.html">QRCode</a>
  59. </li>
  60. <li>
  61. <a href="namespaces/chillerlan-qrcodetest.html">QRCodeTest</a>
  62. </li>
  63. </ul>
  64. </section>
  65. <section class="phpdocumentor-sidebar__category">
  66. <h2 class="phpdocumentor-sidebar__category-header">Packages</h2>
  67. <h4 class="phpdocumentor-sidebar__root-namespace"><a href="packages/Application.html">Application</a></h4>
  68. </section>
  69. <section class="phpdocumentor-sidebar__category">
  70. <h2 class="phpdocumentor-sidebar__category-header">Reports</h2>
  71. <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/deprecated.html">Deprecated</a></h3>
  72. <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/errors.html">Errors</a></h3>
  73. <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
  74. </section>
  75. <section class="phpdocumentor-sidebar__category">
  76. <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
  77. <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
  78. </section>
  79. </aside>
  80. <div class="phpdocumentor-column -eight phpdocumentor-content">
  81. <ul class="phpdocumentor-breadcrumbs">
  82. <li class="phpdocumentor-breadcrumb"><a href="namespaces/chillerlan.html">chillerlan</a></li>
  83. <li class="phpdocumentor-breadcrumb"><a href="namespaces/chillerlan-qrcode.html">QRCode</a></li>
  84. </ul>
  85. <article class="phpdocumentor-element -class">
  86. <h2 class="phpdocumentor-content__title">
  87. QROptions
  88. <span class="phpdocumentor-element__extends">
  89. extends <abbr title="\chillerlan\Settings\SettingsContainerAbstract">SettingsContainerAbstract</abbr>
  90. </span>
  91. <div class="phpdocumentor-element__package">
  92. in package
  93. <ul class="phpdocumentor-breadcrumbs">
  94. <li class="phpdocumentor-breadcrumb"><a href="packages/Application.html">Application</a></li>
  95. </ul>
  96. </div>
  97. <span class="phpdocumentor-element__extends">
  98. Uses
  99. <a href="classes/chillerlan-QRCode-QROptionsTrait.html"><abbr title="\chillerlan\QRCode\QROptionsTrait">QROptionsTrait</abbr></a> </span>
  100. </h2>
  101. <aside class="phpdocumentor-element-found-in">
  102. <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>
  103. :
  104. <span class="phpdocumentor-element-found-in__line">50</span>
  105. </aside>
  106. <p class="phpdocumentor-summary">The QRCode settings container</p>
  107. <h3 id="toc">
  108. Table of Contents
  109. <a href="#toc" class="headerlink"><i class="fas fa-link"></i></a>
  110. </h3>
  111. <dl class="phpdocumentor-table-of-contents">
  112. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  113. <a href="classes/chillerlan-QRCode-QROptions.html#property_addQuietzone">$addQuietzone</a>
  114. <span>
  115. &nbsp;: bool </span>
  116. </dt>
  117. <dd></dd>
  118. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  119. <a href="classes/chillerlan-QRCode-QROptions.html#property_cachefile">$cachefile</a>
  120. <span>
  121. &nbsp;: string|null </span>
  122. </dt>
  123. <dd></dd>
  124. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  125. <a href="classes/chillerlan-QRCode-QROptions.html#property_cssClass">$cssClass</a>
  126. <span>
  127. &nbsp;: string </span>
  128. </dt>
  129. <dd></dd>
  130. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  131. <a href="classes/chillerlan-QRCode-QROptions.html#property_eccLevel">$eccLevel</a>
  132. <span>
  133. &nbsp;: int </span>
  134. </dt>
  135. <dd></dd>
  136. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  137. <a href="classes/chillerlan-QRCode-QROptions.html#property_eol">$eol</a>
  138. <span>
  139. &nbsp;: string </span>
  140. </dt>
  141. <dd></dd>
  142. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  143. <a href="classes/chillerlan-QRCode-QROptions.html#property_fpdfMeasureUnit">$fpdfMeasureUnit</a>
  144. <span>
  145. &nbsp;: string </span>
  146. </dt>
  147. <dd></dd>
  148. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  149. <a href="classes/chillerlan-QRCode-QROptions.html#property_imageBase64">$imageBase64</a>
  150. <span>
  151. &nbsp;: bool </span>
  152. </dt>
  153. <dd></dd>
  154. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  155. <a href="classes/chillerlan-QRCode-QROptions.html#property_imageTransparencyBG">$imageTransparencyBG</a>
  156. <span>
  157. &nbsp;: array&lt;string|int, mixed&gt; </span>
  158. </dt>
  159. <dd></dd>
  160. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  161. <a href="classes/chillerlan-QRCode-QROptions.html#property_imageTransparent">$imageTransparent</a>
  162. <span>
  163. &nbsp;: bool </span>
  164. </dt>
  165. <dd></dd>
  166. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  167. <a href="classes/chillerlan-QRCode-QROptions.html#property_imagickBG">$imagickBG</a>
  168. <span>
  169. &nbsp;: string|null </span>
  170. </dt>
  171. <dd></dd>
  172. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  173. <a href="classes/chillerlan-QRCode-QROptions.html#property_imagickFormat">$imagickFormat</a>
  174. <span>
  175. &nbsp;: string </span>
  176. </dt>
  177. <dd></dd>
  178. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  179. <a href="classes/chillerlan-QRCode-QROptions.html#property_jpegQuality">$jpegQuality</a>
  180. <span>
  181. &nbsp;: int </span>
  182. </dt>
  183. <dd></dd>
  184. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  185. <a href="classes/chillerlan-QRCode-QROptions.html#property_markupDark">$markupDark</a>
  186. <span>
  187. &nbsp;: string </span>
  188. </dt>
  189. <dd></dd>
  190. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  191. <a href="classes/chillerlan-QRCode-QROptions.html#property_markupLight">$markupLight</a>
  192. <span>
  193. &nbsp;: string </span>
  194. </dt>
  195. <dd></dd>
  196. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  197. <a href="classes/chillerlan-QRCode-QROptions.html#property_maskPattern">$maskPattern</a>
  198. <span>
  199. &nbsp;: int </span>
  200. </dt>
  201. <dd></dd>
  202. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  203. <a href="classes/chillerlan-QRCode-QROptions.html#property_moduleValues">$moduleValues</a>
  204. <span>
  205. &nbsp;: array&lt;string|int, mixed&gt;|null </span>
  206. </dt>
  207. <dd></dd>
  208. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  209. <a href="classes/chillerlan-QRCode-QROptions.html#property_outputInterface">$outputInterface</a>
  210. <span>
  211. &nbsp;: string|null </span>
  212. </dt>
  213. <dd></dd>
  214. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  215. <a href="classes/chillerlan-QRCode-QROptions.html#property_outputType">$outputType</a>
  216. <span>
  217. &nbsp;: string </span>
  218. </dt>
  219. <dd></dd>
  220. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  221. <a href="classes/chillerlan-QRCode-QROptions.html#property_pngCompression">$pngCompression</a>
  222. <span>
  223. &nbsp;: int </span>
  224. </dt>
  225. <dd></dd>
  226. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  227. <a href="classes/chillerlan-QRCode-QROptions.html#property_quietzoneSize">$quietzoneSize</a>
  228. <span>
  229. &nbsp;: int </span>
  230. </dt>
  231. <dd></dd>
  232. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  233. <a href="classes/chillerlan-QRCode-QROptions.html#property_returnResource">$returnResource</a>
  234. <span>
  235. &nbsp;: bool </span>
  236. </dt>
  237. <dd></dd>
  238. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  239. <a href="classes/chillerlan-QRCode-QROptions.html#property_scale">$scale</a>
  240. <span>
  241. &nbsp;: int </span>
  242. </dt>
  243. <dd></dd>
  244. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  245. <a href="classes/chillerlan-QRCode-QROptions.html#property_svgDefs">$svgDefs</a>
  246. <span>
  247. &nbsp;: string </span>
  248. </dt>
  249. <dd></dd>
  250. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  251. <a href="classes/chillerlan-QRCode-QROptions.html#property_svgOpacity">$svgOpacity</a>
  252. <span>
  253. &nbsp;: float </span>
  254. </dt>
  255. <dd></dd>
  256. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  257. <a href="classes/chillerlan-QRCode-QROptions.html#property_svgViewBoxSize">$svgViewBoxSize</a>
  258. <span>
  259. &nbsp;: int </span>
  260. </dt>
  261. <dd></dd>
  262. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  263. <a href="classes/chillerlan-QRCode-QROptions.html#property_textDark">$textDark</a>
  264. <span>
  265. &nbsp;: string </span>
  266. </dt>
  267. <dd></dd>
  268. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  269. <a href="classes/chillerlan-QRCode-QROptions.html#property_textLight">$textLight</a>
  270. <span>
  271. &nbsp;: string </span>
  272. </dt>
  273. <dd></dd>
  274. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  275. <a href="classes/chillerlan-QRCode-QROptions.html#property_useImagickIfAvailable">$useImagickIfAvailable</a>
  276. <span>
  277. &nbsp;: bool </span>
  278. </dt>
  279. <dd></dd>
  280. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  281. <a href="classes/chillerlan-QRCode-QROptions.html#property_version">$version</a>
  282. <span>
  283. &nbsp;: int </span>
  284. </dt>
  285. <dd></dd>
  286. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  287. <a href="classes/chillerlan-QRCode-QROptions.html#property_versionMax">$versionMax</a>
  288. <span>
  289. &nbsp;: int </span>
  290. </dt>
  291. <dd></dd>
  292. <dt class="phpdocumentor-table-of-contents__entry -property -public">
  293. <a href="classes/chillerlan-QRCode-QROptions.html#property_versionMin">$versionMin</a>
  294. <span>
  295. &nbsp;: int </span>
  296. </dt>
  297. <dd></dd>
  298. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  299. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_addQuietzone">$addQuietzone</a>
  300. <span>
  301. &nbsp;: bool </span>
  302. </dt>
  303. <dd>Add a &quot;quiet zone&quot; (margin) according to the QR code spec</dd>
  304. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  305. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_cachefile">$cachefile</a>
  306. <span>
  307. &nbsp;: string|null </span>
  308. </dt>
  309. <dd>/path/to/cache.file</dd>
  310. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  311. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_cssClass">$cssClass</a>
  312. <span>
  313. &nbsp;: string </span>
  314. </dt>
  315. <dd>a common css class</dd>
  316. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  317. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_eccLevel">$eccLevel</a>
  318. <span>
  319. &nbsp;: int </span>
  320. </dt>
  321. <dd>Error correct level</dd>
  322. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  323. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_eol">$eol</a>
  324. <span>
  325. &nbsp;: string </span>
  326. </dt>
  327. <dd>newline string [HTML, SVG, TEXT]</dd>
  328. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  329. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_fpdfMeasureUnit">$fpdfMeasureUnit</a>
  330. <span>
  331. &nbsp;: string </span>
  332. </dt>
  333. <dd>Measurement unit for FPDF output: pt, mm, cm, in (defaults to &quot;pt&quot;)</dd>
  334. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  335. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imageBase64">$imageBase64</a>
  336. <span>
  337. &nbsp;: bool </span>
  338. </dt>
  339. <dd>toggle base64 or raw image data</dd>
  340. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  341. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imageTransparencyBG">$imageTransparencyBG</a>
  342. <span>
  343. &nbsp;: array&lt;string|int, mixed&gt; </span>
  344. </dt>
  345. <dd></dd>
  346. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  347. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imageTransparent">$imageTransparent</a>
  348. <span>
  349. &nbsp;: bool </span>
  350. </dt>
  351. <dd>toggle transparency, not supported by jpg</dd>
  352. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  353. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imagickBG">$imagickBG</a>
  354. <span>
  355. &nbsp;: string|null </span>
  356. </dt>
  357. <dd>Imagick background color (defaults to &quot;transparent&quot;)</dd>
  358. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  359. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imagickFormat">$imagickFormat</a>
  360. <span>
  361. &nbsp;: string </span>
  362. </dt>
  363. <dd>Imagick output format</dd>
  364. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  365. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_jpegQuality">$jpegQuality</a>
  366. <span>
  367. &nbsp;: int </span>
  368. </dt>
  369. <dd></dd>
  370. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  371. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_markupDark">$markupDark</a>
  372. <span>
  373. &nbsp;: string </span>
  374. </dt>
  375. <dd>markup substitute for dark (CSS value)</dd>
  376. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  377. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_markupLight">$markupLight</a>
  378. <span>
  379. &nbsp;: string </span>
  380. </dt>
  381. <dd>markup substitute for light (CSS value)</dd>
  382. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  383. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_maskPattern">$maskPattern</a>
  384. <span>
  385. &nbsp;: int </span>
  386. </dt>
  387. <dd>Mask Pattern to use (no value in using, mostly for unit testing purposes)</dd>
  388. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  389. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_moduleValues">$moduleValues</a>
  390. <span>
  391. &nbsp;: array&lt;string|int, mixed&gt;|null </span>
  392. </dt>
  393. <dd>Module values map</dd>
  394. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  395. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_outputInterface">$outputInterface</a>
  396. <span>
  397. &nbsp;: string|null </span>
  398. </dt>
  399. <dd>the FQCN of the custom QROutputInterface if $outputType is set to QRCode::OUTPUT_CUSTOM</dd>
  400. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  401. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_outputType">$outputType</a>
  402. <span>
  403. &nbsp;: string </span>
  404. </dt>
  405. <dd>The output type</dd>
  406. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  407. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_pngCompression">$pngCompression</a>
  408. <span>
  409. &nbsp;: int </span>
  410. </dt>
  411. <dd></dd>
  412. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  413. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_quietzoneSize">$quietzoneSize</a>
  414. <span>
  415. &nbsp;: int </span>
  416. </dt>
  417. <dd>Size of the quiet zone</dd>
  418. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  419. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_returnResource">$returnResource</a>
  420. <span>
  421. &nbsp;: bool </span>
  422. </dt>
  423. <dd>Return the image resource instead of a render if applicable.</dd>
  424. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  425. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_scale">$scale</a>
  426. <span>
  427. &nbsp;: int </span>
  428. </dt>
  429. <dd>size of a QR code pixel [SVG, IMAGE_*], HTML via CSS</dd>
  430. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  431. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgDefs">$svgDefs</a>
  432. <span>
  433. &nbsp;: string </span>
  434. </dt>
  435. <dd>anything between &lt;defs&gt;</dd>
  436. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  437. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgOpacity">$svgOpacity</a>
  438. <span>
  439. &nbsp;: float </span>
  440. </dt>
  441. <dd>SVG opacity</dd>
  442. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  443. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgViewBoxSize">$svgViewBoxSize</a>
  444. <span>
  445. &nbsp;: int|null </span>
  446. </dt>
  447. <dd>SVG viewBox size. a single integer number which defines width/height of the viewBox attribute.</dd>
  448. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  449. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_textDark">$textDark</a>
  450. <span>
  451. &nbsp;: string </span>
  452. </dt>
  453. <dd>string substitute for dark</dd>
  454. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  455. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_textLight">$textLight</a>
  456. <span>
  457. &nbsp;: string </span>
  458. </dt>
  459. <dd>string substitute for light</dd>
  460. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  461. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_useImagickIfAvailable">$useImagickIfAvailable</a>
  462. <span>
  463. &nbsp;: bool </span>
  464. </dt>
  465. <dd>use Imaagick (if available) when reading QR Codes</dd>
  466. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  467. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_version">$version</a>
  468. <span>
  469. &nbsp;: int </span>
  470. </dt>
  471. <dd>QR Code version number</dd>
  472. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  473. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_versionMax">$versionMax</a>
  474. <span>
  475. &nbsp;: int </span>
  476. </dt>
  477. <dd>Maximum QR version</dd>
  478. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  479. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_versionMin">$versionMin</a>
  480. <span>
  481. &nbsp;: int </span>
  482. </dt>
  483. <dd>Minimum QR version</dd>
  484. <dt class="phpdocumentor-table-of-contents__entry -method -public">
  485. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_getLuminanceSourceFQCN">getLuminanceSourceFQCN()</a>
  486. <span>
  487. &nbsp;: string </span>
  488. </dt>
  489. <dd>returns the FQCN of the luminance source class to use in the reader (GD or Imagick)</dd>
  490. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  491. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_eccLevel">set_eccLevel()</a>
  492. <span>
  493. &nbsp;: void </span>
  494. </dt>
  495. <dd>sets the error correction level</dd>
  496. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  497. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_fpdfMeasureUnit">set_fpdfMeasureUnit()</a>
  498. <span>
  499. &nbsp;: void </span>
  500. </dt>
  501. <dd>sets the FPDF measurement unit</dd>
  502. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  503. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_imageTransparencyBG">set_imageTransparencyBG()</a>
  504. <span>
  505. &nbsp;: void </span>
  506. </dt>
  507. <dd>sets the transparency background color</dd>
  508. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  509. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_maskPattern">set_maskPattern()</a>
  510. <span>
  511. &nbsp;: void </span>
  512. </dt>
  513. <dd>sets/clamps the mask pattern</dd>
  514. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  515. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_useImagickIfAvailable">set_useImagickIfAvailable()</a>
  516. <span>
  517. &nbsp;: void </span>
  518. </dt>
  519. <dd>enables Imagick for the QR Code reader if the extension is available</dd>
  520. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  521. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_version">set_version()</a>
  522. <span>
  523. &nbsp;: void </span>
  524. </dt>
  525. <dd>sets/clamps the version number</dd>
  526. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  527. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_versionMax">set_versionMax()</a>
  528. <span>
  529. &nbsp;: void </span>
  530. </dt>
  531. <dd>sets the maximum version number</dd>
  532. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  533. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_versionMin">set_versionMin()</a>
  534. <span>
  535. &nbsp;: void </span>
  536. </dt>
  537. <dd>sets the minimum version number</dd>
  538. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  539. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_setMinMaxVersion">setMinMaxVersion()</a>
  540. <span>
  541. &nbsp;: void </span>
  542. </dt>
  543. <dd>clamp min/max version number</dd>
  544. </dl>
  545. <section class="phpdocumentor-properties">
  546. <h3 class="phpdocumentor-elements__header" id="properties">
  547. Properties
  548. <a href="classes/chillerlan-QRCode-QROptions.html#properties" class="headerlink"><i class="fas fa-link"></i></a>
  549. </h3>
  550. <article
  551. class="
  552. phpdocumentor-element
  553. -property
  554. -public
  555. "
  556. >
  557. <h4 class="phpdocumentor-element__name" id="property_addQuietzone">
  558. $addQuietzone
  559. <a href="classes/chillerlan-QRCode-QROptions.html#property_addQuietzone" class="headerlink"><i class="fas fa-link"></i></a>
  560. <span class="phpdocumentor-element__modifiers">
  561. </span>
  562. </h4>
  563. <aside class="phpdocumentor-element-found-in">
  564. <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>
  565. :
  566. <span class="phpdocumentor-element-found-in__line">0</span>
  567. </aside>
  568. <code class="phpdocumentor-code phpdocumentor-signature ">
  569. <span class="phpdocumentor-signature__visibility">public</span>
  570. <span class="phpdocumentor-signature__type">bool</span>
  571. <span class="phpdocumentor-signature__name">$addQuietzone</span>
  572. </code>
  573. <section class="phpdocumentor-description"></section>
  574. </article>
  575. <article
  576. class="
  577. phpdocumentor-element
  578. -property
  579. -public
  580. "
  581. >
  582. <h4 class="phpdocumentor-element__name" id="property_cachefile">
  583. $cachefile
  584. <a href="classes/chillerlan-QRCode-QROptions.html#property_cachefile" class="headerlink"><i class="fas fa-link"></i></a>
  585. <span class="phpdocumentor-element__modifiers">
  586. </span>
  587. </h4>
  588. <aside class="phpdocumentor-element-found-in">
  589. <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>
  590. :
  591. <span class="phpdocumentor-element-found-in__line">0</span>
  592. </aside>
  593. <code class="phpdocumentor-code phpdocumentor-signature ">
  594. <span class="phpdocumentor-signature__visibility">public</span>
  595. <span class="phpdocumentor-signature__type">string|null</span>
  596. <span class="phpdocumentor-signature__name">$cachefile</span>
  597. </code>
  598. <section class="phpdocumentor-description"></section>
  599. </article>
  600. <article
  601. class="
  602. phpdocumentor-element
  603. -property
  604. -public
  605. "
  606. >
  607. <h4 class="phpdocumentor-element__name" id="property_cssClass">
  608. $cssClass
  609. <a href="classes/chillerlan-QRCode-QROptions.html#property_cssClass" class="headerlink"><i class="fas fa-link"></i></a>
  610. <span class="phpdocumentor-element__modifiers">
  611. </span>
  612. </h4>
  613. <aside class="phpdocumentor-element-found-in">
  614. <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>
  615. :
  616. <span class="phpdocumentor-element-found-in__line">0</span>
  617. </aside>
  618. <code class="phpdocumentor-code phpdocumentor-signature ">
  619. <span class="phpdocumentor-signature__visibility">public</span>
  620. <span class="phpdocumentor-signature__type">string</span>
  621. <span class="phpdocumentor-signature__name">$cssClass</span>
  622. </code>
  623. <section class="phpdocumentor-description"></section>
  624. </article>
  625. <article
  626. class="
  627. phpdocumentor-element
  628. -property
  629. -public
  630. "
  631. >
  632. <h4 class="phpdocumentor-element__name" id="property_eccLevel">
  633. $eccLevel
  634. <a href="classes/chillerlan-QRCode-QROptions.html#property_eccLevel" class="headerlink"><i class="fas fa-link"></i></a>
  635. <span class="phpdocumentor-element__modifiers">
  636. </span>
  637. </h4>
  638. <aside class="phpdocumentor-element-found-in">
  639. <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>
  640. :
  641. <span class="phpdocumentor-element-found-in__line">0</span>
  642. </aside>
  643. <code class="phpdocumentor-code phpdocumentor-signature ">
  644. <span class="phpdocumentor-signature__visibility">public</span>
  645. <span class="phpdocumentor-signature__type">int</span>
  646. <span class="phpdocumentor-signature__name">$eccLevel</span>
  647. </code>
  648. <section class="phpdocumentor-description"></section>
  649. </article>
  650. <article
  651. class="
  652. phpdocumentor-element
  653. -property
  654. -public
  655. "
  656. >
  657. <h4 class="phpdocumentor-element__name" id="property_eol">
  658. $eol
  659. <a href="classes/chillerlan-QRCode-QROptions.html#property_eol" class="headerlink"><i class="fas fa-link"></i></a>
  660. <span class="phpdocumentor-element__modifiers">
  661. </span>
  662. </h4>
  663. <aside class="phpdocumentor-element-found-in">
  664. <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>
  665. :
  666. <span class="phpdocumentor-element-found-in__line">0</span>
  667. </aside>
  668. <code class="phpdocumentor-code phpdocumentor-signature ">
  669. <span class="phpdocumentor-signature__visibility">public</span>
  670. <span class="phpdocumentor-signature__type">string</span>
  671. <span class="phpdocumentor-signature__name">$eol</span>
  672. </code>
  673. <section class="phpdocumentor-description"></section>
  674. </article>
  675. <article
  676. class="
  677. phpdocumentor-element
  678. -property
  679. -public
  680. "
  681. >
  682. <h4 class="phpdocumentor-element__name" id="property_fpdfMeasureUnit">
  683. $fpdfMeasureUnit
  684. <a href="classes/chillerlan-QRCode-QROptions.html#property_fpdfMeasureUnit" class="headerlink"><i class="fas fa-link"></i></a>
  685. <span class="phpdocumentor-element__modifiers">
  686. </span>
  687. </h4>
  688. <aside class="phpdocumentor-element-found-in">
  689. <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>
  690. :
  691. <span class="phpdocumentor-element-found-in__line">0</span>
  692. </aside>
  693. <code class="phpdocumentor-code phpdocumentor-signature ">
  694. <span class="phpdocumentor-signature__visibility">public</span>
  695. <span class="phpdocumentor-signature__type">string</span>
  696. <span class="phpdocumentor-signature__name">$fpdfMeasureUnit</span>
  697. </code>
  698. <section class="phpdocumentor-description"></section>
  699. </article>
  700. <article
  701. class="
  702. phpdocumentor-element
  703. -property
  704. -public
  705. "
  706. >
  707. <h4 class="phpdocumentor-element__name" id="property_imageBase64">
  708. $imageBase64
  709. <a href="classes/chillerlan-QRCode-QROptions.html#property_imageBase64" class="headerlink"><i class="fas fa-link"></i></a>
  710. <span class="phpdocumentor-element__modifiers">
  711. </span>
  712. </h4>
  713. <aside class="phpdocumentor-element-found-in">
  714. <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>
  715. :
  716. <span class="phpdocumentor-element-found-in__line">0</span>
  717. </aside>
  718. <code class="phpdocumentor-code phpdocumentor-signature ">
  719. <span class="phpdocumentor-signature__visibility">public</span>
  720. <span class="phpdocumentor-signature__type">bool</span>
  721. <span class="phpdocumentor-signature__name">$imageBase64</span>
  722. </code>
  723. <section class="phpdocumentor-description"></section>
  724. </article>
  725. <article
  726. class="
  727. phpdocumentor-element
  728. -property
  729. -public
  730. "
  731. >
  732. <h4 class="phpdocumentor-element__name" id="property_imageTransparencyBG">
  733. $imageTransparencyBG
  734. <a href="classes/chillerlan-QRCode-QROptions.html#property_imageTransparencyBG" class="headerlink"><i class="fas fa-link"></i></a>
  735. <span class="phpdocumentor-element__modifiers">
  736. </span>
  737. </h4>
  738. <aside class="phpdocumentor-element-found-in">
  739. <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>
  740. :
  741. <span class="phpdocumentor-element-found-in__line">0</span>
  742. </aside>
  743. <code class="phpdocumentor-code phpdocumentor-signature ">
  744. <span class="phpdocumentor-signature__visibility">public</span>
  745. <span class="phpdocumentor-signature__type">array&lt;string|int, mixed&gt;</span>
  746. <span class="phpdocumentor-signature__name">$imageTransparencyBG</span>
  747. </code>
  748. <section class="phpdocumentor-description"></section>
  749. </article>
  750. <article
  751. class="
  752. phpdocumentor-element
  753. -property
  754. -public
  755. "
  756. >
  757. <h4 class="phpdocumentor-element__name" id="property_imageTransparent">
  758. $imageTransparent
  759. <a href="classes/chillerlan-QRCode-QROptions.html#property_imageTransparent" class="headerlink"><i class="fas fa-link"></i></a>
  760. <span class="phpdocumentor-element__modifiers">
  761. </span>
  762. </h4>
  763. <aside class="phpdocumentor-element-found-in">
  764. <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>
  765. :
  766. <span class="phpdocumentor-element-found-in__line">0</span>
  767. </aside>
  768. <code class="phpdocumentor-code phpdocumentor-signature ">
  769. <span class="phpdocumentor-signature__visibility">public</span>
  770. <span class="phpdocumentor-signature__type">bool</span>
  771. <span class="phpdocumentor-signature__name">$imageTransparent</span>
  772. </code>
  773. <section class="phpdocumentor-description"></section>
  774. </article>
  775. <article
  776. class="
  777. phpdocumentor-element
  778. -property
  779. -public
  780. "
  781. >
  782. <h4 class="phpdocumentor-element__name" id="property_imagickBG">
  783. $imagickBG
  784. <a href="classes/chillerlan-QRCode-QROptions.html#property_imagickBG" class="headerlink"><i class="fas fa-link"></i></a>
  785. <span class="phpdocumentor-element__modifiers">
  786. </span>
  787. </h4>
  788. <aside class="phpdocumentor-element-found-in">
  789. <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>
  790. :
  791. <span class="phpdocumentor-element-found-in__line">0</span>
  792. </aside>
  793. <code class="phpdocumentor-code phpdocumentor-signature ">
  794. <span class="phpdocumentor-signature__visibility">public</span>
  795. <span class="phpdocumentor-signature__type">string|null</span>
  796. <span class="phpdocumentor-signature__name">$imagickBG</span>
  797. </code>
  798. <section class="phpdocumentor-description"></section>
  799. </article>
  800. <article
  801. class="
  802. phpdocumentor-element
  803. -property
  804. -public
  805. "
  806. >
  807. <h4 class="phpdocumentor-element__name" id="property_imagickFormat">
  808. $imagickFormat
  809. <a href="classes/chillerlan-QRCode-QROptions.html#property_imagickFormat" class="headerlink"><i class="fas fa-link"></i></a>
  810. <span class="phpdocumentor-element__modifiers">
  811. </span>
  812. </h4>
  813. <aside class="phpdocumentor-element-found-in">
  814. <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>
  815. :
  816. <span class="phpdocumentor-element-found-in__line">0</span>
  817. </aside>
  818. <code class="phpdocumentor-code phpdocumentor-signature ">
  819. <span class="phpdocumentor-signature__visibility">public</span>
  820. <span class="phpdocumentor-signature__type">string</span>
  821. <span class="phpdocumentor-signature__name">$imagickFormat</span>
  822. </code>
  823. <section class="phpdocumentor-description"></section>
  824. </article>
  825. <article
  826. class="
  827. phpdocumentor-element
  828. -property
  829. -public
  830. "
  831. >
  832. <h4 class="phpdocumentor-element__name" id="property_jpegQuality">
  833. $jpegQuality
  834. <a href="classes/chillerlan-QRCode-QROptions.html#property_jpegQuality" class="headerlink"><i class="fas fa-link"></i></a>
  835. <span class="phpdocumentor-element__modifiers">
  836. </span>
  837. </h4>
  838. <aside class="phpdocumentor-element-found-in">
  839. <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>
  840. :
  841. <span class="phpdocumentor-element-found-in__line">0</span>
  842. </aside>
  843. <code class="phpdocumentor-code phpdocumentor-signature ">
  844. <span class="phpdocumentor-signature__visibility">public</span>
  845. <span class="phpdocumentor-signature__type">int</span>
  846. <span class="phpdocumentor-signature__name">$jpegQuality</span>
  847. </code>
  848. <section class="phpdocumentor-description"></section>
  849. </article>
  850. <article
  851. class="
  852. phpdocumentor-element
  853. -property
  854. -public
  855. "
  856. >
  857. <h4 class="phpdocumentor-element__name" id="property_markupDark">
  858. $markupDark
  859. <a href="classes/chillerlan-QRCode-QROptions.html#property_markupDark" class="headerlink"><i class="fas fa-link"></i></a>
  860. <span class="phpdocumentor-element__modifiers">
  861. </span>
  862. </h4>
  863. <aside class="phpdocumentor-element-found-in">
  864. <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>
  865. :
  866. <span class="phpdocumentor-element-found-in__line">0</span>
  867. </aside>
  868. <code class="phpdocumentor-code phpdocumentor-signature ">
  869. <span class="phpdocumentor-signature__visibility">public</span>
  870. <span class="phpdocumentor-signature__type">string</span>
  871. <span class="phpdocumentor-signature__name">$markupDark</span>
  872. </code>
  873. <section class="phpdocumentor-description"></section>
  874. </article>
  875. <article
  876. class="
  877. phpdocumentor-element
  878. -property
  879. -public
  880. "
  881. >
  882. <h4 class="phpdocumentor-element__name" id="property_markupLight">
  883. $markupLight
  884. <a href="classes/chillerlan-QRCode-QROptions.html#property_markupLight" class="headerlink"><i class="fas fa-link"></i></a>
  885. <span class="phpdocumentor-element__modifiers">
  886. </span>
  887. </h4>
  888. <aside class="phpdocumentor-element-found-in">
  889. <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>
  890. :
  891. <span class="phpdocumentor-element-found-in__line">0</span>
  892. </aside>
  893. <code class="phpdocumentor-code phpdocumentor-signature ">
  894. <span class="phpdocumentor-signature__visibility">public</span>
  895. <span class="phpdocumentor-signature__type">string</span>
  896. <span class="phpdocumentor-signature__name">$markupLight</span>
  897. </code>
  898. <section class="phpdocumentor-description"></section>
  899. </article>
  900. <article
  901. class="
  902. phpdocumentor-element
  903. -property
  904. -public
  905. "
  906. >
  907. <h4 class="phpdocumentor-element__name" id="property_maskPattern">
  908. $maskPattern
  909. <a href="classes/chillerlan-QRCode-QROptions.html#property_maskPattern" class="headerlink"><i class="fas fa-link"></i></a>
  910. <span class="phpdocumentor-element__modifiers">
  911. </span>
  912. </h4>
  913. <aside class="phpdocumentor-element-found-in">
  914. <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>
  915. :
  916. <span class="phpdocumentor-element-found-in__line">0</span>
  917. </aside>
  918. <code class="phpdocumentor-code phpdocumentor-signature ">
  919. <span class="phpdocumentor-signature__visibility">public</span>
  920. <span class="phpdocumentor-signature__type">int</span>
  921. <span class="phpdocumentor-signature__name">$maskPattern</span>
  922. </code>
  923. <section class="phpdocumentor-description"></section>
  924. </article>
  925. <article
  926. class="
  927. phpdocumentor-element
  928. -property
  929. -public
  930. "
  931. >
  932. <h4 class="phpdocumentor-element__name" id="property_moduleValues">
  933. $moduleValues
  934. <a href="classes/chillerlan-QRCode-QROptions.html#property_moduleValues" class="headerlink"><i class="fas fa-link"></i></a>
  935. <span class="phpdocumentor-element__modifiers">
  936. </span>
  937. </h4>
  938. <aside class="phpdocumentor-element-found-in">
  939. <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>
  940. :
  941. <span class="phpdocumentor-element-found-in__line">0</span>
  942. </aside>
  943. <code class="phpdocumentor-code phpdocumentor-signature ">
  944. <span class="phpdocumentor-signature__visibility">public</span>
  945. <span class="phpdocumentor-signature__type">array&lt;string|int, mixed&gt;|null</span>
  946. <span class="phpdocumentor-signature__name">$moduleValues</span>
  947. </code>
  948. <section class="phpdocumentor-description"></section>
  949. </article>
  950. <article
  951. class="
  952. phpdocumentor-element
  953. -property
  954. -public
  955. "
  956. >
  957. <h4 class="phpdocumentor-element__name" id="property_outputInterface">
  958. $outputInterface
  959. <a href="classes/chillerlan-QRCode-QROptions.html#property_outputInterface" class="headerlink"><i class="fas fa-link"></i></a>
  960. <span class="phpdocumentor-element__modifiers">
  961. </span>
  962. </h4>
  963. <aside class="phpdocumentor-element-found-in">
  964. <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>
  965. :
  966. <span class="phpdocumentor-element-found-in__line">0</span>
  967. </aside>
  968. <code class="phpdocumentor-code phpdocumentor-signature ">
  969. <span class="phpdocumentor-signature__visibility">public</span>
  970. <span class="phpdocumentor-signature__type">string|null</span>
  971. <span class="phpdocumentor-signature__name">$outputInterface</span>
  972. </code>
  973. <section class="phpdocumentor-description"></section>
  974. </article>
  975. <article
  976. class="
  977. phpdocumentor-element
  978. -property
  979. -public
  980. "
  981. >
  982. <h4 class="phpdocumentor-element__name" id="property_outputType">
  983. $outputType
  984. <a href="classes/chillerlan-QRCode-QROptions.html#property_outputType" class="headerlink"><i class="fas fa-link"></i></a>
  985. <span class="phpdocumentor-element__modifiers">
  986. </span>
  987. </h4>
  988. <aside class="phpdocumentor-element-found-in">
  989. <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>
  990. :
  991. <span class="phpdocumentor-element-found-in__line">0</span>
  992. </aside>
  993. <code class="phpdocumentor-code phpdocumentor-signature ">
  994. <span class="phpdocumentor-signature__visibility">public</span>
  995. <span class="phpdocumentor-signature__type">string</span>
  996. <span class="phpdocumentor-signature__name">$outputType</span>
  997. </code>
  998. <section class="phpdocumentor-description"></section>
  999. </article>
  1000. <article
  1001. class="
  1002. phpdocumentor-element
  1003. -property
  1004. -public
  1005. "
  1006. >
  1007. <h4 class="phpdocumentor-element__name" id="property_pngCompression">
  1008. $pngCompression
  1009. <a href="classes/chillerlan-QRCode-QROptions.html#property_pngCompression" class="headerlink"><i class="fas fa-link"></i></a>
  1010. <span class="phpdocumentor-element__modifiers">
  1011. </span>
  1012. </h4>
  1013. <aside class="phpdocumentor-element-found-in">
  1014. <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>
  1015. :
  1016. <span class="phpdocumentor-element-found-in__line">0</span>
  1017. </aside>
  1018. <code class="phpdocumentor-code phpdocumentor-signature ">
  1019. <span class="phpdocumentor-signature__visibility">public</span>
  1020. <span class="phpdocumentor-signature__type">int</span>
  1021. <span class="phpdocumentor-signature__name">$pngCompression</span>
  1022. </code>
  1023. <section class="phpdocumentor-description"></section>
  1024. </article>
  1025. <article
  1026. class="
  1027. phpdocumentor-element
  1028. -property
  1029. -public
  1030. "
  1031. >
  1032. <h4 class="phpdocumentor-element__name" id="property_quietzoneSize">
  1033. $quietzoneSize
  1034. <a href="classes/chillerlan-QRCode-QROptions.html#property_quietzoneSize" class="headerlink"><i class="fas fa-link"></i></a>
  1035. <span class="phpdocumentor-element__modifiers">
  1036. </span>
  1037. </h4>
  1038. <aside class="phpdocumentor-element-found-in">
  1039. <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>
  1040. :
  1041. <span class="phpdocumentor-element-found-in__line">0</span>
  1042. </aside>
  1043. <code class="phpdocumentor-code phpdocumentor-signature ">
  1044. <span class="phpdocumentor-signature__visibility">public</span>
  1045. <span class="phpdocumentor-signature__type">int</span>
  1046. <span class="phpdocumentor-signature__name">$quietzoneSize</span>
  1047. </code>
  1048. <section class="phpdocumentor-description"></section>
  1049. </article>
  1050. <article
  1051. class="
  1052. phpdocumentor-element
  1053. -property
  1054. -public
  1055. "
  1056. >
  1057. <h4 class="phpdocumentor-element__name" id="property_returnResource">
  1058. $returnResource
  1059. <a href="classes/chillerlan-QRCode-QROptions.html#property_returnResource" class="headerlink"><i class="fas fa-link"></i></a>
  1060. <span class="phpdocumentor-element__modifiers">
  1061. </span>
  1062. </h4>
  1063. <aside class="phpdocumentor-element-found-in">
  1064. <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>
  1065. :
  1066. <span class="phpdocumentor-element-found-in__line">0</span>
  1067. </aside>
  1068. <code class="phpdocumentor-code phpdocumentor-signature ">
  1069. <span class="phpdocumentor-signature__visibility">public</span>
  1070. <span class="phpdocumentor-signature__type">bool</span>
  1071. <span class="phpdocumentor-signature__name">$returnResource</span>
  1072. </code>
  1073. <section class="phpdocumentor-description"></section>
  1074. </article>
  1075. <article
  1076. class="
  1077. phpdocumentor-element
  1078. -property
  1079. -public
  1080. "
  1081. >
  1082. <h4 class="phpdocumentor-element__name" id="property_scale">
  1083. $scale
  1084. <a href="classes/chillerlan-QRCode-QROptions.html#property_scale" class="headerlink"><i class="fas fa-link"></i></a>
  1085. <span class="phpdocumentor-element__modifiers">
  1086. </span>
  1087. </h4>
  1088. <aside class="phpdocumentor-element-found-in">
  1089. <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>
  1090. :
  1091. <span class="phpdocumentor-element-found-in__line">0</span>
  1092. </aside>
  1093. <code class="phpdocumentor-code phpdocumentor-signature ">
  1094. <span class="phpdocumentor-signature__visibility">public</span>
  1095. <span class="phpdocumentor-signature__type">int</span>
  1096. <span class="phpdocumentor-signature__name">$scale</span>
  1097. </code>
  1098. <section class="phpdocumentor-description"></section>
  1099. </article>
  1100. <article
  1101. class="
  1102. phpdocumentor-element
  1103. -property
  1104. -public
  1105. "
  1106. >
  1107. <h4 class="phpdocumentor-element__name" id="property_svgDefs">
  1108. $svgDefs
  1109. <a href="classes/chillerlan-QRCode-QROptions.html#property_svgDefs" class="headerlink"><i class="fas fa-link"></i></a>
  1110. <span class="phpdocumentor-element__modifiers">
  1111. </span>
  1112. </h4>
  1113. <aside class="phpdocumentor-element-found-in">
  1114. <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>
  1115. :
  1116. <span class="phpdocumentor-element-found-in__line">0</span>
  1117. </aside>
  1118. <code class="phpdocumentor-code phpdocumentor-signature ">
  1119. <span class="phpdocumentor-signature__visibility">public</span>
  1120. <span class="phpdocumentor-signature__type">string</span>
  1121. <span class="phpdocumentor-signature__name">$svgDefs</span>
  1122. </code>
  1123. <section class="phpdocumentor-description"></section>
  1124. </article>
  1125. <article
  1126. class="
  1127. phpdocumentor-element
  1128. -property
  1129. -public
  1130. "
  1131. >
  1132. <h4 class="phpdocumentor-element__name" id="property_svgOpacity">
  1133. $svgOpacity
  1134. <a href="classes/chillerlan-QRCode-QROptions.html#property_svgOpacity" class="headerlink"><i class="fas fa-link"></i></a>
  1135. <span class="phpdocumentor-element__modifiers">
  1136. </span>
  1137. </h4>
  1138. <aside class="phpdocumentor-element-found-in">
  1139. <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>
  1140. :
  1141. <span class="phpdocumentor-element-found-in__line">0</span>
  1142. </aside>
  1143. <code class="phpdocumentor-code phpdocumentor-signature ">
  1144. <span class="phpdocumentor-signature__visibility">public</span>
  1145. <span class="phpdocumentor-signature__type">float</span>
  1146. <span class="phpdocumentor-signature__name">$svgOpacity</span>
  1147. </code>
  1148. <section class="phpdocumentor-description"></section>
  1149. </article>
  1150. <article
  1151. class="
  1152. phpdocumentor-element
  1153. -property
  1154. -public
  1155. "
  1156. >
  1157. <h4 class="phpdocumentor-element__name" id="property_svgViewBoxSize">
  1158. $svgViewBoxSize
  1159. <a href="classes/chillerlan-QRCode-QROptions.html#property_svgViewBoxSize" class="headerlink"><i class="fas fa-link"></i></a>
  1160. <span class="phpdocumentor-element__modifiers">
  1161. </span>
  1162. </h4>
  1163. <aside class="phpdocumentor-element-found-in">
  1164. <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>
  1165. :
  1166. <span class="phpdocumentor-element-found-in__line">0</span>
  1167. </aside>
  1168. <code class="phpdocumentor-code phpdocumentor-signature ">
  1169. <span class="phpdocumentor-signature__visibility">public</span>
  1170. <span class="phpdocumentor-signature__type">int</span>
  1171. <span class="phpdocumentor-signature__name">$svgViewBoxSize</span>
  1172. </code>
  1173. <section class="phpdocumentor-description"></section>
  1174. </article>
  1175. <article
  1176. class="
  1177. phpdocumentor-element
  1178. -property
  1179. -public
  1180. "
  1181. >
  1182. <h4 class="phpdocumentor-element__name" id="property_textDark">
  1183. $textDark
  1184. <a href="classes/chillerlan-QRCode-QROptions.html#property_textDark" class="headerlink"><i class="fas fa-link"></i></a>
  1185. <span class="phpdocumentor-element__modifiers">
  1186. </span>
  1187. </h4>
  1188. <aside class="phpdocumentor-element-found-in">
  1189. <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>
  1190. :
  1191. <span class="phpdocumentor-element-found-in__line">0</span>
  1192. </aside>
  1193. <code class="phpdocumentor-code phpdocumentor-signature ">
  1194. <span class="phpdocumentor-signature__visibility">public</span>
  1195. <span class="phpdocumentor-signature__type">string</span>
  1196. <span class="phpdocumentor-signature__name">$textDark</span>
  1197. </code>
  1198. <section class="phpdocumentor-description"></section>
  1199. </article>
  1200. <article
  1201. class="
  1202. phpdocumentor-element
  1203. -property
  1204. -public
  1205. "
  1206. >
  1207. <h4 class="phpdocumentor-element__name" id="property_textLight">
  1208. $textLight
  1209. <a href="classes/chillerlan-QRCode-QROptions.html#property_textLight" class="headerlink"><i class="fas fa-link"></i></a>
  1210. <span class="phpdocumentor-element__modifiers">
  1211. </span>
  1212. </h4>
  1213. <aside class="phpdocumentor-element-found-in">
  1214. <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>
  1215. :
  1216. <span class="phpdocumentor-element-found-in__line">0</span>
  1217. </aside>
  1218. <code class="phpdocumentor-code phpdocumentor-signature ">
  1219. <span class="phpdocumentor-signature__visibility">public</span>
  1220. <span class="phpdocumentor-signature__type">string</span>
  1221. <span class="phpdocumentor-signature__name">$textLight</span>
  1222. </code>
  1223. <section class="phpdocumentor-description"></section>
  1224. </article>
  1225. <article
  1226. class="
  1227. phpdocumentor-element
  1228. -property
  1229. -public
  1230. "
  1231. >
  1232. <h4 class="phpdocumentor-element__name" id="property_useImagickIfAvailable">
  1233. $useImagickIfAvailable
  1234. <a href="classes/chillerlan-QRCode-QROptions.html#property_useImagickIfAvailable" class="headerlink"><i class="fas fa-link"></i></a>
  1235. <span class="phpdocumentor-element__modifiers">
  1236. </span>
  1237. </h4>
  1238. <aside class="phpdocumentor-element-found-in">
  1239. <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>
  1240. :
  1241. <span class="phpdocumentor-element-found-in__line">0</span>
  1242. </aside>
  1243. <code class="phpdocumentor-code phpdocumentor-signature ">
  1244. <span class="phpdocumentor-signature__visibility">public</span>
  1245. <span class="phpdocumentor-signature__type">bool</span>
  1246. <span class="phpdocumentor-signature__name">$useImagickIfAvailable</span>
  1247. </code>
  1248. <section class="phpdocumentor-description"></section>
  1249. </article>
  1250. <article
  1251. class="
  1252. phpdocumentor-element
  1253. -property
  1254. -public
  1255. "
  1256. >
  1257. <h4 class="phpdocumentor-element__name" id="property_version">
  1258. $version
  1259. <a href="classes/chillerlan-QRCode-QROptions.html#property_version" class="headerlink"><i class="fas fa-link"></i></a>
  1260. <span class="phpdocumentor-element__modifiers">
  1261. </span>
  1262. </h4>
  1263. <aside class="phpdocumentor-element-found-in">
  1264. <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>
  1265. :
  1266. <span class="phpdocumentor-element-found-in__line">0</span>
  1267. </aside>
  1268. <code class="phpdocumentor-code phpdocumentor-signature ">
  1269. <span class="phpdocumentor-signature__visibility">public</span>
  1270. <span class="phpdocumentor-signature__type">int</span>
  1271. <span class="phpdocumentor-signature__name">$version</span>
  1272. </code>
  1273. <section class="phpdocumentor-description"></section>
  1274. </article>
  1275. <article
  1276. class="
  1277. phpdocumentor-element
  1278. -property
  1279. -public
  1280. "
  1281. >
  1282. <h4 class="phpdocumentor-element__name" id="property_versionMax">
  1283. $versionMax
  1284. <a href="classes/chillerlan-QRCode-QROptions.html#property_versionMax" class="headerlink"><i class="fas fa-link"></i></a>
  1285. <span class="phpdocumentor-element__modifiers">
  1286. </span>
  1287. </h4>
  1288. <aside class="phpdocumentor-element-found-in">
  1289. <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>
  1290. :
  1291. <span class="phpdocumentor-element-found-in__line">0</span>
  1292. </aside>
  1293. <code class="phpdocumentor-code phpdocumentor-signature ">
  1294. <span class="phpdocumentor-signature__visibility">public</span>
  1295. <span class="phpdocumentor-signature__type">int</span>
  1296. <span class="phpdocumentor-signature__name">$versionMax</span>
  1297. </code>
  1298. <section class="phpdocumentor-description"></section>
  1299. </article>
  1300. <article
  1301. class="
  1302. phpdocumentor-element
  1303. -property
  1304. -public
  1305. "
  1306. >
  1307. <h4 class="phpdocumentor-element__name" id="property_versionMin">
  1308. $versionMin
  1309. <a href="classes/chillerlan-QRCode-QROptions.html#property_versionMin" class="headerlink"><i class="fas fa-link"></i></a>
  1310. <span class="phpdocumentor-element__modifiers">
  1311. </span>
  1312. </h4>
  1313. <aside class="phpdocumentor-element-found-in">
  1314. <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>
  1315. :
  1316. <span class="phpdocumentor-element-found-in__line">0</span>
  1317. </aside>
  1318. <code class="phpdocumentor-code phpdocumentor-signature ">
  1319. <span class="phpdocumentor-signature__visibility">public</span>
  1320. <span class="phpdocumentor-signature__type">int</span>
  1321. <span class="phpdocumentor-signature__name">$versionMin</span>
  1322. </code>
  1323. <section class="phpdocumentor-description"></section>
  1324. </article>
  1325. <article
  1326. class="
  1327. phpdocumentor-element
  1328. -property
  1329. -protected
  1330. "
  1331. >
  1332. <h4 class="phpdocumentor-element__name" id="property_addQuietzone">
  1333. $addQuietzone
  1334. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_addQuietzone" class="headerlink"><i class="fas fa-link"></i></a>
  1335. <span class="phpdocumentor-element__modifiers">
  1336. </span>
  1337. </h4>
  1338. <aside class="phpdocumentor-element-found-in">
  1339. <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>
  1340. :
  1341. <span class="phpdocumentor-element-found-in__line">66</span>
  1342. </aside>
  1343. <p class="phpdocumentor-summary">Add a &quot;quiet zone&quot; (margin) according to the QR code spec</p>
  1344. <code class="phpdocumentor-code phpdocumentor-signature ">
  1345. <span class="phpdocumentor-signature__visibility">protected</span>
  1346. <span class="phpdocumentor-signature__type">bool</span>
  1347. <span class="phpdocumentor-signature__name">$addQuietzone</span>
  1348. = <span class="phpdocumentor-signature__default-value">true</span></code>
  1349. <section class="phpdocumentor-description"></section>
  1350. </article>
  1351. <article
  1352. class="
  1353. phpdocumentor-element
  1354. -property
  1355. -protected
  1356. "
  1357. >
  1358. <h4 class="phpdocumentor-element__name" id="property_cachefile">
  1359. $cachefile
  1360. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_cachefile" class="headerlink"><i class="fas fa-link"></i></a>
  1361. <span class="phpdocumentor-element__modifiers">
  1362. </span>
  1363. </h4>
  1364. <aside class="phpdocumentor-element-found-in">
  1365. <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>
  1366. :
  1367. <span class="phpdocumentor-element-found-in__line">93</span>
  1368. </aside>
  1369. <p class="phpdocumentor-summary">/path/to/cache.file</p>
  1370. <code class="phpdocumentor-code phpdocumentor-signature ">
  1371. <span class="phpdocumentor-signature__visibility">protected</span>
  1372. <span class="phpdocumentor-signature__type">string|null</span>
  1373. <span class="phpdocumentor-signature__name">$cachefile</span>
  1374. = <span class="phpdocumentor-signature__default-value">null</span></code>
  1375. <section class="phpdocumentor-description"></section>
  1376. </article>
  1377. <article
  1378. class="
  1379. phpdocumentor-element
  1380. -property
  1381. -protected
  1382. "
  1383. >
  1384. <h4 class="phpdocumentor-element__name" id="property_cssClass">
  1385. $cssClass
  1386. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_cssClass" class="headerlink"><i class="fas fa-link"></i></a>
  1387. <span class="phpdocumentor-element__modifiers">
  1388. </span>
  1389. </h4>
  1390. <aside class="phpdocumentor-element-found-in">
  1391. <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>
  1392. :
  1393. <span class="phpdocumentor-element-found-in__line">108</span>
  1394. </aside>
  1395. <p class="phpdocumentor-summary">a common css class</p>
  1396. <code class="phpdocumentor-code phpdocumentor-signature ">
  1397. <span class="phpdocumentor-signature__visibility">protected</span>
  1398. <span class="phpdocumentor-signature__type">string</span>
  1399. <span class="phpdocumentor-signature__name">$cssClass</span>
  1400. = <span class="phpdocumentor-signature__default-value">&#039;&#039;</span></code>
  1401. <section class="phpdocumentor-description"></section>
  1402. </article>
  1403. <article
  1404. class="
  1405. phpdocumentor-element
  1406. -property
  1407. -protected
  1408. "
  1409. >
  1410. <h4 class="phpdocumentor-element__name" id="property_eccLevel">
  1411. $eccLevel
  1412. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_eccLevel" class="headerlink"><i class="fas fa-link"></i></a>
  1413. <span class="phpdocumentor-element__modifiers">
  1414. </span>
  1415. </h4>
  1416. <aside class="phpdocumentor-element-found-in">
  1417. <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>
  1418. :
  1419. <span class="phpdocumentor-element-found-in__line">54</span>
  1420. </aside>
  1421. <p class="phpdocumentor-summary">Error correct level</p>
  1422. <code class="phpdocumentor-code phpdocumentor-signature ">
  1423. <span class="phpdocumentor-signature__visibility">protected</span>
  1424. <span class="phpdocumentor-signature__type">int</span>
  1425. <span class="phpdocumentor-signature__name">$eccLevel</span>
  1426. = <span class="phpdocumentor-signature__default-value">chillerlanQRCodeCommonEccLevel::L</span></code>
  1427. <section class="phpdocumentor-description"><p>QRCode::ECC_X where X is:</p>
  1428. <ul>
  1429. <li>L =&gt; 7%</li>
  1430. <li>M =&gt; 15%</li>
  1431. <li>Q =&gt; 25%</li>
  1432. <li>H =&gt; 30%</li>
  1433. </ul>
  1434. </section>
  1435. <section class="phpdocumentor-description"></section>
  1436. </article>
  1437. <article
  1438. class="
  1439. phpdocumentor-element
  1440. -property
  1441. -protected
  1442. "
  1443. >
  1444. <h4 class="phpdocumentor-element__name" id="property_eol">
  1445. $eol
  1446. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_eol" class="headerlink"><i class="fas fa-link"></i></a>
  1447. <span class="phpdocumentor-element__modifiers">
  1448. </span>
  1449. </h4>
  1450. <aside class="phpdocumentor-element-found-in">
  1451. <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>
  1452. :
  1453. <span class="phpdocumentor-element-found-in__line">98</span>
  1454. </aside>
  1455. <p class="phpdocumentor-summary">newline string [HTML, SVG, TEXT]</p>
  1456. <code class="phpdocumentor-code phpdocumentor-signature ">
  1457. <span class="phpdocumentor-signature__visibility">protected</span>
  1458. <span class="phpdocumentor-signature__type">string</span>
  1459. <span class="phpdocumentor-signature__name">$eol</span>
  1460. = <span class="phpdocumentor-signature__default-value">PHP_EOL</span></code>
  1461. <section class="phpdocumentor-description"></section>
  1462. </article>
  1463. <article
  1464. class="
  1465. phpdocumentor-element
  1466. -property
  1467. -protected
  1468. "
  1469. >
  1470. <h4 class="phpdocumentor-element__name" id="property_fpdfMeasureUnit">
  1471. $fpdfMeasureUnit
  1472. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_fpdfMeasureUnit" class="headerlink"><i class="fas fa-link"></i></a>
  1473. <span class="phpdocumentor-element__modifiers">
  1474. </span>
  1475. </h4>
  1476. <aside class="phpdocumentor-element-found-in">
  1477. <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>
  1478. :
  1479. <span class="phpdocumentor-element-found-in__line">213</span>
  1480. </aside>
  1481. <p class="phpdocumentor-summary">Measurement unit for FPDF output: pt, mm, cm, in (defaults to &quot;pt&quot;)</p>
  1482. <code class="phpdocumentor-code phpdocumentor-signature ">
  1483. <span class="phpdocumentor-signature__visibility">protected</span>
  1484. <span class="phpdocumentor-signature__type">string</span>
  1485. <span class="phpdocumentor-signature__name">$fpdfMeasureUnit</span>
  1486. = <span class="phpdocumentor-signature__default-value">&#039;pt&#039;</span></code>
  1487. <section class="phpdocumentor-description"></section>
  1488. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1489. Tags
  1490. <a href="#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1491. </h5>
  1492. <dl class="phpdocumentor-tag-list">
  1493. <dt class="phpdocumentor-tag-list__entry">
  1494. <span class="phpdocumentor-tag__name">see</span>
  1495. </dt>
  1496. <dd class="phpdocumentor-tag-list__definition">
  1497. <span class="phpdocumentor-tag-link"><abbr title="\FPDF::__construct()">FPDF::__construct()</abbr></span>
  1498. </dd>
  1499. </dl>
  1500. </article>
  1501. <article
  1502. class="
  1503. phpdocumentor-element
  1504. -property
  1505. -protected
  1506. "
  1507. >
  1508. <h4 class="phpdocumentor-element__name" id="property_imageBase64">
  1509. $imageBase64
  1510. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imageBase64" class="headerlink"><i class="fas fa-link"></i></a>
  1511. <span class="phpdocumentor-element__modifiers">
  1512. </span>
  1513. </h4>
  1514. <aside class="phpdocumentor-element-found-in">
  1515. <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>
  1516. :
  1517. <span class="phpdocumentor-element-found-in__line">170</span>
  1518. </aside>
  1519. <p class="phpdocumentor-summary">toggle base64 or raw image data</p>
  1520. <code class="phpdocumentor-code phpdocumentor-signature ">
  1521. <span class="phpdocumentor-signature__visibility">protected</span>
  1522. <span class="phpdocumentor-signature__type">bool</span>
  1523. <span class="phpdocumentor-signature__name">$imageBase64</span>
  1524. = <span class="phpdocumentor-signature__default-value">true</span></code>
  1525. <section class="phpdocumentor-description"></section>
  1526. </article>
  1527. <article
  1528. class="
  1529. phpdocumentor-element
  1530. -property
  1531. -protected
  1532. "
  1533. >
  1534. <h4 class="phpdocumentor-element__name" id="property_imageTransparencyBG">
  1535. $imageTransparencyBG
  1536. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imageTransparencyBG" class="headerlink"><i class="fas fa-link"></i></a>
  1537. <span class="phpdocumentor-element__modifiers">
  1538. </span>
  1539. </h4>
  1540. <aside class="phpdocumentor-element-found-in">
  1541. <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>
  1542. :
  1543. <span class="phpdocumentor-element-found-in__line">182</span>
  1544. </aside>
  1545. <code class="phpdocumentor-code phpdocumentor-signature ">
  1546. <span class="phpdocumentor-signature__visibility">protected</span>
  1547. <span class="phpdocumentor-signature__type">array&lt;string|int, mixed&gt;</span>
  1548. <span class="phpdocumentor-signature__name">$imageTransparencyBG</span>
  1549. = <span class="phpdocumentor-signature__default-value">[255, 255, 255]</span></code>
  1550. <section class="phpdocumentor-description"></section>
  1551. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1552. Tags
  1553. <a href="#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1554. </h5>
  1555. <dl class="phpdocumentor-tag-list">
  1556. <dt class="phpdocumentor-tag-list__entry">
  1557. <span class="phpdocumentor-tag__name">see</span>
  1558. </dt>
  1559. <dd class="phpdocumentor-tag-list__definition">
  1560. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\imagecolortransparent()">imagecolortransparent()</abbr></span>
  1561. <section class="phpdocumentor-description"><p>[R, G, B]</p>
  1562. </section>
  1563. </dd>
  1564. </dl>
  1565. </article>
  1566. <article
  1567. class="
  1568. phpdocumentor-element
  1569. -property
  1570. -protected
  1571. "
  1572. >
  1573. <h4 class="phpdocumentor-element__name" id="property_imageTransparent">
  1574. $imageTransparent
  1575. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imageTransparent" class="headerlink"><i class="fas fa-link"></i></a>
  1576. <span class="phpdocumentor-element__modifiers">
  1577. </span>
  1578. </h4>
  1579. <aside class="phpdocumentor-element-found-in">
  1580. <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>
  1581. :
  1582. <span class="phpdocumentor-element-found-in__line">175</span>
  1583. </aside>
  1584. <p class="phpdocumentor-summary">toggle transparency, not supported by jpg</p>
  1585. <code class="phpdocumentor-code phpdocumentor-signature ">
  1586. <span class="phpdocumentor-signature__visibility">protected</span>
  1587. <span class="phpdocumentor-signature__type">bool</span>
  1588. <span class="phpdocumentor-signature__name">$imageTransparent</span>
  1589. = <span class="phpdocumentor-signature__default-value">true</span></code>
  1590. <section class="phpdocumentor-description"></section>
  1591. </article>
  1592. <article
  1593. class="
  1594. phpdocumentor-element
  1595. -property
  1596. -protected
  1597. "
  1598. >
  1599. <h4 class="phpdocumentor-element__name" id="property_imagickBG">
  1600. $imagickBG
  1601. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imagickBG" class="headerlink"><i class="fas fa-link"></i></a>
  1602. <span class="phpdocumentor-element__modifiers">
  1603. </span>
  1604. </h4>
  1605. <aside class="phpdocumentor-element-found-in">
  1606. <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>
  1607. :
  1608. <span class="phpdocumentor-element-found-in__line">206</span>
  1609. </aside>
  1610. <p class="phpdocumentor-summary">Imagick background color (defaults to &quot;transparent&quot;)</p>
  1611. <code class="phpdocumentor-code phpdocumentor-signature ">
  1612. <span class="phpdocumentor-signature__visibility">protected</span>
  1613. <span class="phpdocumentor-signature__type">string|null</span>
  1614. <span class="phpdocumentor-signature__name">$imagickBG</span>
  1615. = <span class="phpdocumentor-signature__default-value">null</span></code>
  1616. <section class="phpdocumentor-description"></section>
  1617. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1618. Tags
  1619. <a href="#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1620. </h5>
  1621. <dl class="phpdocumentor-tag-list">
  1622. <dt class="phpdocumentor-tag-list__entry">
  1623. <span class="phpdocumentor-tag__name">see</span>
  1624. </dt>
  1625. <dd class="phpdocumentor-tag-list__definition">
  1626. <span class="phpdocumentor-tag-link"><abbr title="\ImagickPixel::__construct()">ImagickPixel::__construct()</abbr></span>
  1627. </dd>
  1628. </dl>
  1629. </article>
  1630. <article
  1631. class="
  1632. phpdocumentor-element
  1633. -property
  1634. -protected
  1635. "
  1636. >
  1637. <h4 class="phpdocumentor-element__name" id="property_imagickFormat">
  1638. $imagickFormat
  1639. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_imagickFormat" class="headerlink"><i class="fas fa-link"></i></a>
  1640. <span class="phpdocumentor-element__modifiers">
  1641. </span>
  1642. </h4>
  1643. <aside class="phpdocumentor-element-found-in">
  1644. <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>
  1645. :
  1646. <span class="phpdocumentor-element-found-in__line">199</span>
  1647. </aside>
  1648. <p class="phpdocumentor-summary">Imagick output format</p>
  1649. <code class="phpdocumentor-code phpdocumentor-signature ">
  1650. <span class="phpdocumentor-signature__visibility">protected</span>
  1651. <span class="phpdocumentor-signature__type">string</span>
  1652. <span class="phpdocumentor-signature__name">$imagickFormat</span>
  1653. = <span class="phpdocumentor-signature__default-value">&#039;png&#039;</span></code>
  1654. <section class="phpdocumentor-description"></section>
  1655. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1656. Tags
  1657. <a href="#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1658. </h5>
  1659. <dl class="phpdocumentor-tag-list">
  1660. <dt class="phpdocumentor-tag-list__entry">
  1661. <span class="phpdocumentor-tag__name">see</span>
  1662. </dt>
  1663. <dd class="phpdocumentor-tag-list__definition">
  1664. <span class="phpdocumentor-tag-link"><abbr title="\Imagick::setType()">Imagick::setType()</abbr></span>
  1665. </dd>
  1666. </dl>
  1667. </article>
  1668. <article
  1669. class="
  1670. phpdocumentor-element
  1671. -property
  1672. -protected
  1673. "
  1674. >
  1675. <h4 class="phpdocumentor-element__name" id="property_jpegQuality">
  1676. $jpegQuality
  1677. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_jpegQuality" class="headerlink"><i class="fas fa-link"></i></a>
  1678. <span class="phpdocumentor-element__modifiers">
  1679. </span>
  1680. </h4>
  1681. <aside class="phpdocumentor-element-found-in">
  1682. <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>
  1683. :
  1684. <span class="phpdocumentor-element-found-in__line">192</span>
  1685. </aside>
  1686. <code class="phpdocumentor-code phpdocumentor-signature ">
  1687. <span class="phpdocumentor-signature__visibility">protected</span>
  1688. <span class="phpdocumentor-signature__type">int</span>
  1689. <span class="phpdocumentor-signature__name">$jpegQuality</span>
  1690. = <span class="phpdocumentor-signature__default-value">85</span></code>
  1691. <section class="phpdocumentor-description"></section>
  1692. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1693. Tags
  1694. <a href="#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1695. </h5>
  1696. <dl class="phpdocumentor-tag-list">
  1697. <dt class="phpdocumentor-tag-list__entry">
  1698. <span class="phpdocumentor-tag__name">see</span>
  1699. </dt>
  1700. <dd class="phpdocumentor-tag-list__definition">
  1701. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\imagejpeg()">imagejpeg()</abbr></span>
  1702. </dd>
  1703. </dl>
  1704. </article>
  1705. <article
  1706. class="
  1707. phpdocumentor-element
  1708. -property
  1709. -protected
  1710. "
  1711. >
  1712. <h4 class="phpdocumentor-element__name" id="property_markupDark">
  1713. $markupDark
  1714. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_markupDark" class="headerlink"><i class="fas fa-link"></i></a>
  1715. <span class="phpdocumentor-element__modifiers">
  1716. </span>
  1717. </h4>
  1718. <aside class="phpdocumentor-element-found-in">
  1719. <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>
  1720. :
  1721. <span class="phpdocumentor-element-found-in__line">144</span>
  1722. </aside>
  1723. <p class="phpdocumentor-summary">markup substitute for dark (CSS value)</p>
  1724. <code class="phpdocumentor-code phpdocumentor-signature ">
  1725. <span class="phpdocumentor-signature__visibility">protected</span>
  1726. <span class="phpdocumentor-signature__type">string</span>
  1727. <span class="phpdocumentor-signature__name">$markupDark</span>
  1728. = <span class="phpdocumentor-signature__default-value">&#039;#000&#039;</span></code>
  1729. <section class="phpdocumentor-description"></section>
  1730. </article>
  1731. <article
  1732. class="
  1733. phpdocumentor-element
  1734. -property
  1735. -protected
  1736. "
  1737. >
  1738. <h4 class="phpdocumentor-element__name" id="property_markupLight">
  1739. $markupLight
  1740. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_markupLight" class="headerlink"><i class="fas fa-link"></i></a>
  1741. <span class="phpdocumentor-element__modifiers">
  1742. </span>
  1743. </h4>
  1744. <aside class="phpdocumentor-element-found-in">
  1745. <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>
  1746. :
  1747. <span class="phpdocumentor-element-found-in__line">149</span>
  1748. </aside>
  1749. <p class="phpdocumentor-summary">markup substitute for light (CSS value)</p>
  1750. <code class="phpdocumentor-code phpdocumentor-signature ">
  1751. <span class="phpdocumentor-signature__visibility">protected</span>
  1752. <span class="phpdocumentor-signature__type">string</span>
  1753. <span class="phpdocumentor-signature__name">$markupLight</span>
  1754. = <span class="phpdocumentor-signature__default-value">&#039;#fff&#039;</span></code>
  1755. <section class="phpdocumentor-description"></section>
  1756. </article>
  1757. <article
  1758. class="
  1759. phpdocumentor-element
  1760. -property
  1761. -protected
  1762. "
  1763. >
  1764. <h4 class="phpdocumentor-element__name" id="property_maskPattern">
  1765. $maskPattern
  1766. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_maskPattern" class="headerlink"><i class="fas fa-link"></i></a>
  1767. <span class="phpdocumentor-element__modifiers">
  1768. </span>
  1769. </h4>
  1770. <aside class="phpdocumentor-element-found-in">
  1771. <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>
  1772. :
  1773. <span class="phpdocumentor-element-found-in__line">61</span>
  1774. </aside>
  1775. <p class="phpdocumentor-summary">Mask Pattern to use (no value in using, mostly for unit testing purposes)</p>
  1776. <code class="phpdocumentor-code phpdocumentor-signature ">
  1777. <span class="phpdocumentor-signature__visibility">protected</span>
  1778. <span class="phpdocumentor-signature__type">int</span>
  1779. <span class="phpdocumentor-signature__name">$maskPattern</span>
  1780. = <span class="phpdocumentor-signature__default-value">chillerlanQRCodeQRCode::MASK_PATTERN_AUTO</span></code>
  1781. <section class="phpdocumentor-description"><p>[0...7] or QRCode::MASK_PATTERN_AUTO</p>
  1782. </section>
  1783. <section class="phpdocumentor-description"></section>
  1784. </article>
  1785. <article
  1786. class="
  1787. phpdocumentor-element
  1788. -property
  1789. -protected
  1790. "
  1791. >
  1792. <h4 class="phpdocumentor-element__name" id="property_moduleValues">
  1793. $moduleValues
  1794. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_moduleValues" 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">221</span>
  1802. </aside>
  1803. <p class="phpdocumentor-summary">Module values map</p>
  1804. <code class="phpdocumentor-code phpdocumentor-signature ">
  1805. <span class="phpdocumentor-signature__visibility">protected</span>
  1806. <span class="phpdocumentor-signature__type">array&lt;string|int, mixed&gt;|null</span>
  1807. <span class="phpdocumentor-signature__name">$moduleValues</span>
  1808. = <span class="phpdocumentor-signature__default-value">null</span></code>
  1809. <section class="phpdocumentor-description"><ul>
  1810. <li>HTML, IMAGICK: #ABCDEF, cssname, rgb(), rgba()...</li>
  1811. <li>IMAGE: [63, 127, 255] // R, G, B</li>
  1812. </ul>
  1813. </section>
  1814. <section class="phpdocumentor-description"></section>
  1815. </article>
  1816. <article
  1817. class="
  1818. phpdocumentor-element
  1819. -property
  1820. -protected
  1821. "
  1822. >
  1823. <h4 class="phpdocumentor-element__name" id="property_outputInterface">
  1824. $outputInterface
  1825. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_outputInterface" class="headerlink"><i class="fas fa-link"></i></a>
  1826. <span class="phpdocumentor-element__modifiers">
  1827. </span>
  1828. </h4>
  1829. <aside class="phpdocumentor-element-found-in">
  1830. <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>
  1831. :
  1832. <span class="phpdocumentor-element-found-in__line">88</span>
  1833. </aside>
  1834. <p class="phpdocumentor-summary">the FQCN of the custom QROutputInterface if $outputType is set to QRCode::OUTPUT_CUSTOM</p>
  1835. <code class="phpdocumentor-code phpdocumentor-signature ">
  1836. <span class="phpdocumentor-signature__visibility">protected</span>
  1837. <span class="phpdocumentor-signature__type">string|null</span>
  1838. <span class="phpdocumentor-signature__name">$outputInterface</span>
  1839. = <span class="phpdocumentor-signature__default-value">null</span></code>
  1840. <section class="phpdocumentor-description"></section>
  1841. </article>
  1842. <article
  1843. class="
  1844. phpdocumentor-element
  1845. -property
  1846. -protected
  1847. "
  1848. >
  1849. <h4 class="phpdocumentor-element__name" id="property_outputType">
  1850. $outputType
  1851. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_outputType" class="headerlink"><i class="fas fa-link"></i></a>
  1852. <span class="phpdocumentor-element__modifiers">
  1853. </span>
  1854. </h4>
  1855. <aside class="phpdocumentor-element-found-in">
  1856. <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>
  1857. :
  1858. <span class="phpdocumentor-element-found-in__line">83</span>
  1859. </aside>
  1860. <p class="phpdocumentor-summary">The output type</p>
  1861. <code class="phpdocumentor-code phpdocumentor-signature ">
  1862. <span class="phpdocumentor-signature__visibility">protected</span>
  1863. <span class="phpdocumentor-signature__type">string</span>
  1864. <span class="phpdocumentor-signature__name">$outputType</span>
  1865. = <span class="phpdocumentor-signature__default-value">chillerlanQRCodeQRCode::OUTPUT_IMAGE_PNG</span></code>
  1866. <section class="phpdocumentor-description"><ul>
  1867. <li>QRCode::OUTPUT_MARKUP_XXXX where XXXX = HTML, SVG</li>
  1868. <li>QRCode::OUTPUT_IMAGE_XXX where XXX = PNG, GIF, JPG</li>
  1869. <li>QRCode::OUTPUT_STRING_XXXX where XXXX = TEXT, JSON</li>
  1870. <li>QRCode::OUTPUT_CUSTOM</li>
  1871. </ul>
  1872. </section>
  1873. <section class="phpdocumentor-description"></section>
  1874. </article>
  1875. <article
  1876. class="
  1877. phpdocumentor-element
  1878. -property
  1879. -protected
  1880. "
  1881. >
  1882. <h4 class="phpdocumentor-element__name" id="property_pngCompression">
  1883. $pngCompression
  1884. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_pngCompression" class="headerlink"><i class="fas fa-link"></i></a>
  1885. <span class="phpdocumentor-element__modifiers">
  1886. </span>
  1887. </h4>
  1888. <aside class="phpdocumentor-element-found-in">
  1889. <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>
  1890. :
  1891. <span class="phpdocumentor-element-found-in__line">187</span>
  1892. </aside>
  1893. <code class="phpdocumentor-code phpdocumentor-signature ">
  1894. <span class="phpdocumentor-signature__visibility">protected</span>
  1895. <span class="phpdocumentor-signature__type">int</span>
  1896. <span class="phpdocumentor-signature__name">$pngCompression</span>
  1897. = <span class="phpdocumentor-signature__default-value">-1</span></code>
  1898. <section class="phpdocumentor-description"></section>
  1899. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1900. Tags
  1901. <a href="#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1902. </h5>
  1903. <dl class="phpdocumentor-tag-list">
  1904. <dt class="phpdocumentor-tag-list__entry">
  1905. <span class="phpdocumentor-tag__name">see</span>
  1906. </dt>
  1907. <dd class="phpdocumentor-tag-list__definition">
  1908. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\imagepng()">imagepng()</abbr></span>
  1909. </dd>
  1910. </dl>
  1911. </article>
  1912. <article
  1913. class="
  1914. phpdocumentor-element
  1915. -property
  1916. -protected
  1917. "
  1918. >
  1919. <h4 class="phpdocumentor-element__name" id="property_quietzoneSize">
  1920. $quietzoneSize
  1921. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_quietzoneSize" class="headerlink"><i class="fas fa-link"></i></a>
  1922. <span class="phpdocumentor-element__modifiers">
  1923. </span>
  1924. </h4>
  1925. <aside class="phpdocumentor-element-found-in">
  1926. <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>
  1927. :
  1928. <span class="phpdocumentor-element-found-in__line">73</span>
  1929. </aside>
  1930. <p class="phpdocumentor-summary">Size of the quiet zone</p>
  1931. <code class="phpdocumentor-code phpdocumentor-signature ">
  1932. <span class="phpdocumentor-signature__visibility">protected</span>
  1933. <span class="phpdocumentor-signature__type">int</span>
  1934. <span class="phpdocumentor-signature__name">$quietzoneSize</span>
  1935. = <span class="phpdocumentor-signature__default-value">4</span></code>
  1936. <section class="phpdocumentor-description"><p>internally clamped to [0 ... $moduleCount / 2], defaults to 4 modules</p>
  1937. </section>
  1938. <section class="phpdocumentor-description"></section>
  1939. </article>
  1940. <article
  1941. class="
  1942. phpdocumentor-element
  1943. -property
  1944. -protected
  1945. "
  1946. >
  1947. <h4 class="phpdocumentor-element__name" id="property_returnResource">
  1948. $returnResource
  1949. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_returnResource" class="headerlink"><i class="fas fa-link"></i></a>
  1950. <span class="phpdocumentor-element__modifiers">
  1951. </span>
  1952. </h4>
  1953. <aside class="phpdocumentor-element-found-in">
  1954. <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>
  1955. :
  1956. <span class="phpdocumentor-element-found-in__line">165</span>
  1957. </aside>
  1958. <p class="phpdocumentor-summary">Return the image resource instead of a render if applicable.</p>
  1959. <code class="phpdocumentor-code phpdocumentor-signature ">
  1960. <span class="phpdocumentor-signature__visibility">protected</span>
  1961. <span class="phpdocumentor-signature__type">bool</span>
  1962. <span class="phpdocumentor-signature__name">$returnResource</span>
  1963. = <span class="phpdocumentor-signature__default-value">false</span></code>
  1964. <section class="phpdocumentor-description"><p>This option overrides other output options, such as $cachefile and $imageBase64.</p>
  1965. <p>Supported by the following modules:</p>
  1966. <ul>
  1967. <li>QRImage: resource (PHP &lt; 8), GdImage</li>
  1968. <li>QRImagick: Imagick</li>
  1969. <li>QRFpdf: FPDF</li>
  1970. </ul>
  1971. </section>
  1972. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1973. Tags
  1974. <a href="#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1975. </h5>
  1976. <dl class="phpdocumentor-tag-list">
  1977. <dt class="phpdocumentor-tag-list__entry">
  1978. <span class="phpdocumentor-tag__name">see</span>
  1979. </dt>
  1980. <dd class="phpdocumentor-tag-list__definition">
  1981. <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>
  1982. </dd>
  1983. </dl>
  1984. </article>
  1985. <article
  1986. class="
  1987. phpdocumentor-element
  1988. -property
  1989. -protected
  1990. "
  1991. >
  1992. <h4 class="phpdocumentor-element__name" id="property_scale">
  1993. $scale
  1994. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_scale" class="headerlink"><i class="fas fa-link"></i></a>
  1995. <span class="phpdocumentor-element__modifiers">
  1996. </span>
  1997. </h4>
  1998. <aside class="phpdocumentor-element-found-in">
  1999. <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>
  2000. :
  2001. <span class="phpdocumentor-element-found-in__line">103</span>
  2002. </aside>
  2003. <p class="phpdocumentor-summary">size of a QR code pixel [SVG, IMAGE_*], HTML via CSS</p>
  2004. <code class="phpdocumentor-code phpdocumentor-signature ">
  2005. <span class="phpdocumentor-signature__visibility">protected</span>
  2006. <span class="phpdocumentor-signature__type">int</span>
  2007. <span class="phpdocumentor-signature__name">$scale</span>
  2008. = <span class="phpdocumentor-signature__default-value">5</span></code>
  2009. <section class="phpdocumentor-description"></section>
  2010. </article>
  2011. <article
  2012. class="
  2013. phpdocumentor-element
  2014. -property
  2015. -protected
  2016. "
  2017. >
  2018. <h4 class="phpdocumentor-element__name" id="property_svgDefs">
  2019. $svgDefs
  2020. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgDefs" class="headerlink"><i class="fas fa-link"></i></a>
  2021. <span class="phpdocumentor-element__modifiers">
  2022. </span>
  2023. </h4>
  2024. <aside class="phpdocumentor-element-found-in">
  2025. <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>
  2026. :
  2027. <span class="phpdocumentor-element-found-in__line">120</span>
  2028. </aside>
  2029. <p class="phpdocumentor-summary">anything between &lt;defs&gt;</p>
  2030. <code class="phpdocumentor-code phpdocumentor-signature ">
  2031. <span class="phpdocumentor-signature__visibility">protected</span>
  2032. <span class="phpdocumentor-signature__type">string</span>
  2033. <span class="phpdocumentor-signature__name">$svgDefs</span>
  2034. = <span class="phpdocumentor-signature__default-value">&#039;&lt;style&gt;rect{shape-rendering:crispEdges}&lt;/style&gt;&#039;</span></code>
  2035. <section class="phpdocumentor-description"></section>
  2036. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  2037. Tags
  2038. <a href="#tags" class="headerlink"><i class="fas fa-link"></i></a>
  2039. </h5>
  2040. <dl class="phpdocumentor-tag-list">
  2041. <dt class="phpdocumentor-tag-list__entry">
  2042. <span class="phpdocumentor-tag__name">see</span>
  2043. </dt>
  2044. <dd class="phpdocumentor-tag-list__definition">
  2045. <span class="phpdocumentor-tag-link"><a href="https://developer.mozilla.org/docs/Web/SVG/Element/defs"><abbr title="https://developer.mozilla.org/docs/Web/SVG/Element/defs">https://developer.mozilla.org/docs/Web/SVG/Element/defs</abbr></a></span>
  2046. </dd>
  2047. </dl>
  2048. </article>
  2049. <article
  2050. class="
  2051. phpdocumentor-element
  2052. -property
  2053. -protected
  2054. "
  2055. >
  2056. <h4 class="phpdocumentor-element__name" id="property_svgOpacity">
  2057. $svgOpacity
  2058. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgOpacity" class="headerlink"><i class="fas fa-link"></i></a>
  2059. <span class="phpdocumentor-element__modifiers">
  2060. </span>
  2061. </h4>
  2062. <aside class="phpdocumentor-element-found-in">
  2063. <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>
  2064. :
  2065. <span class="phpdocumentor-element-found-in__line">113</span>
  2066. </aside>
  2067. <p class="phpdocumentor-summary">SVG opacity</p>
  2068. <code class="phpdocumentor-code phpdocumentor-signature ">
  2069. <span class="phpdocumentor-signature__visibility">protected</span>
  2070. <span class="phpdocumentor-signature__type">float</span>
  2071. <span class="phpdocumentor-signature__name">$svgOpacity</span>
  2072. = <span class="phpdocumentor-signature__default-value">1.0</span></code>
  2073. <section class="phpdocumentor-description"></section>
  2074. </article>
  2075. <article
  2076. class="
  2077. phpdocumentor-element
  2078. -property
  2079. -protected
  2080. "
  2081. >
  2082. <h4 class="phpdocumentor-element__name" id="property_svgViewBoxSize">
  2083. $svgViewBoxSize
  2084. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_svgViewBoxSize" class="headerlink"><i class="fas fa-link"></i></a>
  2085. <span class="phpdocumentor-element__modifiers">
  2086. </span>
  2087. </h4>
  2088. <aside class="phpdocumentor-element-found-in">
  2089. <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>
  2090. :
  2091. <span class="phpdocumentor-element-found-in__line">129</span>
  2092. </aside>
  2093. <p class="phpdocumentor-summary">SVG viewBox size. a single integer number which defines width/height of the viewBox attribute.</p>
  2094. <code class="phpdocumentor-code phpdocumentor-signature ">
  2095. <span class="phpdocumentor-signature__visibility">protected</span>
  2096. <span class="phpdocumentor-signature__type">int|null</span>
  2097. <span class="phpdocumentor-signature__name">$svgViewBoxSize</span>
  2098. = <span class="phpdocumentor-signature__default-value">null</span></code>
  2099. <section class="phpdocumentor-description"><p>viewBox=&quot;0 0 x x&quot;</p>
  2100. </section>
  2101. <section class="phpdocumentor-description"></section>
  2102. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  2103. Tags
  2104. <a href="#tags" class="headerlink"><i class="fas fa-link"></i></a>
  2105. </h5>
  2106. <dl class="phpdocumentor-tag-list">
  2107. <dt class="phpdocumentor-tag-list__entry">
  2108. <span class="phpdocumentor-tag__name">see</span>
  2109. </dt>
  2110. <dd class="phpdocumentor-tag-list__definition">
  2111. <span class="phpdocumentor-tag-link"><a href="https://css-tricks.com/scale-svg/#article-header-id-3"><abbr title="https://css-tricks.com/scale-svg/#article-header-id-3">https://css-tricks.com/scale-svg/#article-header-id-3</abbr></a></span>
  2112. </dd>
  2113. </dl>
  2114. </article>
  2115. <article
  2116. class="
  2117. phpdocumentor-element
  2118. -property
  2119. -protected
  2120. "
  2121. >
  2122. <h4 class="phpdocumentor-element__name" id="property_textDark">
  2123. $textDark
  2124. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_textDark" class="headerlink"><i class="fas fa-link"></i></a>
  2125. <span class="phpdocumentor-element__modifiers">
  2126. </span>
  2127. </h4>
  2128. <aside class="phpdocumentor-element-found-in">
  2129. <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>
  2130. :
  2131. <span class="phpdocumentor-element-found-in__line">134</span>
  2132. </aside>
  2133. <p class="phpdocumentor-summary">string substitute for dark</p>
  2134. <code class="phpdocumentor-code phpdocumentor-signature ">
  2135. <span class="phpdocumentor-signature__visibility">protected</span>
  2136. <span class="phpdocumentor-signature__type">string</span>
  2137. <span class="phpdocumentor-signature__name">$textDark</span>
  2138. = <span class="phpdocumentor-signature__default-value">&#039;🔴&#039;</span></code>
  2139. <section class="phpdocumentor-description"></section>
  2140. </article>
  2141. <article
  2142. class="
  2143. phpdocumentor-element
  2144. -property
  2145. -protected
  2146. "
  2147. >
  2148. <h4 class="phpdocumentor-element__name" id="property_textLight">
  2149. $textLight
  2150. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_textLight" class="headerlink"><i class="fas fa-link"></i></a>
  2151. <span class="phpdocumentor-element__modifiers">
  2152. </span>
  2153. </h4>
  2154. <aside class="phpdocumentor-element-found-in">
  2155. <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>
  2156. :
  2157. <span class="phpdocumentor-element-found-in__line">139</span>
  2158. </aside>
  2159. <p class="phpdocumentor-summary">string substitute for light</p>
  2160. <code class="phpdocumentor-code phpdocumentor-signature ">
  2161. <span class="phpdocumentor-signature__visibility">protected</span>
  2162. <span class="phpdocumentor-signature__type">string</span>
  2163. <span class="phpdocumentor-signature__name">$textLight</span>
  2164. = <span class="phpdocumentor-signature__default-value">&#039;⭕&#039;</span></code>
  2165. <section class="phpdocumentor-description"></section>
  2166. </article>
  2167. <article
  2168. class="
  2169. phpdocumentor-element
  2170. -property
  2171. -protected
  2172. "
  2173. >
  2174. <h4 class="phpdocumentor-element__name" id="property_useImagickIfAvailable">
  2175. $useImagickIfAvailable
  2176. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_useImagickIfAvailable" class="headerlink"><i class="fas fa-link"></i></a>
  2177. <span class="phpdocumentor-element__modifiers">
  2178. </span>
  2179. </h4>
  2180. <aside class="phpdocumentor-element-found-in">
  2181. <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>
  2182. :
  2183. <span class="phpdocumentor-element-found-in__line">226</span>
  2184. </aside>
  2185. <p class="phpdocumentor-summary">use Imaagick (if available) when reading QR Codes</p>
  2186. <code class="phpdocumentor-code phpdocumentor-signature ">
  2187. <span class="phpdocumentor-signature__visibility">protected</span>
  2188. <span class="phpdocumentor-signature__type">bool</span>
  2189. <span class="phpdocumentor-signature__name">$useImagickIfAvailable</span>
  2190. = <span class="phpdocumentor-signature__default-value">false</span></code>
  2191. <section class="phpdocumentor-description"></section>
  2192. </article>
  2193. <article
  2194. class="
  2195. phpdocumentor-element
  2196. -property
  2197. -protected
  2198. "
  2199. >
  2200. <h4 class="phpdocumentor-element__name" id="property_version">
  2201. $version
  2202. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_version" class="headerlink"><i class="fas fa-link"></i></a>
  2203. <span class="phpdocumentor-element__modifiers">
  2204. </span>
  2205. </h4>
  2206. <aside class="phpdocumentor-element-found-in">
  2207. <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>
  2208. :
  2209. <span class="phpdocumentor-element-found-in__line">30</span>
  2210. </aside>
  2211. <p class="phpdocumentor-summary">QR Code version number</p>
  2212. <code class="phpdocumentor-code phpdocumentor-signature ">
  2213. <span class="phpdocumentor-signature__visibility">protected</span>
  2214. <span class="phpdocumentor-signature__type">int</span>
  2215. <span class="phpdocumentor-signature__name">$version</span>
  2216. = <span class="phpdocumentor-signature__default-value">chillerlanQRCodeQRCode::VERSION_AUTO</span></code>
  2217. <section class="phpdocumentor-description"><p>[1 ... 40] or QRCode::VERSION_AUTO</p>
  2218. </section>
  2219. <section class="phpdocumentor-description"></section>
  2220. </article>
  2221. <article
  2222. class="
  2223. phpdocumentor-element
  2224. -property
  2225. -protected
  2226. "
  2227. >
  2228. <h4 class="phpdocumentor-element__name" id="property_versionMax">
  2229. $versionMax
  2230. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_versionMax" class="headerlink"><i class="fas fa-link"></i></a>
  2231. <span class="phpdocumentor-element__modifiers">
  2232. </span>
  2233. </h4>
  2234. <aside class="phpdocumentor-element-found-in">
  2235. <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>
  2236. :
  2237. <span class="phpdocumentor-element-found-in__line">42</span>
  2238. </aside>
  2239. <p class="phpdocumentor-summary">Maximum QR version</p>
  2240. <code class="phpdocumentor-code phpdocumentor-signature ">
  2241. <span class="phpdocumentor-signature__visibility">protected</span>
  2242. <span class="phpdocumentor-signature__type">int</span>
  2243. <span class="phpdocumentor-signature__name">$versionMax</span>
  2244. = <span class="phpdocumentor-signature__default-value">40</span></code>
  2245. <section class="phpdocumentor-description"></section>
  2246. </article>
  2247. <article
  2248. class="
  2249. phpdocumentor-element
  2250. -property
  2251. -protected
  2252. "
  2253. >
  2254. <h4 class="phpdocumentor-element__name" id="property_versionMin">
  2255. $versionMin
  2256. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#property_versionMin" class="headerlink"><i class="fas fa-link"></i></a>
  2257. <span class="phpdocumentor-element__modifiers">
  2258. </span>
  2259. </h4>
  2260. <aside class="phpdocumentor-element-found-in">
  2261. <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>
  2262. :
  2263. <span class="phpdocumentor-element-found-in__line">37</span>
  2264. </aside>
  2265. <p class="phpdocumentor-summary">Minimum QR version</p>
  2266. <code class="phpdocumentor-code phpdocumentor-signature ">
  2267. <span class="phpdocumentor-signature__visibility">protected</span>
  2268. <span class="phpdocumentor-signature__type">int</span>
  2269. <span class="phpdocumentor-signature__name">$versionMin</span>
  2270. = <span class="phpdocumentor-signature__default-value">1</span></code>
  2271. <section class="phpdocumentor-description"><p>if $version = QRCode::VERSION_AUTO</p>
  2272. </section>
  2273. <section class="phpdocumentor-description"></section>
  2274. </article>
  2275. </section>
  2276. <section class="phpdocumentor-methods">
  2277. <h3 class="phpdocumentor-elements__header" id="methods">
  2278. Methods
  2279. <a href="classes/chillerlan-QRCode-QROptions.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
  2280. </h3>
  2281. <article
  2282. class="phpdocumentor-element
  2283. -method
  2284. -public
  2285. "
  2286. >
  2287. <h4 class="phpdocumentor-element__name" id="method_getLuminanceSourceFQCN">
  2288. getLuminanceSourceFQCN()
  2289. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_getLuminanceSourceFQCN" class="headerlink"><i class="fas fa-link"></i></a>
  2290. </h4>
  2291. <aside class="phpdocumentor-element-found-in">
  2292. <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>
  2293. :
  2294. <span class="phpdocumentor-element-found-in__line">349</span>
  2295. </aside>
  2296. <p class="phpdocumentor-summary">returns the FQCN of the luminance source class to use in the reader (GD or Imagick)</p>
  2297. <code class="phpdocumentor-code phpdocumentor-signature ">
  2298. <span class="phpdocumentor-signature__visibility">public</span>
  2299. <span class="phpdocumentor-signature__name">getLuminanceSourceFQCN</span><span>(</span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">string</span></code>
  2300. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  2301. Tags
  2302. <a href="#tags" class="headerlink"><i class="fas fa-link"></i></a>
  2303. </h5>
  2304. <dl class="phpdocumentor-tag-list">
  2305. <dt class="phpdocumentor-tag-list__entry">
  2306. <span class="phpdocumentor-tag__name">see</span>
  2307. </dt>
  2308. <dd class="phpdocumentor-tag-list__definition">
  2309. <span class="phpdocumentor-tag-link"><a href="classes/chillerlan-QRCode-Decoder-LuminanceSourceInterface.html"><abbr title="\chillerlan\QRCode\Decoder\LuminanceSourceInterface">LuminanceSourceInterface</abbr></a></span>
  2310. </dd>
  2311. </dl>
  2312. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  2313. <span class="phpdocumentor-signature__response_type">string</span>
  2314. &mdash;
  2315. </article>
  2316. <article
  2317. class="phpdocumentor-element
  2318. -method
  2319. -protected
  2320. "
  2321. >
  2322. <h4 class="phpdocumentor-element__name" id="method_set_eccLevel">
  2323. set_eccLevel()
  2324. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_eccLevel" class="headerlink"><i class="fas fa-link"></i></a>
  2325. </h4>
  2326. <aside class="phpdocumentor-element-found-in">
  2327. <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>
  2328. :
  2329. <span class="phpdocumentor-element-found-in__line">258</span>
  2330. </aside>
  2331. <p class="phpdocumentor-summary">sets the error correction level</p>
  2332. <code class="phpdocumentor-code phpdocumentor-signature ">
  2333. <span class="phpdocumentor-signature__visibility">protected</span>
  2334. <span class="phpdocumentor-signature__name">set_eccLevel</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">int&nbsp;</span><span class="phpdocumentor-signature__argument__name">$eccLevel</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  2335. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2336. <dl class="phpdocumentor-argument-list">
  2337. <dt class="phpdocumentor-argument-list__entry">
  2338. <span class="phpdocumentor-signature__argument__name">$eccLevel</span>
  2339. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  2340. </dt>
  2341. <dd class="phpdocumentor-argument-list__definition">
  2342. <section class="phpdocumentor-description"></section>
  2343. </dd>
  2344. </dl>
  2345. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  2346. Tags
  2347. <a href="#tags" class="headerlink"><i class="fas fa-link"></i></a>
  2348. </h5>
  2349. <dl class="phpdocumentor-tag-list">
  2350. <dt class="phpdocumentor-tag-list__entry">
  2351. <span class="phpdocumentor-tag__name">throws</span>
  2352. </dt>
  2353. <dd class="phpdocumentor-tag-list__definition">
  2354. <span class="phpdocumentor-tag-link"><a href="classes/chillerlan-QRCode-QRCodeException.html"><abbr title="\chillerlan\QRCode\QRCodeException">QRCodeException</abbr></a></span>
  2355. </dd>
  2356. </dl>
  2357. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  2358. <span class="phpdocumentor-signature__response_type">void</span>
  2359. &mdash;
  2360. </article>
  2361. <article
  2362. class="phpdocumentor-element
  2363. -method
  2364. -protected
  2365. "
  2366. >
  2367. <h4 class="phpdocumentor-element__name" id="method_set_fpdfMeasureUnit">
  2368. set_fpdfMeasureUnit()
  2369. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_fpdfMeasureUnit" class="headerlink"><i class="fas fa-link"></i></a>
  2370. </h4>
  2371. <aside class="phpdocumentor-element-found-in">
  2372. <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>
  2373. :
  2374. <span class="phpdocumentor-element-found-in__line">327</span>
  2375. </aside>
  2376. <p class="phpdocumentor-summary">sets the FPDF measurement unit</p>
  2377. <code class="phpdocumentor-code phpdocumentor-signature ">
  2378. <span class="phpdocumentor-signature__visibility">protected</span>
  2379. <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>
  2380. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2381. <dl class="phpdocumentor-argument-list">
  2382. <dt class="phpdocumentor-argument-list__entry">
  2383. <span class="phpdocumentor-signature__argument__name">$unit</span>
  2384. : <span class="phpdocumentor-signature__argument__return-type">string</span>
  2385. </dt>
  2386. <dd class="phpdocumentor-argument-list__definition">
  2387. <section class="phpdocumentor-description"></section>
  2388. </dd>
  2389. </dl>
  2390. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  2391. Tags
  2392. <a href="#tags" class="headerlink"><i class="fas fa-link"></i></a>
  2393. </h5>
  2394. <dl class="phpdocumentor-tag-list">
  2395. <dt class="phpdocumentor-tag-list__entry">
  2396. <span class="phpdocumentor-tag__name">codeCoverageIgnore</span>
  2397. </dt>
  2398. <dd class="phpdocumentor-tag-list__definition">
  2399. </dd>
  2400. </dl>
  2401. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  2402. <span class="phpdocumentor-signature__response_type">void</span>
  2403. &mdash;
  2404. </article>
  2405. <article
  2406. class="phpdocumentor-element
  2407. -method
  2408. -protected
  2409. "
  2410. >
  2411. <h4 class="phpdocumentor-element__name" id="method_set_imageTransparencyBG">
  2412. set_imageTransparencyBG()
  2413. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_imageTransparencyBG" class="headerlink"><i class="fas fa-link"></i></a>
  2414. </h4>
  2415. <aside class="phpdocumentor-element-found-in">
  2416. <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>
  2417. :
  2418. <span class="phpdocumentor-element-found-in__line">283</span>
  2419. </aside>
  2420. <p class="phpdocumentor-summary">sets the transparency background color</p>
  2421. <code class="phpdocumentor-code phpdocumentor-signature ">
  2422. <span class="phpdocumentor-signature__visibility">protected</span>
  2423. <span class="phpdocumentor-signature__name">set_imageTransparencyBG</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">array&lt;string|int, mixed&gt;&nbsp;</span><span class="phpdocumentor-signature__argument__name">$imageTransparencyBG</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  2424. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2425. <dl class="phpdocumentor-argument-list">
  2426. <dt class="phpdocumentor-argument-list__entry">
  2427. <span class="phpdocumentor-signature__argument__name">$imageTransparencyBG</span>
  2428. : <span class="phpdocumentor-signature__argument__return-type">array&lt;string|int, mixed&gt;</span>
  2429. </dt>
  2430. <dd class="phpdocumentor-argument-list__definition">
  2431. <section class="phpdocumentor-description"></section>
  2432. </dd>
  2433. </dl>
  2434. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  2435. Tags
  2436. <a href="#tags" class="headerlink"><i class="fas fa-link"></i></a>
  2437. </h5>
  2438. <dl class="phpdocumentor-tag-list">
  2439. <dt class="phpdocumentor-tag-list__entry">
  2440. <span class="phpdocumentor-tag__name">throws</span>
  2441. </dt>
  2442. <dd class="phpdocumentor-tag-list__definition">
  2443. <span class="phpdocumentor-tag-link"><a href="classes/chillerlan-QRCode-QRCodeException.html"><abbr title="\chillerlan\QRCode\QRCodeException">QRCodeException</abbr></a></span>
  2444. </dd>
  2445. </dl>
  2446. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  2447. <span class="phpdocumentor-signature__response_type">void</span>
  2448. &mdash;
  2449. </article>
  2450. <article
  2451. class="phpdocumentor-element
  2452. -method
  2453. -protected
  2454. "
  2455. >
  2456. <h4 class="phpdocumentor-element__name" id="method_set_maskPattern">
  2457. set_maskPattern()
  2458. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_maskPattern" class="headerlink"><i class="fas fa-link"></i></a>
  2459. </h4>
  2460. <aside class="phpdocumentor-element-found-in">
  2461. <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>
  2462. :
  2463. <span class="phpdocumentor-element-found-in__line">270</span>
  2464. </aside>
  2465. <p class="phpdocumentor-summary">sets/clamps the mask pattern</p>
  2466. <code class="phpdocumentor-code phpdocumentor-signature ">
  2467. <span class="phpdocumentor-signature__visibility">protected</span>
  2468. <span class="phpdocumentor-signature__name">set_maskPattern</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">int&nbsp;</span><span class="phpdocumentor-signature__argument__name">$maskPattern</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  2469. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2470. <dl class="phpdocumentor-argument-list">
  2471. <dt class="phpdocumentor-argument-list__entry">
  2472. <span class="phpdocumentor-signature__argument__name">$maskPattern</span>
  2473. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  2474. </dt>
  2475. <dd class="phpdocumentor-argument-list__definition">
  2476. <section class="phpdocumentor-description"></section>
  2477. </dd>
  2478. </dl>
  2479. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  2480. <span class="phpdocumentor-signature__response_type">void</span>
  2481. &mdash;
  2482. </article>
  2483. <article
  2484. class="phpdocumentor-element
  2485. -method
  2486. -protected
  2487. "
  2488. >
  2489. <h4 class="phpdocumentor-element__name" id="method_set_useImagickIfAvailable">
  2490. set_useImagickIfAvailable()
  2491. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_useImagickIfAvailable" 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">340</span>
  2497. </aside>
  2498. <p class="phpdocumentor-summary">enables Imagick for the QR Code reader if the extension is available</p>
  2499. <code class="phpdocumentor-code phpdocumentor-signature ">
  2500. <span class="phpdocumentor-signature__visibility">protected</span>
  2501. <span class="phpdocumentor-signature__name">set_useImagickIfAvailable</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>
  2502. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2503. <dl class="phpdocumentor-argument-list">
  2504. <dt class="phpdocumentor-argument-list__entry">
  2505. <span class="phpdocumentor-signature__argument__name">$useImagickIfAvailable</span>
  2506. : <span class="phpdocumentor-signature__argument__return-type">bool</span>
  2507. </dt>
  2508. <dd class="phpdocumentor-argument-list__definition">
  2509. <section class="phpdocumentor-description"></section>
  2510. </dd>
  2511. </dl>
  2512. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  2513. <span class="phpdocumentor-signature__response_type">void</span>
  2514. &mdash;
  2515. </article>
  2516. <article
  2517. class="phpdocumentor-element
  2518. -method
  2519. -protected
  2520. "
  2521. >
  2522. <h4 class="phpdocumentor-element__name" id="method_set_version">
  2523. set_version()
  2524. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_version" class="headerlink"><i class="fas fa-link"></i></a>
  2525. </h4>
  2526. <aside class="phpdocumentor-element-found-in">
  2527. <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>
  2528. :
  2529. <span class="phpdocumentor-element-found-in__line">314</span>
  2530. </aside>
  2531. <p class="phpdocumentor-summary">sets/clamps the version number</p>
  2532. <code class="phpdocumentor-code phpdocumentor-signature ">
  2533. <span class="phpdocumentor-signature__visibility">protected</span>
  2534. <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>
  2535. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2536. <dl class="phpdocumentor-argument-list">
  2537. <dt class="phpdocumentor-argument-list__entry">
  2538. <span class="phpdocumentor-signature__argument__name">$version</span>
  2539. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  2540. </dt>
  2541. <dd class="phpdocumentor-argument-list__definition">
  2542. <section class="phpdocumentor-description"></section>
  2543. </dd>
  2544. </dl>
  2545. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  2546. <span class="phpdocumentor-signature__response_type">void</span>
  2547. &mdash;
  2548. </article>
  2549. <article
  2550. class="phpdocumentor-element
  2551. -method
  2552. -protected
  2553. "
  2554. >
  2555. <h4 class="phpdocumentor-element__name" id="method_set_versionMax">
  2556. set_versionMax()
  2557. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_versionMax" class="headerlink"><i class="fas fa-link"></i></a>
  2558. </h4>
  2559. <aside class="phpdocumentor-element-found-in">
  2560. <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>
  2561. :
  2562. <span class="phpdocumentor-element-found-in__line">249</span>
  2563. </aside>
  2564. <p class="phpdocumentor-summary">sets the maximum version number</p>
  2565. <code class="phpdocumentor-code phpdocumentor-signature ">
  2566. <span class="phpdocumentor-signature__visibility">protected</span>
  2567. <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>
  2568. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2569. <dl class="phpdocumentor-argument-list">
  2570. <dt class="phpdocumentor-argument-list__entry">
  2571. <span class="phpdocumentor-signature__argument__name">$version</span>
  2572. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  2573. </dt>
  2574. <dd class="phpdocumentor-argument-list__definition">
  2575. <section class="phpdocumentor-description"></section>
  2576. </dd>
  2577. </dl>
  2578. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  2579. <span class="phpdocumentor-signature__response_type">void</span>
  2580. &mdash;
  2581. </article>
  2582. <article
  2583. class="phpdocumentor-element
  2584. -method
  2585. -protected
  2586. "
  2587. >
  2588. <h4 class="phpdocumentor-element__name" id="method_set_versionMin">
  2589. set_versionMin()
  2590. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_set_versionMin" class="headerlink"><i class="fas fa-link"></i></a>
  2591. </h4>
  2592. <aside class="phpdocumentor-element-found-in">
  2593. <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>
  2594. :
  2595. <span class="phpdocumentor-element-found-in__line">242</span>
  2596. </aside>
  2597. <p class="phpdocumentor-summary">sets the minimum version number</p>
  2598. <code class="phpdocumentor-code phpdocumentor-signature ">
  2599. <span class="phpdocumentor-signature__visibility">protected</span>
  2600. <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>
  2601. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2602. <dl class="phpdocumentor-argument-list">
  2603. <dt class="phpdocumentor-argument-list__entry">
  2604. <span class="phpdocumentor-signature__argument__name">$version</span>
  2605. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  2606. </dt>
  2607. <dd class="phpdocumentor-argument-list__definition">
  2608. <section class="phpdocumentor-description"></section>
  2609. </dd>
  2610. </dl>
  2611. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  2612. <span class="phpdocumentor-signature__response_type">void</span>
  2613. &mdash;
  2614. </article>
  2615. <article
  2616. class="phpdocumentor-element
  2617. -method
  2618. -protected
  2619. "
  2620. >
  2621. <h4 class="phpdocumentor-element__name" id="method_setMinMaxVersion">
  2622. setMinMaxVersion()
  2623. <a href="classes/chillerlan-QRCode-QROptionsTrait.html#method_setMinMaxVersion" class="headerlink"><i class="fas fa-link"></i></a>
  2624. </h4>
  2625. <aside class="phpdocumentor-element-found-in">
  2626. <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>
  2627. :
  2628. <span class="phpdocumentor-element-found-in__line">231</span>
  2629. </aside>
  2630. <p class="phpdocumentor-summary">clamp min/max version number</p>
  2631. <code class="phpdocumentor-code phpdocumentor-signature ">
  2632. <span class="phpdocumentor-signature__visibility">protected</span>
  2633. <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>
  2634. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  2635. <dl class="phpdocumentor-argument-list">
  2636. <dt class="phpdocumentor-argument-list__entry">
  2637. <span class="phpdocumentor-signature__argument__name">$versionMin</span>
  2638. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  2639. </dt>
  2640. <dd class="phpdocumentor-argument-list__definition">
  2641. <section class="phpdocumentor-description"></section>
  2642. </dd>
  2643. <dt class="phpdocumentor-argument-list__entry">
  2644. <span class="phpdocumentor-signature__argument__name">$versionMax</span>
  2645. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  2646. </dt>
  2647. <dd class="phpdocumentor-argument-list__definition">
  2648. <section class="phpdocumentor-description"></section>
  2649. </dd>
  2650. </dl>
  2651. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  2652. <span class="phpdocumentor-signature__response_type">void</span>
  2653. &mdash;
  2654. </article>
  2655. </section>
  2656. <script type="text/javascript">
  2657. function loadExternalCodeSnippets(line) {
  2658. Array.prototype.slice.call(document.querySelectorAll('pre[data-src]')).forEach((pre) => {
  2659. var src = pre.getAttribute('data-src').replace( /\\/g, '/');
  2660. var extension = (src.match(/\.(\w+)$/) || [, ''])[1];
  2661. var language = 'php';
  2662. var code = document.createElement('code');
  2663. code.className = 'language-' + language;
  2664. pre.textContent = '';
  2665. pre.setAttribute('data-line', line)
  2666. code.textContent = 'Loading…';
  2667. pre.appendChild(code);
  2668. var xhr = new XMLHttpRequest();
  2669. xhr.open('GET', src, true);
  2670. xhr.onreadystatechange = function () {
  2671. if (xhr.readyState == 4) {
  2672. if (xhr.status < 400 && xhr.responseText) {
  2673. code.textContent = xhr.responseText;
  2674. Prism.highlightElement(code);
  2675. }
  2676. else if (xhr.status >= 400) {
  2677. code.textContent = '✖ Error ' + xhr.status + ' while fetching file: ' + xhr.statusText;
  2678. }
  2679. else {
  2680. code.textContent = '✖ Error: File does not exist, is empty or trying to view from localhost';
  2681. }
  2682. }
  2683. };
  2684. xhr.send(null);
  2685. });
  2686. }
  2687. var modals = document.querySelectorAll("[data-modal]");
  2688. modals.forEach(function (trigger) {
  2689. trigger.addEventListener("click", function (event) {
  2690. //event.preventDefault();
  2691. const modal = document.getElementById(trigger.dataset.modal);
  2692. modal.classList.add("phpdocumentor-modal__open");
  2693. loadExternalCodeSnippets(trigger.dataset.line)
  2694. const exits = modal.querySelectorAll("[data-exit-button]");
  2695. exits.forEach(function (exit) {
  2696. exit.addEventListener("click", function (event) {
  2697. event.preventDefault();
  2698. modal.classList.remove("phpdocumentor-modal__open");
  2699. });
  2700. });
  2701. });
  2702. });
  2703. </script>
  2704. </article>
  2705. <section data-search-results class="phpdocumentor-search-results phpdocumentor-search-results--hidden">
  2706. <section class="phpdocumentor-search-results__dialog">
  2707. <header class="phpdocumentor-search-results__header">
  2708. <h2 class="phpdocumentor-search-results__title">Search results</h2>
  2709. <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
  2710. </header>
  2711. <section class="phpdocumentor-search-results__body">
  2712. <ul class="phpdocumentor-search-results__entries"></ul>
  2713. </section>
  2714. </section>
  2715. </section>
  2716. </div>
  2717. </div>
  2718. <a href="classes/chillerlan-QRCode-QROptions.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
  2719. </main>
  2720. <script>
  2721. cssVars({});
  2722. </script>
  2723. <script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/prism.min.js"></script>
  2724. <script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/autoloader/prism-autoloader.min.js"></script>
  2725. <script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/line-numbers/prism-line-numbers.min.js"></script>
  2726. <script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/line-highlight/prism-line-highlight.min.js"></script>
  2727. </body>
  2728. </html>