chillerlan-QRCode-Output-QRMarkup.html 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Documentation</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <base href="../">
  8. <link rel="icon" href="images/favicon.ico"/>
  9. <link rel="stylesheet" href="css/normalize.css">
  10. <link rel="stylesheet" href="css/base.css">
  11. <link rel="preconnect" href="https://fonts.gstatic.com">
  12. <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@100;200;300;400;600;700&display=swap" rel="stylesheet">
  13. <link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;600;700&display=swap" rel="stylesheet">
  14. <link rel="stylesheet" href="css/template.css">
  15. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0/css/all.min.css" integrity="sha256-ybRkN9dBjhcS2qrW1z+hfCxq+1aBdwyQM5wlQoQVt/0=" crossorigin="anonymous" />
  16. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/themes/prism-okaidia.css">
  17. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/line-numbers/prism-line-numbers.css">
  18. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/line-highlight/prism-line-highlight.css">
  19. <script src="https://cdn.jsdelivr.net/npm/fuse.js@3.4.6"></script>
  20. <script src="https://cdn.jsdelivr.net/npm/css-vars-ponyfill@2"></script>
  21. <script src="js/template.js"></script>
  22. <script src="js/search.js"></script>
  23. <script defer src="js/searchIndex.js"></script>
  24. </head>
  25. <body id="top">
  26. <header class="phpdocumentor-header phpdocumentor-section">
  27. <h1 class="phpdocumentor-title"><a href="" class="phpdocumentor-title__link">Documentation</a></h1>
  28. <input class="phpdocumentor-header__menu-button" type="checkbox" id="menu-button" name="menu-button" />
  29. <label class="phpdocumentor-header__menu-icon" for="menu-button">
  30. <i class="fas fa-bars"></i>
  31. </label>
  32. <section data-search-form class="phpdocumentor-search">
  33. <label>
  34. <span class="visually-hidden">Search for</span>
  35. <svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
  36. <circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
  37. <line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
  38. </svg>
  39. <input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
  40. </label>
  41. </section>
  42. <nav class="phpdocumentor-topnav">
  43. <ul class="phpdocumentor-topnav__menu">
  44. <li class="phpdocumentor-topnav__menu-item -menu">
  45. <a href="https://php-qrcode.readthedocs.io">
  46. <span>
  47. User Manual
  48. </span>
  49. </a>
  50. </li>
  51. <li class="phpdocumentor-topnav__menu-item -social">
  52. <a href="https://github.com/chillerlan/php-qrcode">
  53. <span>
  54. <i class="fab fa-github"></i>
  55. </span>
  56. </a>
  57. </li>
  58. </ul>
  59. </nav>
  60. </header>
  61. <main class="phpdocumentor">
  62. <div class="phpdocumentor-section">
  63. <input class="phpdocumentor-sidebar__menu-button" type="checkbox" id="sidebar-button" name="sidebar-button" />
  64. <label class="phpdocumentor-sidebar__menu-icon" for="sidebar-button">
  65. Menu
  66. </label>
  67. <aside class="phpdocumentor-column -three phpdocumentor-sidebar">
  68. <section class="phpdocumentor-sidebar__category">
  69. <h2 class="phpdocumentor-sidebar__category-header">Namespaces</h2>
  70. <h4 class="phpdocumentor-sidebar__root-namespace">
  71. <a href="namespaces/chillerlan.html" class="">chillerlan</a>
  72. </h4>
  73. <ul class="phpdocumentor-list">
  74. <li>
  75. <a href="namespaces/chillerlan-qrcode.html" class="">QRCode</a>
  76. </li>
  77. <li>
  78. <a href="namespaces/chillerlan-qrcodetest.html" class="">QRCodeTest</a>
  79. </li>
  80. </ul>
  81. </section>
  82. <section class="phpdocumentor-sidebar__category">
  83. <h2 class="phpdocumentor-sidebar__category-header">Packages</h2>
  84. <h4 class="phpdocumentor-sidebar__root-namespace">
  85. <a href="packages/Application.html" class="">Application</a>
  86. </h4>
  87. </section>
  88. <section class="phpdocumentor-sidebar__category">
  89. <h2 class="phpdocumentor-sidebar__category-header">Reports</h2>
  90. <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/deprecated.html">Deprecated</a></h3>
  91. <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/errors.html">Errors</a></h3>
  92. <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
  93. </section>
  94. <section class="phpdocumentor-sidebar__category">
  95. <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
  96. <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
  97. </section>
  98. </aside>
  99. <div class="phpdocumentor-column -nine phpdocumentor-content">
  100. <section>
  101. <ul class="phpdocumentor-breadcrumbs">
  102. <li class="phpdocumentor-breadcrumb"><a href="namespaces/chillerlan.html">chillerlan</a></li>
  103. <li class="phpdocumentor-breadcrumb"><a href="namespaces/chillerlan-qrcode.html">QRCode</a></li>
  104. <li class="phpdocumentor-breadcrumb"><a href="namespaces/chillerlan-qrcode-output.html">Output</a></li>
  105. </ul>
  106. <article class="phpdocumentor-element -class">
  107. <h2 class="phpdocumentor-content__title">
  108. QRMarkup
  109. <span class="phpdocumentor-element__extends">
  110. extends <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html"><abbr title="\chillerlan\QRCode\Output\QROutputAbstract">QROutputAbstract</abbr></a>
  111. </span>
  112. <div class="phpdocumentor-element__package">
  113. in package
  114. <ul class="phpdocumentor-breadcrumbs">
  115. <li class="phpdocumentor-breadcrumb"><a href="packages/Application.html">Application</a></li>
  116. </ul>
  117. </div>
  118. </h2>
  119. <div class="phpdocumentor-label-line">
  120. <div class="phpdocumentor-label phpdocumentor-label--success"><span>Abstract</span><span>Yes</span></div>
  121. </div>
  122. <aside class="phpdocumentor-element-found-in">
  123. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QRMarkup.php"><a href="files/src-output-qrmarkup.html"><abbr title="src/Output/QRMarkup.php">QRMarkup.php</abbr></a></abbr>
  124. :
  125. <span class="phpdocumentor-element-found-in__line">18</span>
  126. </aside>
  127. <p class="phpdocumentor-summary">Abstract for markup types: HTML, SVG, ... XML anyone?</p>
  128. <h3 id="toc">
  129. Table of Contents
  130. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#toc" class="headerlink"><i class="fas fa-link"></i></a>
  131. </h3>
  132. <h4 id="toc-properties">
  133. Properties
  134. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#toc-properties" class="headerlink"><i class="fas fa-link"></i></a>
  135. </h4>
  136. <dl class="phpdocumentor-table-of-contents">
  137. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  138. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_circleRadius">$circleRadius</a>
  139. <span>
  140. &nbsp;: float </span>
  141. </dt>
  142. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  143. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_connectPaths">$connectPaths</a>
  144. <span>
  145. &nbsp;: bool </span>
  146. </dt>
  147. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  148. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_drawCircularModules">$drawCircularModules</a>
  149. <span>
  150. &nbsp;: bool </span>
  151. </dt>
  152. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  153. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_drawLightModules">$drawLightModules</a>
  154. <span>
  155. &nbsp;: bool </span>
  156. </dt>
  157. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  158. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_eol">$eol</a>
  159. <span>
  160. &nbsp;: string </span>
  161. </dt>
  162. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  163. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_excludeFromConnect">$excludeFromConnect</a>
  164. <span>
  165. &nbsp;: array&lt;string|int, mixed&gt; </span>
  166. </dt>
  167. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  168. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_keepAsSquare">$keepAsSquare</a>
  169. <span>
  170. &nbsp;: array&lt;string|int, mixed&gt; </span>
  171. </dt>
  172. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  173. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_length">$length</a>
  174. <span>
  175. &nbsp;: int </span>
  176. </dt>
  177. <dd>the side length of the QR image (modules * scale)</dd>
  178. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  179. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_matrix">$matrix</a>
  180. <span>
  181. &nbsp;: <a href="classes/chillerlan-QRCode-Data-QRMatrix.html"><abbr title="\chillerlan\QRCode\Data\QRMatrix">QRMatrix</abbr></a> </span>
  182. </dt>
  183. <dd>the (filled) data matrix object</dd>
  184. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  185. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_moduleCount">$moduleCount</a>
  186. <span>
  187. &nbsp;: int </span>
  188. </dt>
  189. <dd>the current size of the QR matrix</dd>
  190. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  191. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_moduleValues">$moduleValues</a>
  192. <span>
  193. &nbsp;: array&lt;string|int, mixed&gt; </span>
  194. </dt>
  195. <dd>an (optional) array of color values for the several QR matrix parts</dd>
  196. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  197. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_options">$options</a>
  198. <span>
  199. &nbsp;: <abbr title="\chillerlan\Settings\SettingsContainerInterface">SettingsContainerInterface</abbr>|<a href="classes/chillerlan-QRCode-QROptions.html"><abbr title="\chillerlan\QRCode\QROptions">QROptions</abbr></a> </span>
  200. </dt>
  201. <dt class="phpdocumentor-table-of-contents__entry -property -protected">
  202. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_scale">$scale</a>
  203. <span>
  204. &nbsp;: int </span>
  205. </dt>
  206. </dl>
  207. <h4 id="toc-methods">
  208. Methods
  209. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#toc-methods" class="headerlink"><i class="fas fa-link"></i></a>
  210. </h4>
  211. <dl class="phpdocumentor-table-of-contents">
  212. <dt class="phpdocumentor-table-of-contents__entry -method -public">
  213. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method___construct">__construct()</a>
  214. <span>
  215. &nbsp;: mixed </span>
  216. </dt>
  217. <dd>QROutputAbstract constructor.</dd>
  218. <dt class="phpdocumentor-table-of-contents__entry -method -public">
  219. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_dump">dump()</a>
  220. <span>
  221. &nbsp;: string </span>
  222. </dt>
  223. <dt class="phpdocumentor-table-of-contents__entry -method -public">
  224. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_moduleValueIsValid">moduleValueIsValid()</a>
  225. <span>
  226. &nbsp;: bool </span>
  227. </dt>
  228. <dd>note: we&#039;re not necessarily validating the several values, just checking the general syntax
  229. note: css4 colors are not included</dd>
  230. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  231. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_collectModules">collectModules()</a>
  232. <span>
  233. &nbsp;: array&lt;string|int, mixed&gt; </span>
  234. </dt>
  235. <dd>collects the modules per QRMatrix::M_* type and runs a $transform function on each module and
  236. returns an array with the transformed modules</dd>
  237. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  238. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_copyVars">copyVars()</a>
  239. <span>
  240. &nbsp;: void </span>
  241. </dt>
  242. <dd>Creates copies of several QROptions values to avoid calling the magic getters
  243. in long loops for a significant performance increase.</dd>
  244. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  245. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_createMarkup">createMarkup()</a>
  246. <span>
  247. &nbsp;: string </span>
  248. </dt>
  249. <dd>returns the fully parsed and rendered markup string for the given input</dd>
  250. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  251. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_getCssClass">getCssClass()</a>
  252. <span>
  253. &nbsp;: string </span>
  254. </dt>
  255. <dd>returns a string with all css classes for the current element</dd>
  256. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  257. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_getDefaultModuleValue">getDefaultModuleValue()</a>
  258. <span>
  259. &nbsp;: mixed|null </span>
  260. </dt>
  261. <dd>Returns a default value for either dark or light modules</dd>
  262. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  263. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_getModuleValue">getModuleValue()</a>
  264. <span>
  265. &nbsp;: mixed </span>
  266. </dt>
  267. <dd>Returns the prepared value for the given $M_TYPE</dd>
  268. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  269. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_getModuleValueAt">getModuleValueAt()</a>
  270. <span>
  271. &nbsp;: mixed|null </span>
  272. </dt>
  273. <dd>Returns the prepared module value at the given coordinate [$x, $y] (convenience)</dd>
  274. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  275. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_getOutputDimensions">getOutputDimensions()</a>
  276. <span>
  277. &nbsp;: array&lt;string|int, mixed&gt; </span>
  278. </dt>
  279. <dd>Returns a 2 element array with the current output width and height</dd>
  280. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  281. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_prepareModuleValue">prepareModuleValue()</a>
  282. <span>
  283. &nbsp;: mixed|null </span>
  284. </dt>
  285. <dd>Prepares the value for the given input ()</dd>
  286. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  287. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_saveToFile">saveToFile()</a>
  288. <span>
  289. &nbsp;: void </span>
  290. </dt>
  291. <dd>Saves the qr $data to a $file. If $file is null, nothing happens.</dd>
  292. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  293. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_setMatrixDimensions">setMatrixDimensions()</a>
  294. <span>
  295. &nbsp;: void </span>
  296. </dt>
  297. <dd>Sets/updates the matrix dimensions</dd>
  298. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  299. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_setModuleValues">setModuleValues()</a>
  300. <span>
  301. &nbsp;: void </span>
  302. </dt>
  303. <dd>Sets the initial module values</dd>
  304. <dt class="phpdocumentor-table-of-contents__entry -method -protected">
  305. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_toBase64DataURI">toBase64DataURI()</a>
  306. <span>
  307. &nbsp;: string </span>
  308. </dt>
  309. <dd>Returns a base64 data URI for the given string and mime type</dd>
  310. </dl>
  311. <section class="phpdocumentor-properties">
  312. <h3 class="phpdocumentor-elements__header" id="properties">
  313. Properties
  314. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#properties" class="headerlink"><i class="fas fa-link"></i></a>
  315. </h3>
  316. <article
  317. class="
  318. phpdocumentor-element
  319. -property
  320. -protected
  321. "
  322. >
  323. <h4 class="phpdocumentor-element__name" id="property_circleRadius">
  324. $circleRadius
  325. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_circleRadius" class="headerlink"><i class="fas fa-link"></i></a>
  326. <span class="phpdocumentor-element__modifiers">
  327. </span>
  328. </h4>
  329. <aside class="phpdocumentor-element-found-in">
  330. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  331. :
  332. <span class="phpdocumentor-element-found-in__line">65</span>
  333. </aside>
  334. <code class="phpdocumentor-code phpdocumentor-signature ">
  335. <span class="phpdocumentor-signature__visibility">protected</span>
  336. <span class="phpdocumentor-signature__type">float</span>
  337. <span class="phpdocumentor-signature__name">$circleRadius</span>
  338. </code>
  339. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  340. Tags
  341. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_circleRadius#tags" class="headerlink"><i class="fas fa-link"></i></a>
  342. </h5>
  343. <dl class="phpdocumentor-tag-list">
  344. <dt class="phpdocumentor-tag-list__entry">
  345. <span class="phpdocumentor-tag__name">see</span>
  346. </dt>
  347. <dd class="phpdocumentor-tag-list__definition">
  348. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\QROptions::$circleRadius">QROptions::$circleRadius</abbr></span>
  349. </dd>
  350. </dl>
  351. </article>
  352. <article
  353. class="
  354. phpdocumentor-element
  355. -property
  356. -protected
  357. "
  358. >
  359. <h4 class="phpdocumentor-element__name" id="property_connectPaths">
  360. $connectPaths
  361. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_connectPaths" class="headerlink"><i class="fas fa-link"></i></a>
  362. <span class="phpdocumentor-element__modifiers">
  363. </span>
  364. </h4>
  365. <aside class="phpdocumentor-element-found-in">
  366. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  367. :
  368. <span class="phpdocumentor-element-found-in__line">53</span>
  369. </aside>
  370. <code class="phpdocumentor-code phpdocumentor-signature ">
  371. <span class="phpdocumentor-signature__visibility">protected</span>
  372. <span class="phpdocumentor-signature__type">bool</span>
  373. <span class="phpdocumentor-signature__name">$connectPaths</span>
  374. </code>
  375. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  376. Tags
  377. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_connectPaths#tags" class="headerlink"><i class="fas fa-link"></i></a>
  378. </h5>
  379. <dl class="phpdocumentor-tag-list">
  380. <dt class="phpdocumentor-tag-list__entry">
  381. <span class="phpdocumentor-tag__name">see</span>
  382. </dt>
  383. <dd class="phpdocumentor-tag-list__definition">
  384. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\QROptions::$connectPaths">QROptions::$connectPaths</abbr></span>
  385. </dd>
  386. </dl>
  387. </article>
  388. <article
  389. class="
  390. phpdocumentor-element
  391. -property
  392. -protected
  393. "
  394. >
  395. <h4 class="phpdocumentor-element__name" id="property_drawCircularModules">
  396. $drawCircularModules
  397. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_drawCircularModules" class="headerlink"><i class="fas fa-link"></i></a>
  398. <span class="phpdocumentor-element__modifiers">
  399. </span>
  400. </h4>
  401. <aside class="phpdocumentor-element-found-in">
  402. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  403. :
  404. <span class="phpdocumentor-element-found-in__line">61</span>
  405. </aside>
  406. <code class="phpdocumentor-code phpdocumentor-signature ">
  407. <span class="phpdocumentor-signature__visibility">protected</span>
  408. <span class="phpdocumentor-signature__type">bool</span>
  409. <span class="phpdocumentor-signature__name">$drawCircularModules</span>
  410. </code>
  411. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  412. Tags
  413. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_drawCircularModules#tags" class="headerlink"><i class="fas fa-link"></i></a>
  414. </h5>
  415. <dl class="phpdocumentor-tag-list">
  416. <dt class="phpdocumentor-tag-list__entry">
  417. <span class="phpdocumentor-tag__name">see</span>
  418. </dt>
  419. <dd class="phpdocumentor-tag-list__definition">
  420. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\QROptions::$drawCircularModules">QROptions::$drawCircularModules</abbr></span>
  421. </dd>
  422. </dl>
  423. </article>
  424. <article
  425. class="
  426. phpdocumentor-element
  427. -property
  428. -protected
  429. "
  430. >
  431. <h4 class="phpdocumentor-element__name" id="property_drawLightModules">
  432. $drawLightModules
  433. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_drawLightModules" class="headerlink"><i class="fas fa-link"></i></a>
  434. <span class="phpdocumentor-element__modifiers">
  435. </span>
  436. </h4>
  437. <aside class="phpdocumentor-element-found-in">
  438. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  439. :
  440. <span class="phpdocumentor-element-found-in__line">59</span>
  441. </aside>
  442. <code class="phpdocumentor-code phpdocumentor-signature ">
  443. <span class="phpdocumentor-signature__visibility">protected</span>
  444. <span class="phpdocumentor-signature__type">bool</span>
  445. <span class="phpdocumentor-signature__name">$drawLightModules</span>
  446. </code>
  447. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  448. Tags
  449. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_drawLightModules#tags" class="headerlink"><i class="fas fa-link"></i></a>
  450. </h5>
  451. <dl class="phpdocumentor-tag-list">
  452. <dt class="phpdocumentor-tag-list__entry">
  453. <span class="phpdocumentor-tag__name">see</span>
  454. </dt>
  455. <dd class="phpdocumentor-tag-list__definition">
  456. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\QROptions::$drawLightModules">QROptions::$drawLightModules</abbr></span>
  457. </dd>
  458. </dl>
  459. </article>
  460. <article
  461. class="
  462. phpdocumentor-element
  463. -property
  464. -protected
  465. "
  466. >
  467. <h4 class="phpdocumentor-element__name" id="property_eol">
  468. $eol
  469. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_eol" class="headerlink"><i class="fas fa-link"></i></a>
  470. <span class="phpdocumentor-element__modifiers">
  471. </span>
  472. </h4>
  473. <aside class="phpdocumentor-element-found-in">
  474. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  475. :
  476. <span class="phpdocumentor-element-found-in__line">57</span>
  477. </aside>
  478. <code class="phpdocumentor-code phpdocumentor-signature ">
  479. <span class="phpdocumentor-signature__visibility">protected</span>
  480. <span class="phpdocumentor-signature__type">string</span>
  481. <span class="phpdocumentor-signature__name">$eol</span>
  482. </code>
  483. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  484. Tags
  485. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_eol#tags" class="headerlink"><i class="fas fa-link"></i></a>
  486. </h5>
  487. <dl class="phpdocumentor-tag-list">
  488. <dt class="phpdocumentor-tag-list__entry">
  489. <span class="phpdocumentor-tag__name">see</span>
  490. </dt>
  491. <dd class="phpdocumentor-tag-list__definition">
  492. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\QROptions::$eol">QROptions::$eol</abbr></span>
  493. </dd>
  494. </dl>
  495. </article>
  496. <article
  497. class="
  498. phpdocumentor-element
  499. -property
  500. -protected
  501. "
  502. >
  503. <h4 class="phpdocumentor-element__name" id="property_excludeFromConnect">
  504. $excludeFromConnect
  505. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_excludeFromConnect" class="headerlink"><i class="fas fa-link"></i></a>
  506. <span class="phpdocumentor-element__modifiers">
  507. </span>
  508. </h4>
  509. <aside class="phpdocumentor-element-found-in">
  510. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  511. :
  512. <span class="phpdocumentor-element-found-in__line">55</span>
  513. </aside>
  514. <code class="phpdocumentor-code phpdocumentor-signature ">
  515. <span class="phpdocumentor-signature__visibility">protected</span>
  516. <span class="phpdocumentor-signature__type">array&lt;string|int, mixed&gt;</span>
  517. <span class="phpdocumentor-signature__name">$excludeFromConnect</span>
  518. </code>
  519. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  520. Tags
  521. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_excludeFromConnect#tags" class="headerlink"><i class="fas fa-link"></i></a>
  522. </h5>
  523. <dl class="phpdocumentor-tag-list">
  524. <dt class="phpdocumentor-tag-list__entry">
  525. <span class="phpdocumentor-tag__name">see</span>
  526. </dt>
  527. <dd class="phpdocumentor-tag-list__definition">
  528. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\QROptions::$excludeFromConnect">QROptions::$excludeFromConnect</abbr></span>
  529. </dd>
  530. </dl>
  531. </article>
  532. <article
  533. class="
  534. phpdocumentor-element
  535. -property
  536. -protected
  537. "
  538. >
  539. <h4 class="phpdocumentor-element__name" id="property_keepAsSquare">
  540. $keepAsSquare
  541. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_keepAsSquare" class="headerlink"><i class="fas fa-link"></i></a>
  542. <span class="phpdocumentor-element__modifiers">
  543. </span>
  544. </h4>
  545. <aside class="phpdocumentor-element-found-in">
  546. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  547. :
  548. <span class="phpdocumentor-element-found-in__line">63</span>
  549. </aside>
  550. <code class="phpdocumentor-code phpdocumentor-signature ">
  551. <span class="phpdocumentor-signature__visibility">protected</span>
  552. <span class="phpdocumentor-signature__type">array&lt;string|int, mixed&gt;</span>
  553. <span class="phpdocumentor-signature__name">$keepAsSquare</span>
  554. </code>
  555. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  556. Tags
  557. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_keepAsSquare#tags" class="headerlink"><i class="fas fa-link"></i></a>
  558. </h5>
  559. <dl class="phpdocumentor-tag-list">
  560. <dt class="phpdocumentor-tag-list__entry">
  561. <span class="phpdocumentor-tag__name">see</span>
  562. </dt>
  563. <dd class="phpdocumentor-tag-list__definition">
  564. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\QROptions::$keepAsSquare">QROptions::$keepAsSquare</abbr></span>
  565. </dd>
  566. </dl>
  567. </article>
  568. <article
  569. class="
  570. phpdocumentor-element
  571. -property
  572. -protected
  573. "
  574. >
  575. <h4 class="phpdocumentor-element__name" id="property_length">
  576. $length
  577. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_length" class="headerlink"><i class="fas fa-link"></i></a>
  578. <span class="phpdocumentor-element__modifiers">
  579. </span>
  580. </h4>
  581. <aside class="phpdocumentor-element-found-in">
  582. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  583. :
  584. <span class="phpdocumentor-element-found-in__line">33</span>
  585. </aside>
  586. <p class="phpdocumentor-summary">the side length of the QR image (modules * scale)</p>
  587. <code class="phpdocumentor-code phpdocumentor-signature ">
  588. <span class="phpdocumentor-signature__visibility">protected</span>
  589. <span class="phpdocumentor-signature__type">int</span>
  590. <span class="phpdocumentor-signature__name">$length</span>
  591. </code>
  592. </article>
  593. <article
  594. class="
  595. phpdocumentor-element
  596. -property
  597. -protected
  598. "
  599. >
  600. <h4 class="phpdocumentor-element__name" id="property_matrix">
  601. $matrix
  602. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_matrix" class="headerlink"><i class="fas fa-link"></i></a>
  603. <span class="phpdocumentor-element__modifiers">
  604. </span>
  605. </h4>
  606. <aside class="phpdocumentor-element-found-in">
  607. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  608. :
  609. <span class="phpdocumentor-element-found-in__line">43</span>
  610. </aside>
  611. <p class="phpdocumentor-summary">the (filled) data matrix object</p>
  612. <code class="phpdocumentor-code phpdocumentor-signature ">
  613. <span class="phpdocumentor-signature__visibility">protected</span>
  614. <span class="phpdocumentor-signature__type"><a href="classes/chillerlan-QRCode-Data-QRMatrix.html"><abbr title="\chillerlan\QRCode\Data\QRMatrix">QRMatrix</abbr></a></span>
  615. <span class="phpdocumentor-signature__name">$matrix</span>
  616. </code>
  617. </article>
  618. <article
  619. class="
  620. phpdocumentor-element
  621. -property
  622. -protected
  623. "
  624. >
  625. <h4 class="phpdocumentor-element__name" id="property_moduleCount">
  626. $moduleCount
  627. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_moduleCount" class="headerlink"><i class="fas fa-link"></i></a>
  628. <span class="phpdocumentor-element__modifiers">
  629. </span>
  630. </h4>
  631. <aside class="phpdocumentor-element-found-in">
  632. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  633. :
  634. <span class="phpdocumentor-element-found-in__line">28</span>
  635. </aside>
  636. <p class="phpdocumentor-summary">the current size of the QR matrix</p>
  637. <code class="phpdocumentor-code phpdocumentor-signature ">
  638. <span class="phpdocumentor-signature__visibility">protected</span>
  639. <span class="phpdocumentor-signature__type">int</span>
  640. <span class="phpdocumentor-signature__name">$moduleCount</span>
  641. </code>
  642. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  643. Tags
  644. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_moduleCount#tags" class="headerlink"><i class="fas fa-link"></i></a>
  645. </h5>
  646. <dl class="phpdocumentor-tag-list">
  647. <dt class="phpdocumentor-tag-list__entry">
  648. <span class="phpdocumentor-tag__name">see</span>
  649. </dt>
  650. <dd class="phpdocumentor-tag-list__definition">
  651. <span class="phpdocumentor-tag-link"><a href="classes/chillerlan-QRCode-Data-QRMatrix.html#method_getSize"><abbr title="\chillerlan\QRCode\Data\QRMatrix::getSize()">QRMatrix::getSize()</abbr></a></span>
  652. </dd>
  653. </dl>
  654. </article>
  655. <article
  656. class="
  657. phpdocumentor-element
  658. -property
  659. -protected
  660. "
  661. >
  662. <h4 class="phpdocumentor-element__name" id="property_moduleValues">
  663. $moduleValues
  664. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_moduleValues" class="headerlink"><i class="fas fa-link"></i></a>
  665. <span class="phpdocumentor-element__modifiers">
  666. </span>
  667. </h4>
  668. <aside class="phpdocumentor-element-found-in">
  669. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  670. :
  671. <span class="phpdocumentor-element-found-in__line">38</span>
  672. </aside>
  673. <p class="phpdocumentor-summary">an (optional) array of color values for the several QR matrix parts</p>
  674. <code class="phpdocumentor-code phpdocumentor-signature ">
  675. <span class="phpdocumentor-signature__visibility">protected</span>
  676. <span class="phpdocumentor-signature__type">array&lt;string|int, mixed&gt;</span>
  677. <span class="phpdocumentor-signature__name">$moduleValues</span>
  678. </code>
  679. </article>
  680. <article
  681. class="
  682. phpdocumentor-element
  683. -property
  684. -protected
  685. "
  686. >
  687. <h4 class="phpdocumentor-element__name" id="property_options">
  688. $options
  689. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_options" class="headerlink"><i class="fas fa-link"></i></a>
  690. <span class="phpdocumentor-element__modifiers">
  691. </span>
  692. </h4>
  693. <aside class="phpdocumentor-element-found-in">
  694. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  695. :
  696. <span class="phpdocumentor-element-found-in__line">48</span>
  697. </aside>
  698. <code class="phpdocumentor-code phpdocumentor-signature ">
  699. <span class="phpdocumentor-signature__visibility">protected</span>
  700. <span class="phpdocumentor-signature__type"><abbr title="\chillerlan\Settings\SettingsContainerInterface">SettingsContainerInterface</abbr>|<a href="classes/chillerlan-QRCode-QROptions.html"><abbr title="\chillerlan\QRCode\QROptions">QROptions</abbr></a></span>
  701. <span class="phpdocumentor-signature__name">$options</span>
  702. </code>
  703. </article>
  704. <article
  705. class="
  706. phpdocumentor-element
  707. -property
  708. -protected
  709. "
  710. >
  711. <h4 class="phpdocumentor-element__name" id="property_scale">
  712. $scale
  713. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_scale" class="headerlink"><i class="fas fa-link"></i></a>
  714. <span class="phpdocumentor-element__modifiers">
  715. </span>
  716. </h4>
  717. <aside class="phpdocumentor-element-found-in">
  718. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  719. :
  720. <span class="phpdocumentor-element-found-in__line">51</span>
  721. </aside>
  722. <code class="phpdocumentor-code phpdocumentor-signature ">
  723. <span class="phpdocumentor-signature__visibility">protected</span>
  724. <span class="phpdocumentor-signature__type">int</span>
  725. <span class="phpdocumentor-signature__name">$scale</span>
  726. </code>
  727. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  728. Tags
  729. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_scale#tags" class="headerlink"><i class="fas fa-link"></i></a>
  730. </h5>
  731. <dl class="phpdocumentor-tag-list">
  732. <dt class="phpdocumentor-tag-list__entry">
  733. <span class="phpdocumentor-tag__name">see</span>
  734. </dt>
  735. <dd class="phpdocumentor-tag-list__definition">
  736. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\QROptions::$scale">QROptions::$scale</abbr></span>
  737. </dd>
  738. </dl>
  739. </article>
  740. </section>
  741. <section class="phpdocumentor-methods">
  742. <h3 class="phpdocumentor-elements__header" id="methods">
  743. Methods
  744. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
  745. </h3>
  746. <article
  747. class="phpdocumentor-element
  748. -method
  749. -public
  750. "
  751. >
  752. <h4 class="phpdocumentor-element__name" id="method___construct">
  753. __construct()
  754. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method___construct" class="headerlink"><i class="fas fa-link"></i></a>
  755. </h4>
  756. <aside class="phpdocumentor-element-found-in">
  757. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  758. :
  759. <span class="phpdocumentor-element-found-in__line">70</span>
  760. </aside>
  761. <p class="phpdocumentor-summary">QROutputAbstract constructor.</p>
  762. <code class="phpdocumentor-code phpdocumentor-signature ">
  763. <span class="phpdocumentor-signature__visibility">public</span>
  764. <span class="phpdocumentor-signature__name">__construct</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type"><abbr title="\chillerlan\Settings\SettingsContainerInterface">SettingsContainerInterface</abbr>&nbsp;</span><span class="phpdocumentor-signature__argument__name">$options</span></span><span class="phpdocumentor-signature__argument"><span>, </span><span class="phpdocumentor-signature__argument__return-type"><a href="classes/chillerlan-QRCode-Data-QRMatrix.html"><abbr title="\chillerlan\QRCode\Data\QRMatrix">QRMatrix</abbr></a>&nbsp;</span><span class="phpdocumentor-signature__argument__name">$matrix</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">mixed</span></code>
  765. <div class="phpdocumentor-label-line">
  766. </div>
  767. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  768. <dl class="phpdocumentor-argument-list">
  769. <dt class="phpdocumentor-argument-list__entry">
  770. <span class="phpdocumentor-signature__argument__name">$options</span>
  771. : <span class="phpdocumentor-signature__argument__return-type"><abbr title="\chillerlan\Settings\SettingsContainerInterface">SettingsContainerInterface</abbr></span>
  772. </dt>
  773. <dd class="phpdocumentor-argument-list__definition">
  774. </dd>
  775. <dt class="phpdocumentor-argument-list__entry">
  776. <span class="phpdocumentor-signature__argument__name">$matrix</span>
  777. : <span class="phpdocumentor-signature__argument__return-type"><a href="classes/chillerlan-QRCode-Data-QRMatrix.html"><abbr title="\chillerlan\QRCode\Data\QRMatrix">QRMatrix</abbr></a></span>
  778. </dt>
  779. <dd class="phpdocumentor-argument-list__definition">
  780. </dd>
  781. </dl>
  782. </article>
  783. <article
  784. class="phpdocumentor-element
  785. -method
  786. -public
  787. "
  788. >
  789. <h4 class="phpdocumentor-element__name" id="method_dump">
  790. dump()
  791. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_dump" class="headerlink"><i class="fas fa-link"></i></a>
  792. </h4>
  793. <aside class="phpdocumentor-element-found-in">
  794. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QRMarkup.php"><a href="files/src-output-qrmarkup.html"><abbr title="src/Output/QRMarkup.php">QRMarkup.php</abbr></a></abbr>
  795. :
  796. <span class="phpdocumentor-element-found-in__line">74</span>
  797. </aside>
  798. <code class="phpdocumentor-code phpdocumentor-signature ">
  799. <span class="phpdocumentor-signature__visibility">public</span>
  800. <span class="phpdocumentor-signature__name">dump</span><span>(</span><span class="phpdocumentor-signature__argument"><span>[</span><span class="phpdocumentor-signature__argument__return-type">string&nbsp;</span><span class="phpdocumentor-signature__argument__name">$file</span><span> = </span><span class="phpdocumentor-signature__argument__default-value">null</span><span> ]</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">string</span></code>
  801. <div class="phpdocumentor-label-line">
  802. </div>
  803. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  804. <dl class="phpdocumentor-argument-list">
  805. <dt class="phpdocumentor-argument-list__entry">
  806. <span class="phpdocumentor-signature__argument__name">$file</span>
  807. : <span class="phpdocumentor-signature__argument__return-type">string</span>
  808. = <span class="phpdocumentor-signature__argument__default-value">null</span> </dt>
  809. <dd class="phpdocumentor-argument-list__definition">
  810. </dd>
  811. </dl>
  812. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  813. Tags
  814. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_dump#tags" class="headerlink"><i class="fas fa-link"></i></a>
  815. </h5>
  816. <dl class="phpdocumentor-tag-list">
  817. <dt class="phpdocumentor-tag-list__entry">
  818. <span class="phpdocumentor-tag__name">inheritDoc</span>
  819. </dt>
  820. <dd class="phpdocumentor-tag-list__definition">
  821. </dd>
  822. </dl>
  823. <section>
  824. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  825. <span class="phpdocumentor-signature__response_type">string</span>
  826. </section>
  827. </article>
  828. <article
  829. class="phpdocumentor-element
  830. -method
  831. -public
  832. -static "
  833. >
  834. <h4 class="phpdocumentor-element__name" id="method_moduleValueIsValid">
  835. moduleValueIsValid()
  836. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_moduleValueIsValid" class="headerlink"><i class="fas fa-link"></i></a>
  837. </h4>
  838. <aside class="phpdocumentor-element-found-in">
  839. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QRMarkup.php"><a href="files/src-output-qrmarkup.html"><abbr title="src/Output/QRMarkup.php">QRMarkup.php</abbr></a></abbr>
  840. :
  841. <span class="phpdocumentor-element-found-in__line">29</span>
  842. </aside>
  843. <p class="phpdocumentor-summary">note: we&#039;re not necessarily validating the several values, just checking the general syntax
  844. note: css4 colors are not included</p>
  845. <code class="phpdocumentor-code phpdocumentor-signature ">
  846. <span class="phpdocumentor-signature__visibility">public</span>
  847. <span class="phpdocumentor-signature__static">static</span> <span class="phpdocumentor-signature__name">moduleValueIsValid</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">mixed&nbsp;</span><span class="phpdocumentor-signature__argument__name">$value</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">bool</span></code>
  848. <div class="phpdocumentor-label-line">
  849. </div>
  850. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  851. <dl class="phpdocumentor-argument-list">
  852. <dt class="phpdocumentor-argument-list__entry">
  853. <span class="phpdocumentor-signature__argument__name">$value</span>
  854. : <span class="phpdocumentor-signature__argument__return-type">mixed</span>
  855. </dt>
  856. <dd class="phpdocumentor-argument-list__definition">
  857. </dd>
  858. </dl>
  859. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  860. Tags
  861. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_moduleValueIsValid#tags" class="headerlink"><i class="fas fa-link"></i></a>
  862. </h5>
  863. <dl class="phpdocumentor-tag-list">
  864. <dt class="phpdocumentor-tag-list__entry">
  865. <span class="phpdocumentor-tag__name">todo:</span>
  866. </dt>
  867. <dd class="phpdocumentor-tag-list__definition">
  868. <section class="phpdocumentor-description"><p>XSS proof</p>
  869. </section>
  870. </dd>
  871. <dt class="phpdocumentor-tag-list__entry">
  872. <span class="phpdocumentor-tag__name">see</span>
  873. </dt>
  874. <dd class="phpdocumentor-tag-list__definition">
  875. <span class="phpdocumentor-tag-link"><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value">https://developer.mozilla.org/en-US/docs/Web/CSS/color_value</a></span>
  876. </dd>
  877. <dt class="phpdocumentor-tag-list__entry">
  878. <span class="phpdocumentor-tag__name">inheritDoc</span>
  879. </dt>
  880. <dd class="phpdocumentor-tag-list__definition">
  881. </dd>
  882. </dl>
  883. <section>
  884. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  885. <span class="phpdocumentor-signature__response_type">bool</span>
  886. </section>
  887. </article>
  888. <article
  889. class="phpdocumentor-element
  890. -method
  891. -protected
  892. "
  893. >
  894. <h4 class="phpdocumentor-element__name" id="method_collectModules">
  895. collectModules()
  896. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_collectModules" class="headerlink"><i class="fas fa-link"></i></a>
  897. </h4>
  898. <aside class="phpdocumentor-element-found-in">
  899. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  900. :
  901. <span class="phpdocumentor-element-found-in__line">227</span>
  902. </aside>
  903. <p class="phpdocumentor-summary">collects the modules per QRMatrix::M_* type and runs a $transform function on each module and
  904. returns an array with the transformed modules</p>
  905. <code class="phpdocumentor-code phpdocumentor-signature ">
  906. <span class="phpdocumentor-signature__visibility">protected</span>
  907. <span class="phpdocumentor-signature__name">collectModules</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type"><abbr title="\Closure">Closure</abbr>&nbsp;</span><span class="phpdocumentor-signature__argument__name">$transform</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">array&lt;string|int, mixed&gt;</span></code>
  908. <div class="phpdocumentor-label-line">
  909. </div>
  910. <section class="phpdocumentor-description"><p>The transform callback is called with the following parameters:</p>
  911. <p>$x - current column
  912. $y - current row
  913. $M_TYPE - field value
  914. $M_TYPE_LAYER - (possibly modified) field value that acts as layer id</p>
  915. </section>
  916. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  917. <dl class="phpdocumentor-argument-list">
  918. <dt class="phpdocumentor-argument-list__entry">
  919. <span class="phpdocumentor-signature__argument__name">$transform</span>
  920. : <span class="phpdocumentor-signature__argument__return-type"><abbr title="\Closure">Closure</abbr></span>
  921. </dt>
  922. <dd class="phpdocumentor-argument-list__definition">
  923. </dd>
  924. </dl>
  925. <section>
  926. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  927. <span class="phpdocumentor-signature__response_type">array&lt;string|int, mixed&gt;</span>
  928. </section>
  929. </article>
  930. <article
  931. class="phpdocumentor-element
  932. -method
  933. -protected
  934. "
  935. >
  936. <h4 class="phpdocumentor-element__name" id="method_copyVars">
  937. copyVars()
  938. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_copyVars" class="headerlink"><i class="fas fa-link"></i></a>
  939. </h4>
  940. <aside class="phpdocumentor-element-found-in">
  941. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  942. :
  943. <span class="phpdocumentor-element-found-in__line">89</span>
  944. </aside>
  945. <p class="phpdocumentor-summary">Creates copies of several QROptions values to avoid calling the magic getters
  946. in long loops for a significant performance increase.</p>
  947. <code class="phpdocumentor-code phpdocumentor-signature ">
  948. <span class="phpdocumentor-signature__visibility">protected</span>
  949. <span class="phpdocumentor-signature__name">copyVars</span><span>(</span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  950. <div class="phpdocumentor-label-line">
  951. </div>
  952. <section class="phpdocumentor-description"><p>These variables are usually used in the &quot;module&quot; methods and are called up to 31329 times (at version 40).</p>
  953. </section>
  954. </article>
  955. <article
  956. class="phpdocumentor-element
  957. -method
  958. -protected
  959. -abstract "
  960. >
  961. <h4 class="phpdocumentor-element__name" id="method_createMarkup">
  962. createMarkup()
  963. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_createMarkup" class="headerlink"><i class="fas fa-link"></i></a>
  964. </h4>
  965. <aside class="phpdocumentor-element-found-in">
  966. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QRMarkup.php"><a href="files/src-output-qrmarkup.html"><abbr title="src/Output/QRMarkup.php">QRMarkup.php</abbr></a></abbr>
  967. :
  968. <span class="phpdocumentor-element-found-in__line">92</span>
  969. </aside>
  970. <p class="phpdocumentor-summary">returns the fully parsed and rendered markup string for the given input</p>
  971. <code class="phpdocumentor-code phpdocumentor-signature ">
  972. <span class="phpdocumentor-signature__visibility">protected</span>
  973. <span class="phpdocumentor-signature__abstract">abstract</span> <span class="phpdocumentor-signature__name">createMarkup</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">bool&nbsp;</span><span class="phpdocumentor-signature__argument__name">$saveToFile</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">string</span></code>
  974. <div class="phpdocumentor-label-line">
  975. </div>
  976. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  977. <dl class="phpdocumentor-argument-list">
  978. <dt class="phpdocumentor-argument-list__entry">
  979. <span class="phpdocumentor-signature__argument__name">$saveToFile</span>
  980. : <span class="phpdocumentor-signature__argument__return-type">bool</span>
  981. </dt>
  982. <dd class="phpdocumentor-argument-list__definition">
  983. </dd>
  984. </dl>
  985. <section>
  986. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  987. <span class="phpdocumentor-signature__response_type">string</span>
  988. </section>
  989. </article>
  990. <article
  991. class="phpdocumentor-element
  992. -method
  993. -protected
  994. "
  995. >
  996. <h4 class="phpdocumentor-element__name" id="method_getCssClass">
  997. getCssClass()
  998. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_getCssClass" class="headerlink"><i class="fas fa-link"></i></a>
  999. </h4>
  1000. <aside class="phpdocumentor-element-found-in">
  1001. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QRMarkup.php"><a href="files/src-output-qrmarkup.html"><abbr title="src/Output/QRMarkup.php">QRMarkup.php</abbr></a></abbr>
  1002. :
  1003. <span class="phpdocumentor-element-found-in__line">85</span>
  1004. </aside>
  1005. <p class="phpdocumentor-summary">returns a string with all css classes for the current element</p>
  1006. <code class="phpdocumentor-code phpdocumentor-signature ">
  1007. <span class="phpdocumentor-signature__visibility">protected</span>
  1008. <span class="phpdocumentor-signature__name">getCssClass</span><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">$M_TYPE</span><span> = </span><span class="phpdocumentor-signature__argument__default-value">0</span><span> ]</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">string</span></code>
  1009. <div class="phpdocumentor-label-line">
  1010. </div>
  1011. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  1012. <dl class="phpdocumentor-argument-list">
  1013. <dt class="phpdocumentor-argument-list__entry">
  1014. <span class="phpdocumentor-signature__argument__name">$M_TYPE</span>
  1015. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  1016. = <span class="phpdocumentor-signature__argument__default-value">0</span> </dt>
  1017. <dd class="phpdocumentor-argument-list__definition">
  1018. </dd>
  1019. </dl>
  1020. <section>
  1021. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  1022. <span class="phpdocumentor-signature__response_type">string</span>
  1023. </section>
  1024. </article>
  1025. <article
  1026. class="phpdocumentor-element
  1027. -method
  1028. -protected
  1029. "
  1030. >
  1031. <h4 class="phpdocumentor-element__name" id="method_getDefaultModuleValue">
  1032. getDefaultModuleValue()
  1033. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_getDefaultModuleValue" class="headerlink"><i class="fas fa-link"></i></a>
  1034. </h4>
  1035. <aside class="phpdocumentor-element-found-in">
  1036. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QRMarkup.php"><a href="files/src-output-qrmarkup.html"><abbr title="src/Output/QRMarkup.php">QRMarkup.php</abbr></a></abbr>
  1037. :
  1038. <span class="phpdocumentor-element-found-in__line">67</span>
  1039. </aside>
  1040. <p class="phpdocumentor-summary">Returns a default value for either dark or light modules</p>
  1041. <code class="phpdocumentor-code phpdocumentor-signature ">
  1042. <span class="phpdocumentor-signature__visibility">protected</span>
  1043. <span class="phpdocumentor-signature__name">getDefaultModuleValue</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">bool&nbsp;</span><span class="phpdocumentor-signature__argument__name">$isDark</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">mixed|null</span></code>
  1044. <div class="phpdocumentor-label-line">
  1045. </div>
  1046. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  1047. <dl class="phpdocumentor-argument-list">
  1048. <dt class="phpdocumentor-argument-list__entry">
  1049. <span class="phpdocumentor-signature__argument__name">$isDark</span>
  1050. : <span class="phpdocumentor-signature__argument__return-type">bool</span>
  1051. </dt>
  1052. <dd class="phpdocumentor-argument-list__definition">
  1053. </dd>
  1054. </dl>
  1055. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1056. Tags
  1057. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_getDefaultModuleValue#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1058. </h5>
  1059. <dl class="phpdocumentor-tag-list">
  1060. <dt class="phpdocumentor-tag-list__entry">
  1061. <span class="phpdocumentor-tag__name">inheritDoc</span>
  1062. </dt>
  1063. <dd class="phpdocumentor-tag-list__definition">
  1064. </dd>
  1065. </dl>
  1066. <section>
  1067. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  1068. <span class="phpdocumentor-signature__response_type">mixed|null</span>
  1069. &mdash;
  1070. <section class="phpdocumentor-description"><p>return value depends on the output class</p>
  1071. </section>
  1072. </section>
  1073. </article>
  1074. <article
  1075. class="phpdocumentor-element
  1076. -method
  1077. -protected
  1078. "
  1079. >
  1080. <h4 class="phpdocumentor-element__name" id="method_getModuleValue">
  1081. getModuleValue()
  1082. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_getModuleValue" class="headerlink"><i class="fas fa-link"></i></a>
  1083. </h4>
  1084. <aside class="phpdocumentor-element-found-in">
  1085. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  1086. :
  1087. <span class="phpdocumentor-element-found-in__line">152</span>
  1088. </aside>
  1089. <p class="phpdocumentor-summary">Returns the prepared value for the given $M_TYPE</p>
  1090. <code class="phpdocumentor-code phpdocumentor-signature ">
  1091. <span class="phpdocumentor-signature__visibility">protected</span>
  1092. <span class="phpdocumentor-signature__name">getModuleValue</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">int&nbsp;</span><span class="phpdocumentor-signature__argument__name">$M_TYPE</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">mixed</span></code>
  1093. <div class="phpdocumentor-label-line">
  1094. </div>
  1095. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  1096. <dl class="phpdocumentor-argument-list">
  1097. <dt class="phpdocumentor-argument-list__entry">
  1098. <span class="phpdocumentor-signature__argument__name">$M_TYPE</span>
  1099. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  1100. </dt>
  1101. <dd class="phpdocumentor-argument-list__definition">
  1102. </dd>
  1103. </dl>
  1104. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1105. Tags
  1106. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_getModuleValue#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1107. </h5>
  1108. <dl class="phpdocumentor-tag-list">
  1109. <dt class="phpdocumentor-tag-list__entry">
  1110. <span class="phpdocumentor-tag__name">throws</span>
  1111. </dt>
  1112. <dd class="phpdocumentor-tag-list__definition">
  1113. <span class="phpdocumentor-tag-link"><a href="classes/chillerlan-QRCode-Output-QRCodeOutputException.html"><abbr title="\chillerlan\QRCode\Output\QRCodeOutputException">QRCodeOutputException</abbr></a></span>
  1114. <section class="phpdocumentor-description"><p>if $moduleValues[$M_TYPE] doesn't exist</p>
  1115. </section>
  1116. </dd>
  1117. </dl>
  1118. <section>
  1119. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  1120. <span class="phpdocumentor-signature__response_type">mixed</span>
  1121. &mdash;
  1122. <section class="phpdocumentor-description"><p>return value depends on the output class</p>
  1123. </section>
  1124. </section>
  1125. </article>
  1126. <article
  1127. class="phpdocumentor-element
  1128. -method
  1129. -protected
  1130. "
  1131. >
  1132. <h4 class="phpdocumentor-element__name" id="method_getModuleValueAt">
  1133. getModuleValueAt()
  1134. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_getModuleValueAt" class="headerlink"><i class="fas fa-link"></i></a>
  1135. </h4>
  1136. <aside class="phpdocumentor-element-found-in">
  1137. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  1138. :
  1139. <span class="phpdocumentor-element-found-in__line">166</span>
  1140. </aside>
  1141. <p class="phpdocumentor-summary">Returns the prepared module value at the given coordinate [$x, $y] (convenience)</p>
  1142. <code class="phpdocumentor-code phpdocumentor-signature ">
  1143. <span class="phpdocumentor-signature__visibility">protected</span>
  1144. <span class="phpdocumentor-signature__name">getModuleValueAt</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">int&nbsp;</span><span class="phpdocumentor-signature__argument__name">$x</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">$y</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">mixed|null</span></code>
  1145. <div class="phpdocumentor-label-line">
  1146. </div>
  1147. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  1148. <dl class="phpdocumentor-argument-list">
  1149. <dt class="phpdocumentor-argument-list__entry">
  1150. <span class="phpdocumentor-signature__argument__name">$x</span>
  1151. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  1152. </dt>
  1153. <dd class="phpdocumentor-argument-list__definition">
  1154. </dd>
  1155. <dt class="phpdocumentor-argument-list__entry">
  1156. <span class="phpdocumentor-signature__argument__name">$y</span>
  1157. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  1158. </dt>
  1159. <dd class="phpdocumentor-argument-list__definition">
  1160. </dd>
  1161. </dl>
  1162. <section>
  1163. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  1164. <span class="phpdocumentor-signature__response_type">mixed|null</span>
  1165. </section>
  1166. </article>
  1167. <article
  1168. class="phpdocumentor-element
  1169. -method
  1170. -protected
  1171. "
  1172. >
  1173. <h4 class="phpdocumentor-element__name" id="method_getOutputDimensions">
  1174. getOutputDimensions()
  1175. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_getOutputDimensions" class="headerlink"><i class="fas fa-link"></i></a>
  1176. </h4>
  1177. <aside class="phpdocumentor-element-found-in">
  1178. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  1179. :
  1180. <span class="phpdocumentor-element-found-in__line">123</span>
  1181. </aside>
  1182. <p class="phpdocumentor-summary">Returns a 2 element array with the current output width and height</p>
  1183. <code class="phpdocumentor-code phpdocumentor-signature ">
  1184. <span class="phpdocumentor-signature__visibility">protected</span>
  1185. <span class="phpdocumentor-signature__name">getOutputDimensions</span><span>(</span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">array&lt;string|int, mixed&gt;</span></code>
  1186. <div class="phpdocumentor-label-line">
  1187. </div>
  1188. <section class="phpdocumentor-description"><p>The type and units of the values depend on the output class. The default value is the current module count * scale.</p>
  1189. </section>
  1190. <section>
  1191. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  1192. <span class="phpdocumentor-signature__response_type">array&lt;string|int, mixed&gt;</span>
  1193. </section>
  1194. </article>
  1195. <article
  1196. class="phpdocumentor-element
  1197. -method
  1198. -protected
  1199. "
  1200. >
  1201. <h4 class="phpdocumentor-element__name" id="method_prepareModuleValue">
  1202. prepareModuleValue()
  1203. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_prepareModuleValue" class="headerlink"><i class="fas fa-link"></i></a>
  1204. </h4>
  1205. <aside class="phpdocumentor-element-found-in">
  1206. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QRMarkup.php"><a href="files/src-output-qrmarkup.html"><abbr title="src/Output/QRMarkup.php">QRMarkup.php</abbr></a></abbr>
  1207. :
  1208. <span class="phpdocumentor-element-found-in__line">60</span>
  1209. </aside>
  1210. <p class="phpdocumentor-summary">Prepares the value for the given input ()</p>
  1211. <code class="phpdocumentor-code phpdocumentor-signature ">
  1212. <span class="phpdocumentor-signature__visibility">protected</span>
  1213. <span class="phpdocumentor-signature__name">prepareModuleValue</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">mixed&nbsp;</span><span class="phpdocumentor-signature__argument__name">$value</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">mixed|null</span></code>
  1214. <div class="phpdocumentor-label-line">
  1215. </div>
  1216. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  1217. <dl class="phpdocumentor-argument-list">
  1218. <dt class="phpdocumentor-argument-list__entry">
  1219. <span class="phpdocumentor-signature__argument__name">$value</span>
  1220. : <span class="phpdocumentor-signature__argument__return-type">mixed</span>
  1221. </dt>
  1222. <dd class="phpdocumentor-argument-list__definition">
  1223. </dd>
  1224. </dl>
  1225. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1226. Tags
  1227. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_prepareModuleValue#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1228. </h5>
  1229. <dl class="phpdocumentor-tag-list">
  1230. <dt class="phpdocumentor-tag-list__entry">
  1231. <span class="phpdocumentor-tag__name">inheritDoc</span>
  1232. </dt>
  1233. <dd class="phpdocumentor-tag-list__definition">
  1234. </dd>
  1235. </dl>
  1236. <section>
  1237. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  1238. <span class="phpdocumentor-signature__response_type">mixed|null</span>
  1239. &mdash;
  1240. <section class="phpdocumentor-description"><p>return value depends on the output class</p>
  1241. </section>
  1242. </section>
  1243. </article>
  1244. <article
  1245. class="phpdocumentor-element
  1246. -method
  1247. -protected
  1248. "
  1249. >
  1250. <h4 class="phpdocumentor-element__name" id="method_saveToFile">
  1251. saveToFile()
  1252. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_saveToFile" class="headerlink"><i class="fas fa-link"></i></a>
  1253. </h4>
  1254. <aside class="phpdocumentor-element-found-in">
  1255. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  1256. :
  1257. <span class="phpdocumentor-element-found-in__line">201</span>
  1258. </aside>
  1259. <p class="phpdocumentor-summary">Saves the qr $data to a $file. If $file is null, nothing happens.</p>
  1260. <code class="phpdocumentor-code phpdocumentor-signature ">
  1261. <span class="phpdocumentor-signature__visibility">protected</span>
  1262. <span class="phpdocumentor-signature__name">saveToFile</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">string&nbsp;</span><span class="phpdocumentor-signature__argument__name">$data</span></span><span class="phpdocumentor-signature__argument"><span>[</span><span>, </span><span class="phpdocumentor-signature__argument__return-type">string&nbsp;</span><span class="phpdocumentor-signature__argument__name">$file</span><span> = </span><span class="phpdocumentor-signature__argument__default-value">null</span><span> ]</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  1263. <div class="phpdocumentor-label-line">
  1264. </div>
  1265. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  1266. <dl class="phpdocumentor-argument-list">
  1267. <dt class="phpdocumentor-argument-list__entry">
  1268. <span class="phpdocumentor-signature__argument__name">$data</span>
  1269. : <span class="phpdocumentor-signature__argument__return-type">string</span>
  1270. </dt>
  1271. <dd class="phpdocumentor-argument-list__definition">
  1272. </dd>
  1273. <dt class="phpdocumentor-argument-list__entry">
  1274. <span class="phpdocumentor-signature__argument__name">$file</span>
  1275. : <span class="phpdocumentor-signature__argument__return-type">string</span>
  1276. = <span class="phpdocumentor-signature__argument__default-value">null</span> </dt>
  1277. <dd class="phpdocumentor-argument-list__definition">
  1278. </dd>
  1279. </dl>
  1280. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1281. Tags
  1282. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_saveToFile#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1283. </h5>
  1284. <dl class="phpdocumentor-tag-list">
  1285. <dt class="phpdocumentor-tag-list__entry">
  1286. <span class="phpdocumentor-tag__name">see</span>
  1287. </dt>
  1288. <dd class="phpdocumentor-tag-list__definition">
  1289. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\Output\file_put_contents()">file_put_contents()</abbr></span>
  1290. </dd>
  1291. <dt class="phpdocumentor-tag-list__entry">
  1292. <span class="phpdocumentor-tag__name">see</span>
  1293. </dt>
  1294. <dd class="phpdocumentor-tag-list__definition">
  1295. <span class="phpdocumentor-tag-link"><abbr title="\chillerlan\QRCode\QROptions::$cachefile">QROptions::$cachefile</abbr></span>
  1296. </dd>
  1297. <dt class="phpdocumentor-tag-list__entry">
  1298. <span class="phpdocumentor-tag__name">throws</span>
  1299. </dt>
  1300. <dd class="phpdocumentor-tag-list__definition">
  1301. <span class="phpdocumentor-tag-link"><a href="classes/chillerlan-QRCode-Output-QRCodeOutputException.html"><abbr title="\chillerlan\QRCode\Output\QRCodeOutputException">QRCodeOutputException</abbr></a></span>
  1302. </dd>
  1303. </dl>
  1304. </article>
  1305. <article
  1306. class="phpdocumentor-element
  1307. -method
  1308. -protected
  1309. "
  1310. >
  1311. <h4 class="phpdocumentor-element__name" id="method_setMatrixDimensions">
  1312. setMatrixDimensions()
  1313. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_setMatrixDimensions" class="headerlink"><i class="fas fa-link"></i></a>
  1314. </h4>
  1315. <aside class="phpdocumentor-element-found-in">
  1316. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  1317. :
  1318. <span class="phpdocumentor-element-found-in__line">112</span>
  1319. </aside>
  1320. <p class="phpdocumentor-summary">Sets/updates the matrix dimensions</p>
  1321. <code class="phpdocumentor-code phpdocumentor-signature ">
  1322. <span class="phpdocumentor-signature__visibility">protected</span>
  1323. <span class="phpdocumentor-signature__name">setMatrixDimensions</span><span>(</span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  1324. <div class="phpdocumentor-label-line">
  1325. </div>
  1326. <section class="phpdocumentor-description"><p>Call this method if you modify the matrix from within your custom module in case the dimensions have been changed</p>
  1327. </section>
  1328. </article>
  1329. <article
  1330. class="phpdocumentor-element
  1331. -method
  1332. -protected
  1333. "
  1334. >
  1335. <h4 class="phpdocumentor-element__name" id="method_setModuleValues">
  1336. setModuleValues()
  1337. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_setModuleValues" class="headerlink"><i class="fas fa-link"></i></a>
  1338. </h4>
  1339. <aside class="phpdocumentor-element-found-in">
  1340. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  1341. :
  1342. <span class="phpdocumentor-element-found-in__line">130</span>
  1343. </aside>
  1344. <p class="phpdocumentor-summary">Sets the initial module values</p>
  1345. <code class="phpdocumentor-code phpdocumentor-signature ">
  1346. <span class="phpdocumentor-signature__visibility">protected</span>
  1347. <span class="phpdocumentor-signature__name">setModuleValues</span><span>(</span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">void</span></code>
  1348. <div class="phpdocumentor-label-line">
  1349. </div>
  1350. </article>
  1351. <article
  1352. class="phpdocumentor-element
  1353. -method
  1354. -protected
  1355. "
  1356. >
  1357. <h4 class="phpdocumentor-element__name" id="method_toBase64DataURI">
  1358. toBase64DataURI()
  1359. <a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_toBase64DataURI" class="headerlink"><i class="fas fa-link"></i></a>
  1360. </h4>
  1361. <aside class="phpdocumentor-element-found-in">
  1362. <abbr class="phpdocumentor-element-found-in__file" title="src/Output/QROutputAbstract.php"><a href="files/src-output-qroutputabstract.html"><abbr title="src/Output/QROutputAbstract.php">QROutputAbstract.php</abbr></a></abbr>
  1363. :
  1364. <span class="phpdocumentor-element-found-in__line">189</span>
  1365. </aside>
  1366. <p class="phpdocumentor-summary">Returns a base64 data URI for the given string and mime type</p>
  1367. <code class="phpdocumentor-code phpdocumentor-signature ">
  1368. <span class="phpdocumentor-signature__visibility">protected</span>
  1369. <span class="phpdocumentor-signature__name">toBase64DataURI</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">string&nbsp;</span><span class="phpdocumentor-signature__argument__name">$data</span></span><span class="phpdocumentor-signature__argument"><span>, </span><span class="phpdocumentor-signature__argument__return-type">string&nbsp;</span><span class="phpdocumentor-signature__argument__name">$mime</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">string</span></code>
  1370. <div class="phpdocumentor-label-line">
  1371. </div>
  1372. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  1373. <dl class="phpdocumentor-argument-list">
  1374. <dt class="phpdocumentor-argument-list__entry">
  1375. <span class="phpdocumentor-signature__argument__name">$data</span>
  1376. : <span class="phpdocumentor-signature__argument__return-type">string</span>
  1377. </dt>
  1378. <dd class="phpdocumentor-argument-list__definition">
  1379. </dd>
  1380. <dt class="phpdocumentor-argument-list__entry">
  1381. <span class="phpdocumentor-signature__argument__name">$mime</span>
  1382. : <span class="phpdocumentor-signature__argument__return-type">string</span>
  1383. </dt>
  1384. <dd class="phpdocumentor-argument-list__definition">
  1385. </dd>
  1386. </dl>
  1387. <section>
  1388. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  1389. <span class="phpdocumentor-signature__response_type">string</span>
  1390. </section>
  1391. </article>
  1392. </section>
  1393. <div class="phpdocumentor-modal" id="source-view">
  1394. <div class="phpdocumentor-modal-bg" data-exit-button></div>
  1395. <div class="phpdocumentor-modal-container">
  1396. <div class="phpdocumentor-modal-content">
  1397. <pre style="max-height: 500px; overflow-y: scroll" data-src="files/src/Output/QRMarkup.php.txt" class="language-php line-numbers linkable-line-numbers"></pre>
  1398. </div>
  1399. <button data-exit-button class="phpdocumentor-modal__close">&times;</button>
  1400. </div>
  1401. </div>
  1402. <script type="text/javascript">
  1403. (function () {
  1404. function loadExternalCodeSnippet(el, url, line) {
  1405. Array.prototype.slice.call(el.querySelectorAll('pre[data-src]')).forEach((pre) => {
  1406. const src = url || pre.getAttribute('data-src').replace(/\\/g, '/');
  1407. const language = 'php';
  1408. const code = document.createElement('code');
  1409. code.className = 'language-' + language;
  1410. pre.textContent = '';
  1411. pre.setAttribute('data-line', line)
  1412. code.textContent = 'Loading…';
  1413. pre.appendChild(code);
  1414. var xhr = new XMLHttpRequest();
  1415. xhr.open('GET', src, true);
  1416. xhr.onreadystatechange = function () {
  1417. if (xhr.readyState !== 4) {
  1418. return;
  1419. }
  1420. if (xhr.status < 400 && xhr.responseText) {
  1421. code.textContent = xhr.responseText;
  1422. Prism.highlightElement(code);
  1423. return;
  1424. }
  1425. if (xhr.status === 404) {
  1426. code.textContent = '✖ Error: File could not be found';
  1427. return;
  1428. }
  1429. if (xhr.status >= 400) {
  1430. code.textContent = '✖ Error ' + xhr.status + ' while fetching file: ' + xhr.statusText;
  1431. return;
  1432. }
  1433. code.textContent = '✖ Error: An unknown error occurred';
  1434. };
  1435. xhr.send(null);
  1436. });
  1437. }
  1438. const modalButtons = document.querySelectorAll("[data-modal]");
  1439. const openedAsLocalFile = window.location.protocol === 'file:';
  1440. if (modalButtons.length > 0 && openedAsLocalFile) {
  1441. console.warn(
  1442. 'Viewing the source code is unavailable because you are opening this page from the file:// scheme; ' +
  1443. 'browsers block XHR requests when a page is opened this way'
  1444. );
  1445. }
  1446. modalButtons.forEach(function (trigger) {
  1447. if (openedAsLocalFile) {
  1448. trigger.setAttribute("hidden", "hidden");
  1449. }
  1450. trigger.addEventListener("click", function (event) {
  1451. event.preventDefault();
  1452. const modal = document.getElementById(trigger.dataset.modal);
  1453. if (!modal) {
  1454. console.error(`Modal with id "${trigger.dataset.modal}" could not be found`);
  1455. return;
  1456. }
  1457. modal.classList.add("phpdocumentor-modal__open");
  1458. loadExternalCodeSnippet(modal, trigger.dataset.src || null, trigger.dataset.line)
  1459. const exits = modal.querySelectorAll("[data-exit-button]");
  1460. exits.forEach(function (exit) {
  1461. exit.addEventListener("click", function (event) {
  1462. event.preventDefault();
  1463. modal.classList.remove("phpdocumentor-modal__open");
  1464. });
  1465. });
  1466. });
  1467. });
  1468. })();
  1469. </script>
  1470. </article>
  1471. </section>
  1472. <section class="phpdocumentor-on-this-page__sidebar">
  1473. <section class="phpdocumentor-on-this-page__content">
  1474. <strong class="phpdocumentor-on-this-page__title">On this page</strong>
  1475. <ul class="phpdocumentor-list -clean">
  1476. <li class="phpdocumentor-on-this-page-section__title">Table Of Contents</li>
  1477. <li>
  1478. <ul class="phpdocumentor-list -clean">
  1479. <li><a href="classes/chillerlan-QRCode-Output-QRMarkup.html#toc-properties">Properties</a></li>
  1480. <li><a href="classes/chillerlan-QRCode-Output-QRMarkup.html#toc-methods">Methods</a></li>
  1481. </ul>
  1482. </li>
  1483. <li class="phpdocumentor-on-this-page-section__title">Properties</li>
  1484. <li>
  1485. <ul class="phpdocumentor-list -clean">
  1486. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_circleRadius">$circleRadius<a href="classes/chillerlan-QRCode-Output-QRMarkup.html"></li>
  1487. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_connectPaths">$connectPaths<a href="classes/chillerlan-QRCode-Output-QRMarkup.html"></li>
  1488. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_drawCircularModules">$drawCircularModules<a href="classes/chillerlan-QRCode-Output-QRMarkup.html"></li>
  1489. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_drawLightModules">$drawLightModules<a href="classes/chillerlan-QRCode-Output-QRMarkup.html"></li>
  1490. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_eol">$eol<a href="classes/chillerlan-QRCode-Output-QRMarkup.html"></li>
  1491. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_excludeFromConnect">$excludeFromConnect<a href="classes/chillerlan-QRCode-Output-QRMarkup.html"></li>
  1492. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_keepAsSquare">$keepAsSquare<a href="classes/chillerlan-QRCode-Output-QRMarkup.html"></li>
  1493. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_length">$length<a href="classes/chillerlan-QRCode-Output-QRMarkup.html"></li>
  1494. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_matrix">$matrix<a href="classes/chillerlan-QRCode-Output-QRMarkup.html"></li>
  1495. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_moduleCount">$moduleCount<a href="classes/chillerlan-QRCode-Output-QRMarkup.html"></li>
  1496. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_moduleValues">$moduleValues<a href="classes/chillerlan-QRCode-Output-QRMarkup.html"></li>
  1497. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_options">$options<a href="classes/chillerlan-QRCode-Output-QRMarkup.html"></li>
  1498. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#property_scale">$scale<a href="classes/chillerlan-QRCode-Output-QRMarkup.html"></li>
  1499. </ul>
  1500. </li>
  1501. <li class="phpdocumentor-on-this-page-section__title">Methods</li>
  1502. <li>
  1503. <ul class="phpdocumentor-list -clean">
  1504. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method___construct">__construct()</a></li>
  1505. <li><a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_dump">dump()</a></li>
  1506. <li><a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_moduleValueIsValid">moduleValueIsValid()</a></li>
  1507. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_collectModules">collectModules()</a></li>
  1508. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_copyVars">copyVars()</a></li>
  1509. <li><a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_createMarkup">createMarkup()</a></li>
  1510. <li><a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_getCssClass">getCssClass()</a></li>
  1511. <li><a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_getDefaultModuleValue">getDefaultModuleValue()</a></li>
  1512. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_getModuleValue">getModuleValue()</a></li>
  1513. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_getModuleValueAt">getModuleValueAt()</a></li>
  1514. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_getOutputDimensions">getOutputDimensions()</a></li>
  1515. <li><a href="classes/chillerlan-QRCode-Output-QRMarkup.html#method_prepareModuleValue">prepareModuleValue()</a></li>
  1516. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_saveToFile">saveToFile()</a></li>
  1517. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_setMatrixDimensions">setMatrixDimensions()</a></li>
  1518. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_setModuleValues">setModuleValues()</a></li>
  1519. <li><a href="classes/chillerlan-QRCode-Output-QROutputAbstract.html#method_toBase64DataURI">toBase64DataURI()</a></li>
  1520. </ul>
  1521. </li>
  1522. </ul>
  1523. </section>
  1524. </section>
  1525. </div>
  1526. <section data-search-results class="phpdocumentor-search-results phpdocumentor-search-results--hidden">
  1527. <section class="phpdocumentor-search-results__dialog">
  1528. <header class="phpdocumentor-search-results__header">
  1529. <h2 class="phpdocumentor-search-results__title">Search results</h2>
  1530. <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
  1531. </header>
  1532. <section class="phpdocumentor-search-results__body">
  1533. <ul class="phpdocumentor-search-results__entries"></ul>
  1534. </section>
  1535. </section>
  1536. </section>
  1537. </div>
  1538. <a href="classes/chillerlan-QRCode-Output-QRMarkup.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
  1539. </main>
  1540. <script>
  1541. cssVars({});
  1542. </script>
  1543. <script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/prism.min.js"></script>
  1544. <script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/autoloader/prism-autoloader.min.js"></script>
  1545. <script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/line-numbers/prism-line-numbers.min.js"></script>
  1546. <script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/line-highlight/prism-line-highlight.min.js"></script>
  1547. </body>
  1548. </html>