chillerlan-QRCode-QROptions.html 171 KB

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