chillerlan-QRCode-QROptions.html 139 KB

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