@walkhi/code-relax 0.1.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (713) hide show
  1. package/README.md +83 -0
  2. package/dist/bin/codex-remote.mjs +262 -0
  3. package/dist/bin/self-relay-demo.mjs +33 -0
  4. package/dist/bin/self-relay-server.mjs +50 -0
  5. package/dist/get-lan-networks.ps1 +40 -0
  6. package/dist/get-shared-service-url.ps1 +6 -0
  7. package/dist/shared/app-server-events.cjs +266 -0
  8. package/dist/shared/p2p-diagnostics.cjs +28 -0
  9. package/dist/shared/server-requests.cjs +67 -0
  10. package/dist/shared/timeline-sync.cjs +67 -0
  11. package/dist/skills/code-relax/SKILL.md +17 -0
  12. package/dist/src/app-server-client.mjs +468 -0
  13. package/dist/src/app-server-tasks.mjs +355 -0
  14. package/dist/src/background-process.mjs +18 -0
  15. package/dist/src/debug-ui.mjs +131 -0
  16. package/dist/src/desktop-launcher.mjs +51 -0
  17. package/dist/src/execution-health.mjs +26 -0
  18. package/dist/src/lan-socket-server.mjs +103 -0
  19. package/dist/src/managed-app-server.mjs +207 -0
  20. package/dist/src/message-images.mjs +27 -0
  21. package/dist/src/onboarding.mjs +31 -0
  22. package/dist/src/platform/README.md +12 -0
  23. package/dist/src/platform/linux/README.md +3 -0
  24. package/dist/src/platform/macos/README.md +3 -0
  25. package/dist/src/platform/windows/IsolatedProcess.cs +75 -0
  26. package/dist/src/platform/windows/background-process.mjs +25 -0
  27. package/dist/src/platform/windows/credential-store.mjs +27 -0
  28. package/dist/src/platform/windows/credential-store.ps1 +49 -0
  29. package/dist/src/platform/windows/desktop-host.mjs +38 -0
  30. package/dist/src/platform/windows/desktop-info.ps1 +16 -0
  31. package/dist/src/platform/windows/desktop-monitor.mjs +34 -0
  32. package/dist/src/platform/windows/desktop-shortcut-run.ps1 +5 -0
  33. package/dist/src/platform/windows/desktop-shortcuts.ps1 +28 -0
  34. package/dist/src/platform/windows/desktop-tools.mjs +48 -0
  35. package/dist/src/platform/windows/launch-worker.ps1 +13 -0
  36. package/dist/src/platform/windows/network-info.mjs +34 -0
  37. package/dist/src/platform/windows/resident-start.ps1 +7 -0
  38. package/dist/src/platform/windows/resident-startup.ps1 +27 -0
  39. package/dist/src/platform/windows/resolve-state-root.ps1 +14 -0
  40. package/dist/src/platform/windows/runtime-paths.mjs +20 -0
  41. package/dist/src/platform/windows/service-host.mjs +43 -0
  42. package/dist/src/platform/windows/start-hidden-console.ps1 +39 -0
  43. package/dist/src/platform/windows/stop-desktop.ps1 +19 -0
  44. package/dist/src/platform/windows/user-environment.mjs +50 -0
  45. package/dist/src/platform/windows/user-environment.ps1 +41 -0
  46. package/dist/src/self-relay/client.mjs +59 -0
  47. package/dist/src/self-relay/connector.mjs +147 -0
  48. package/dist/src/self-relay/debug-allowlist.mjs +33 -0
  49. package/dist/src/self-relay/demo.mjs +38 -0
  50. package/dist/src/self-relay/device-store.mjs +84 -0
  51. package/dist/src/self-relay/lan-authorizations.mjs +29 -0
  52. package/dist/src/self-relay/lifecycle.mjs +281 -0
  53. package/dist/src/self-relay/p2p-probe.mjs +83 -0
  54. package/dist/src/self-relay/server.mjs +340 -0
  55. package/dist/src/self-relay/windows-route-helper.mjs +75 -0
  56. package/dist/src/self-relay/wire.mjs +36 -0
  57. package/dist/src/server.mjs +2086 -0
  58. package/dist/src/service-control.mjs +72 -0
  59. package/dist/src/service-doctor.mjs +63 -0
  60. package/dist/src/service-health.mjs +33 -0
  61. package/dist/src/service-install.mjs +91 -0
  62. package/dist/src/service-lifecycle.mjs +130 -0
  63. package/dist/src/service-restart.mjs +48 -0
  64. package/dist/src/shared-app-server.mjs +356 -0
  65. package/dist/src/shared-catalog.mjs +60 -0
  66. package/dist/src/shared-recovery.mjs +142 -0
  67. package/dist/src/shared-thread-stream.mjs +80 -0
  68. package/dist/src/skill-install.mjs +64 -0
  69. package/dist/src/thread-catalog.mjs +42 -0
  70. package/dist/src/thread-title-generation.mjs +150 -0
  71. package/dist/tools/find-desktop-pipe.mjs +10 -0
  72. package/dist/tools/rtc-route-helper.ps1 +99 -0
  73. package/dist/tools/start-rtc-route-helper.ps1 +15 -0
  74. package/dist/web/approval-ui.js +188 -0
  75. package/dist/web/capabilities.js +57 -0
  76. package/dist/web/chat-transport.js +196 -0
  77. package/dist/web/chat.css +736 -0
  78. package/dist/web/chat.js +5149 -0
  79. package/dist/web/client-platform.js +11 -0
  80. package/dist/web/harmony-platform.js +51 -0
  81. package/dist/web/highlight-powershell.min.js +39 -0
  82. package/dist/web/highlight.min.js +1262 -0
  83. package/dist/web/history-cache.js +146 -0
  84. package/dist/web/index.html +222 -0
  85. package/dist/web/lan-session.js +122 -0
  86. package/dist/web/p2p-diagnostics.js +28 -0
  87. package/dist/web/p2p-probe.js +83 -0
  88. package/dist/web/resources.json +1 -0
  89. package/dist/web/self-relay-session.js +119 -0
  90. package/dist/web/server-requests.js +67 -0
  91. package/dist/web/timeline-sync.js +67 -0
  92. package/dist/web/vendor/README.md +14 -0
  93. package/dist/web/vendor/highlight-powershell.min.js +39 -0
  94. package/dist/web/vendor/highlight.LICENSE.txt +29 -0
  95. package/dist/web/vendor/highlight.min.js +1262 -0
  96. package/dist/web/vendor/markdown-it.LICENSE.txt +22 -0
  97. package/dist/web/vendor/markdown-it.umd.min.js +14 -0
  98. package/node_modules/@img/colour/LICENSE.md +82 -0
  99. package/node_modules/@img/colour/README.md +15 -0
  100. package/node_modules/@img/colour/color.cjs +1596 -0
  101. package/node_modules/@img/colour/index.cjs +1 -0
  102. package/node_modules/@img/colour/index.d.ts +929 -0
  103. package/node_modules/@img/colour/package.json +58 -0
  104. package/node_modules/@img/sharp-win32-x64/LICENSE +191 -0
  105. package/node_modules/@img/sharp-win32-x64/README.md +59 -0
  106. package/node_modules/@img/sharp-win32-x64/index.cjs +1 -0
  107. package/node_modules/@img/sharp-win32-x64/lib/libvips-42.dll +0 -0
  108. package/node_modules/@img/sharp-win32-x64/lib/libvips-cpp-8.18.6.dll +0 -0
  109. package/node_modules/@img/sharp-win32-x64/lib/sharp-win32-x64-0.35.4.node +0 -0
  110. package/node_modules/@img/sharp-win32-x64/package.json +40 -0
  111. package/node_modules/@img/sharp-win32-x64/versions.json +30 -0
  112. package/node_modules/@node-datachannel/win32-x64-msvc/node_datachannel.node +0 -0
  113. package/node_modules/@node-datachannel/win32-x64-msvc/package.json +20 -0
  114. package/node_modules/ansi-regex/index.d.ts +37 -0
  115. package/node_modules/ansi-regex/index.js +10 -0
  116. package/node_modules/ansi-regex/license +9 -0
  117. package/node_modules/ansi-regex/package.json +55 -0
  118. package/node_modules/ansi-regex/readme.md +78 -0
  119. package/node_modules/ansi-styles/index.d.ts +345 -0
  120. package/node_modules/ansi-styles/index.js +163 -0
  121. package/node_modules/ansi-styles/license +9 -0
  122. package/node_modules/ansi-styles/package.json +56 -0
  123. package/node_modules/ansi-styles/readme.md +152 -0
  124. package/node_modules/camelcase/index.d.ts +63 -0
  125. package/node_modules/camelcase/index.js +76 -0
  126. package/node_modules/camelcase/license +9 -0
  127. package/node_modules/camelcase/package.json +43 -0
  128. package/node_modules/camelcase/readme.md +99 -0
  129. package/node_modules/cliui/CHANGELOG.md +76 -0
  130. package/node_modules/cliui/LICENSE.txt +14 -0
  131. package/node_modules/cliui/README.md +115 -0
  132. package/node_modules/cliui/index.js +354 -0
  133. package/node_modules/cliui/package.json +65 -0
  134. package/node_modules/color-convert/CHANGELOG.md +54 -0
  135. package/node_modules/color-convert/LICENSE +21 -0
  136. package/node_modules/color-convert/README.md +68 -0
  137. package/node_modules/color-convert/conversions.js +839 -0
  138. package/node_modules/color-convert/index.js +81 -0
  139. package/node_modules/color-convert/package.json +48 -0
  140. package/node_modules/color-convert/route.js +97 -0
  141. package/node_modules/color-name/LICENSE +8 -0
  142. package/node_modules/color-name/README.md +11 -0
  143. package/node_modules/color-name/index.js +152 -0
  144. package/node_modules/color-name/package.json +28 -0
  145. package/node_modules/decamelize/index.js +13 -0
  146. package/node_modules/decamelize/license +21 -0
  147. package/node_modules/decamelize/package.json +38 -0
  148. package/node_modules/decamelize/readme.md +48 -0
  149. package/node_modules/detect-libc/LICENSE +201 -0
  150. package/node_modules/detect-libc/README.md +163 -0
  151. package/node_modules/detect-libc/index.d.ts +14 -0
  152. package/node_modules/detect-libc/lib/detect-libc.js +313 -0
  153. package/node_modules/detect-libc/lib/elf.js +39 -0
  154. package/node_modules/detect-libc/lib/filesystem.js +51 -0
  155. package/node_modules/detect-libc/lib/process.js +24 -0
  156. package/node_modules/detect-libc/package.json +44 -0
  157. package/node_modules/dijkstrajs/.travis.yml +4 -0
  158. package/node_modules/dijkstrajs/CONTRIBUTING.md +8 -0
  159. package/node_modules/dijkstrajs/LICENSE.md +19 -0
  160. package/node_modules/dijkstrajs/README.md +18 -0
  161. package/node_modules/dijkstrajs/dijkstra.js +165 -0
  162. package/node_modules/dijkstrajs/package.json +60 -0
  163. package/node_modules/dijkstrajs/test/dijkstra.test.js +96 -0
  164. package/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  165. package/node_modules/emoji-regex/README.md +73 -0
  166. package/node_modules/emoji-regex/es2015/index.js +6 -0
  167. package/node_modules/emoji-regex/es2015/text.js +6 -0
  168. package/node_modules/emoji-regex/index.d.ts +23 -0
  169. package/node_modules/emoji-regex/index.js +6 -0
  170. package/node_modules/emoji-regex/package.json +50 -0
  171. package/node_modules/emoji-regex/text.js +6 -0
  172. package/node_modules/find-up/index.d.ts +137 -0
  173. package/node_modules/find-up/index.js +89 -0
  174. package/node_modules/find-up/license +9 -0
  175. package/node_modules/find-up/package.json +53 -0
  176. package/node_modules/find-up/readme.md +156 -0
  177. package/node_modules/get-caller-file/LICENSE.md +6 -0
  178. package/node_modules/get-caller-file/README.md +41 -0
  179. package/node_modules/get-caller-file/index.d.ts +2 -0
  180. package/node_modules/get-caller-file/index.js +22 -0
  181. package/node_modules/get-caller-file/index.js.map +1 -0
  182. package/node_modules/get-caller-file/package.json +42 -0
  183. package/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
  184. package/node_modules/is-fullwidth-code-point/index.js +50 -0
  185. package/node_modules/is-fullwidth-code-point/license +9 -0
  186. package/node_modules/is-fullwidth-code-point/package.json +42 -0
  187. package/node_modules/is-fullwidth-code-point/readme.md +39 -0
  188. package/node_modules/locate-path/index.d.ts +83 -0
  189. package/node_modules/locate-path/index.js +65 -0
  190. package/node_modules/locate-path/license +9 -0
  191. package/node_modules/locate-path/package.json +45 -0
  192. package/node_modules/locate-path/readme.md +122 -0
  193. package/node_modules/node-datachannel/.clang-format +17 -0
  194. package/node_modules/node-datachannel/.editorconfig +12 -0
  195. package/node_modules/node-datachannel/.eslintignore +8 -0
  196. package/node_modules/node-datachannel/.eslintrc.json +27 -0
  197. package/node_modules/node-datachannel/.gitmodules +3 -0
  198. package/node_modules/node-datachannel/.prettierignore +7 -0
  199. package/node_modules/node-datachannel/.prettierrc +13 -0
  200. package/node_modules/node-datachannel/API.md +247 -0
  201. package/node_modules/node-datachannel/BULDING.md +26 -0
  202. package/node_modules/node-datachannel/CMakeLists.txt +153 -0
  203. package/node_modules/node-datachannel/LICENSE +373 -0
  204. package/node_modules/node-datachannel/README.md +129 -0
  205. package/node_modules/node-datachannel/dist/cjs/index.cjs +11 -0
  206. package/node_modules/node-datachannel/dist/cjs/index.cjs.map +1 -0
  207. package/node_modules/node-datachannel/dist/cjs/lib/datachannel-stream.cjs +101 -0
  208. package/node_modules/node-datachannel/dist/cjs/lib/datachannel-stream.cjs.map +1 -0
  209. package/node_modules/node-datachannel/dist/cjs/lib/index.cjs +91 -0
  210. package/node_modules/node-datachannel/dist/cjs/lib/index.cjs.map +1 -0
  211. package/node_modules/node-datachannel/dist/cjs/lib/node-datachannel.cjs +94 -0
  212. package/node_modules/node-datachannel/dist/cjs/lib/node-datachannel.cjs.map +1 -0
  213. package/node_modules/node-datachannel/dist/cjs/lib/websocket-server.cjs +45 -0
  214. package/node_modules/node-datachannel/dist/cjs/lib/websocket-server.cjs.map +1 -0
  215. package/node_modules/node-datachannel/dist/cjs/lib/websocket.cjs +8 -0
  216. package/node_modules/node-datachannel/dist/cjs/lib/websocket.cjs.map +1 -0
  217. package/node_modules/node-datachannel/dist/cjs/polyfill/Events.cjs +86 -0
  218. package/node_modules/node-datachannel/dist/cjs/polyfill/Events.cjs.map +1 -0
  219. package/node_modules/node-datachannel/dist/cjs/polyfill/Exception.cjs +34 -0
  220. package/node_modules/node-datachannel/dist/cjs/polyfill/Exception.cjs.map +1 -0
  221. package/node_modules/node-datachannel/dist/cjs/polyfill/RTCCertificate.cjs +34 -0
  222. package/node_modules/node-datachannel/dist/cjs/polyfill/RTCCertificate.cjs.map +1 -0
  223. package/node_modules/node-datachannel/dist/cjs/polyfill/RTCDataChannel.cjs +214 -0
  224. package/node_modules/node-datachannel/dist/cjs/polyfill/RTCDataChannel.cjs.map +1 -0
  225. package/node_modules/node-datachannel/dist/cjs/polyfill/RTCDtlsTransport.cjs +53 -0
  226. package/node_modules/node-datachannel/dist/cjs/polyfill/RTCDtlsTransport.cjs.map +1 -0
  227. package/node_modules/node-datachannel/dist/cjs/polyfill/RTCError.cjs +83 -0
  228. package/node_modules/node-datachannel/dist/cjs/polyfill/RTCError.cjs.map +1 -0
  229. package/node_modules/node-datachannel/dist/cjs/polyfill/RTCIceCandidate.cjs +132 -0
  230. package/node_modules/node-datachannel/dist/cjs/polyfill/RTCIceCandidate.cjs.map +1 -0
  231. package/node_modules/node-datachannel/dist/cjs/polyfill/RTCIceTransport.cjs +94 -0
  232. package/node_modules/node-datachannel/dist/cjs/polyfill/RTCIceTransport.cjs.map +1 -0
  233. package/node_modules/node-datachannel/dist/cjs/polyfill/RTCPeerConnection.cjs +434 -0
  234. package/node_modules/node-datachannel/dist/cjs/polyfill/RTCPeerConnection.cjs.map +1 -0
  235. package/node_modules/node-datachannel/dist/cjs/polyfill/RTCSctpTransport.cjs +59 -0
  236. package/node_modules/node-datachannel/dist/cjs/polyfill/RTCSctpTransport.cjs.map +1 -0
  237. package/node_modules/node-datachannel/dist/cjs/polyfill/RTCSessionDescription.cjs +45 -0
  238. package/node_modules/node-datachannel/dist/cjs/polyfill/RTCSessionDescription.cjs.map +1 -0
  239. package/node_modules/node-datachannel/dist/cjs/polyfill/index.cjs +42 -0
  240. package/node_modules/node-datachannel/dist/cjs/polyfill/index.cjs.map +1 -0
  241. package/node_modules/node-datachannel/dist/esm/index.mjs +8 -0
  242. package/node_modules/node-datachannel/dist/esm/index.mjs.map +1 -0
  243. package/node_modules/node-datachannel/dist/esm/lib/datachannel-stream.mjs +78 -0
  244. package/node_modules/node-datachannel/dist/esm/lib/datachannel-stream.mjs.map +1 -0
  245. package/node_modules/node-datachannel/dist/esm/lib/index.mjs +64 -0
  246. package/node_modules/node-datachannel/dist/esm/lib/index.mjs.map +1 -0
  247. package/node_modules/node-datachannel/dist/esm/lib/node-datachannel.mjs +78 -0
  248. package/node_modules/node-datachannel/dist/esm/lib/node-datachannel.mjs.map +1 -0
  249. package/node_modules/node-datachannel/dist/esm/lib/websocket-server.mjs +43 -0
  250. package/node_modules/node-datachannel/dist/esm/lib/websocket-server.mjs.map +1 -0
  251. package/node_modules/node-datachannel/dist/esm/lib/websocket.mjs +6 -0
  252. package/node_modules/node-datachannel/dist/esm/lib/websocket.mjs.map +1 -0
  253. package/node_modules/node-datachannel/dist/esm/polyfill/Events.mjs +82 -0
  254. package/node_modules/node-datachannel/dist/esm/polyfill/Events.mjs.map +1 -0
  255. package/node_modules/node-datachannel/dist/esm/polyfill/Exception.mjs +28 -0
  256. package/node_modules/node-datachannel/dist/esm/polyfill/Exception.mjs.map +1 -0
  257. package/node_modules/node-datachannel/dist/esm/polyfill/RTCCertificate.mjs +30 -0
  258. package/node_modules/node-datachannel/dist/esm/polyfill/RTCCertificate.mjs.map +1 -0
  259. package/node_modules/node-datachannel/dist/esm/polyfill/RTCDataChannel.mjs +210 -0
  260. package/node_modules/node-datachannel/dist/esm/polyfill/RTCDataChannel.mjs.map +1 -0
  261. package/node_modules/node-datachannel/dist/esm/polyfill/RTCDtlsTransport.mjs +49 -0
  262. package/node_modules/node-datachannel/dist/esm/polyfill/RTCDtlsTransport.mjs.map +1 -0
  263. package/node_modules/node-datachannel/dist/esm/polyfill/RTCError.mjs +79 -0
  264. package/node_modules/node-datachannel/dist/esm/polyfill/RTCError.mjs.map +1 -0
  265. package/node_modules/node-datachannel/dist/esm/polyfill/RTCIceCandidate.mjs +128 -0
  266. package/node_modules/node-datachannel/dist/esm/polyfill/RTCIceCandidate.mjs.map +1 -0
  267. package/node_modules/node-datachannel/dist/esm/polyfill/RTCIceTransport.mjs +89 -0
  268. package/node_modules/node-datachannel/dist/esm/polyfill/RTCIceTransport.mjs.map +1 -0
  269. package/node_modules/node-datachannel/dist/esm/polyfill/RTCPeerConnection.mjs +430 -0
  270. package/node_modules/node-datachannel/dist/esm/polyfill/RTCPeerConnection.mjs.map +1 -0
  271. package/node_modules/node-datachannel/dist/esm/polyfill/RTCSctpTransport.mjs +55 -0
  272. package/node_modules/node-datachannel/dist/esm/polyfill/RTCSctpTransport.mjs.map +1 -0
  273. package/node_modules/node-datachannel/dist/esm/polyfill/RTCSessionDescription.mjs +41 -0
  274. package/node_modules/node-datachannel/dist/esm/polyfill/RTCSessionDescription.mjs.map +1 -0
  275. package/node_modules/node-datachannel/dist/esm/polyfill/index.mjs +27 -0
  276. package/node_modules/node-datachannel/dist/esm/polyfill/index.mjs.map +1 -0
  277. package/node_modules/node-datachannel/dist/types/lib/datachannel-stream.d.ts +24 -0
  278. package/node_modules/node-datachannel/dist/types/lib/index.d.ts +241 -0
  279. package/node_modules/node-datachannel/dist/types/lib/types.d.ts +119 -0
  280. package/node_modules/node-datachannel/dist/types/lib/websocket-server.d.ts +13 -0
  281. package/node_modules/node-datachannel/dist/types/lib/websocket.d.ts +25 -0
  282. package/node_modules/node-datachannel/dist/types/polyfill/Events.d.ts +15 -0
  283. package/node_modules/node-datachannel/dist/types/polyfill/RTCCertificate.d.ts +9 -0
  284. package/node_modules/node-datachannel/dist/types/polyfill/RTCDataChannel.d.ts +29 -0
  285. package/node_modules/node-datachannel/dist/types/polyfill/RTCDtlsTransport.d.ts +15 -0
  286. package/node_modules/node-datachannel/dist/types/polyfill/RTCError.d.ts +17 -0
  287. package/node_modules/node-datachannel/dist/types/polyfill/RTCIceCandidate.d.ts +21 -0
  288. package/node_modules/node-datachannel/dist/types/polyfill/RTCIceTransport.d.ts +30 -0
  289. package/node_modules/node-datachannel/dist/types/polyfill/RTCPeerConnection.d.ts +64 -0
  290. package/node_modules/node-datachannel/dist/types/polyfill/RTCSctpTransport.d.ts +15 -0
  291. package/node_modules/node-datachannel/dist/types/polyfill/RTCSessionDescription.d.ts +10 -0
  292. package/node_modules/node-datachannel/dist/types/polyfill/index.d.ts +26 -0
  293. package/node_modules/node-datachannel/jest.config.ts +14 -0
  294. package/node_modules/node-datachannel/package.json +133 -0
  295. package/node_modules/node-datachannel/rollup.config.mjs +67 -0
  296. package/node_modules/node-datachannel/src/cpp/data-channel-wrapper.cpp +530 -0
  297. package/node_modules/node-datachannel/src/cpp/data-channel-wrapper.h +63 -0
  298. package/node_modules/node-datachannel/src/cpp/ice-udp-mux-listener-wrapper.cpp +172 -0
  299. package/node_modules/node-datachannel/src/cpp/ice-udp-mux-listener-wrapper.h +43 -0
  300. package/node_modules/node-datachannel/src/cpp/main.cpp +58 -0
  301. package/node_modules/node-datachannel/src/cpp/media-audio-wrapper.cpp +457 -0
  302. package/node_modules/node-datachannel/src/cpp/media-audio-wrapper.h +52 -0
  303. package/node_modules/node-datachannel/src/cpp/media-av1packetization.cpp +24 -0
  304. package/node_modules/node-datachannel/src/cpp/media-av1packetization.h +11 -0
  305. package/node_modules/node-datachannel/src/cpp/media-av1rtppacketizer-wrapper.cpp +126 -0
  306. package/node_modules/node-datachannel/src/cpp/media-av1rtppacketizer-wrapper.h +29 -0
  307. package/node_modules/node-datachannel/src/cpp/media-direction.cpp +43 -0
  308. package/node_modules/node-datachannel/src/cpp/media-direction.h +10 -0
  309. package/node_modules/node-datachannel/src/cpp/media-h264rtppacketizer-wrapper.cpp +126 -0
  310. package/node_modules/node-datachannel/src/cpp/media-h264rtppacketizer-wrapper.h +30 -0
  311. package/node_modules/node-datachannel/src/cpp/media-h265rtppacketizer-wrapper.cpp +126 -0
  312. package/node_modules/node-datachannel/src/cpp/media-h265rtppacketizer-wrapper.h +30 -0
  313. package/node_modules/node-datachannel/src/cpp/media-h26xseparator.cpp +32 -0
  314. package/node_modules/node-datachannel/src/cpp/media-h26xseparator.h +11 -0
  315. package/node_modules/node-datachannel/src/cpp/media-mediahandler-helper.cpp +31 -0
  316. package/node_modules/node-datachannel/src/cpp/media-mediahandler-helper.h +11 -0
  317. package/node_modules/node-datachannel/src/cpp/media-pacinghandler-wrapper.cpp +79 -0
  318. package/node_modules/node-datachannel/src/cpp/media-pacinghandler-wrapper.h +28 -0
  319. package/node_modules/node-datachannel/src/cpp/media-rtcpnackresponder-wrapper.cpp +68 -0
  320. package/node_modules/node-datachannel/src/cpp/media-rtcpnackresponder-wrapper.h +28 -0
  321. package/node_modules/node-datachannel/src/cpp/media-rtcpreceivingsession-wrapper.cpp +57 -0
  322. package/node_modules/node-datachannel/src/cpp/media-rtcpreceivingsession-wrapper.h +28 -0
  323. package/node_modules/node-datachannel/src/cpp/media-rtcpsrreporter-wrapper.cpp +93 -0
  324. package/node_modules/node-datachannel/src/cpp/media-rtcpsrreporter-wrapper.h +30 -0
  325. package/node_modules/node-datachannel/src/cpp/media-rtppacketizationconfig-wrapper.cpp +167 -0
  326. package/node_modules/node-datachannel/src/cpp/media-rtppacketizationconfig-wrapper.h +35 -0
  327. package/node_modules/node-datachannel/src/cpp/media-rtppacketizer-wrapper.cpp +95 -0
  328. package/node_modules/node-datachannel/src/cpp/media-rtppacketizer-wrapper.h +30 -0
  329. package/node_modules/node-datachannel/src/cpp/media-track-wrapper.cpp +458 -0
  330. package/node_modules/node-datachannel/src/cpp/media-track-wrapper.h +61 -0
  331. package/node_modules/node-datachannel/src/cpp/media-video-wrapper.cpp +526 -0
  332. package/node_modules/node-datachannel/src/cpp/media-video-wrapper.h +56 -0
  333. package/node_modules/node-datachannel/src/cpp/peer-connection-wrapper.cpp +1298 -0
  334. package/node_modules/node-datachannel/src/cpp/peer-connection-wrapper.h +89 -0
  335. package/node_modules/node-datachannel/src/cpp/rtc-wrapper.cpp +205 -0
  336. package/node_modules/node-datachannel/src/cpp/rtc-wrapper.h +24 -0
  337. package/node_modules/node-datachannel/src/cpp/thread-safe-callback.cpp +57 -0
  338. package/node_modules/node-datachannel/src/cpp/thread-safe-callback.h +47 -0
  339. package/node_modules/node-datachannel/src/cpp/web-socket-server-wrapper.cpp +275 -0
  340. package/node_modules/node-datachannel/src/cpp/web-socket-server-wrapper.h +41 -0
  341. package/node_modules/node-datachannel/src/cpp/web-socket-wrapper.cpp +796 -0
  342. package/node_modules/node-datachannel/src/cpp/web-socket-wrapper.h +63 -0
  343. package/node_modules/node-datachannel/src/index.ts +9 -0
  344. package/node_modules/node-datachannel/src/lib/datachannel-stream.ts +100 -0
  345. package/node_modules/node-datachannel/src/lib/index.ts +290 -0
  346. package/node_modules/node-datachannel/src/lib/node-datachannel.ts +84 -0
  347. package/node_modules/node-datachannel/src/lib/types.ts +169 -0
  348. package/node_modules/node-datachannel/src/lib/websocket-server.ts +37 -0
  349. package/node_modules/node-datachannel/src/lib/websocket.ts +26 -0
  350. package/node_modules/node-datachannel/src/polyfill/Events.ts +82 -0
  351. package/node_modules/node-datachannel/src/polyfill/Exception.ts +37 -0
  352. package/node_modules/node-datachannel/src/polyfill/README.md +41 -0
  353. package/node_modules/node-datachannel/src/polyfill/RTCCertificate.ts +21 -0
  354. package/node_modules/node-datachannel/src/polyfill/RTCDataChannel.ts +225 -0
  355. package/node_modules/node-datachannel/src/polyfill/RTCDtlsTransport.ts +46 -0
  356. package/node_modules/node-datachannel/src/polyfill/RTCError.ts +78 -0
  357. package/node_modules/node-datachannel/src/polyfill/RTCIceCandidate.ts +128 -0
  358. package/node_modules/node-datachannel/src/polyfill/RTCIceTransport.ts +90 -0
  359. package/node_modules/node-datachannel/src/polyfill/RTCPeerConnection.ts +527 -0
  360. package/node_modules/node-datachannel/src/polyfill/RTCSctpTransport.ts +51 -0
  361. package/node_modules/node-datachannel/src/polyfill/RTCSessionDescription.ts +41 -0
  362. package/node_modules/node-datachannel/src/polyfill/index.ts +38 -0
  363. package/node_modules/node-datachannel/tsconfig.json +21 -0
  364. package/node_modules/p-limit/index.d.ts +38 -0
  365. package/node_modules/p-limit/index.js +57 -0
  366. package/node_modules/p-limit/license +9 -0
  367. package/node_modules/p-limit/package.json +52 -0
  368. package/node_modules/p-limit/readme.md +101 -0
  369. package/node_modules/p-locate/index.d.ts +64 -0
  370. package/node_modules/p-locate/index.js +52 -0
  371. package/node_modules/p-locate/license +9 -0
  372. package/node_modules/p-locate/package.json +53 -0
  373. package/node_modules/p-locate/readme.md +90 -0
  374. package/node_modules/p-try/index.d.ts +39 -0
  375. package/node_modules/p-try/index.js +9 -0
  376. package/node_modules/p-try/license +9 -0
  377. package/node_modules/p-try/package.json +42 -0
  378. package/node_modules/p-try/readme.md +58 -0
  379. package/node_modules/path-exists/index.d.ts +28 -0
  380. package/node_modules/path-exists/index.js +23 -0
  381. package/node_modules/path-exists/license +9 -0
  382. package/node_modules/path-exists/package.json +39 -0
  383. package/node_modules/path-exists/readme.md +52 -0
  384. package/node_modules/pngjs/.eslintignore +2 -0
  385. package/node_modules/pngjs/.eslintrc.json +19 -0
  386. package/node_modules/pngjs/.prettierignore +3 -0
  387. package/node_modules/pngjs/LICENSE +20 -0
  388. package/node_modules/pngjs/README.md +429 -0
  389. package/node_modules/pngjs/browser.js +16096 -0
  390. package/node_modules/pngjs/coverage/lcov-report/base.css +354 -0
  391. package/node_modules/pngjs/coverage/lcov-report/bitmapper.js.html +881 -0
  392. package/node_modules/pngjs/coverage/lcov-report/bitpacker.js.html +554 -0
  393. package/node_modules/pngjs/coverage/lcov-report/block-navigation.js +77 -0
  394. package/node_modules/pngjs/coverage/lcov-report/chunkstream.js.html +647 -0
  395. package/node_modules/pngjs/coverage/lcov-report/constants.js.html +176 -0
  396. package/node_modules/pngjs/coverage/lcov-report/crc.js.html +200 -0
  397. package/node_modules/pngjs/coverage/lcov-report/favicon.png +0 -0
  398. package/node_modules/pngjs/coverage/lcov-report/filter-pack.js.html +593 -0
  399. package/node_modules/pngjs/coverage/lcov-report/filter-parse-async.js.html +152 -0
  400. package/node_modules/pngjs/coverage/lcov-report/filter-parse-sync.js.html +143 -0
  401. package/node_modules/pngjs/coverage/lcov-report/filter-parse.js.html +611 -0
  402. package/node_modules/pngjs/coverage/lcov-report/format-normaliser.js.html +359 -0
  403. package/node_modules/pngjs/coverage/lcov-report/index.html +426 -0
  404. package/node_modules/pngjs/coverage/lcov-report/interlace.js.html +365 -0
  405. package/node_modules/pngjs/coverage/lcov-report/packer-async.js.html +230 -0
  406. package/node_modules/pngjs/coverage/lcov-report/packer-sync.js.html +248 -0
  407. package/node_modules/pngjs/coverage/lcov-report/packer.js.html +467 -0
  408. package/node_modules/pngjs/coverage/lcov-report/paeth-predictor.js.html +128 -0
  409. package/node_modules/pngjs/coverage/lcov-report/parser-async.js.html +575 -0
  410. package/node_modules/pngjs/coverage/lcov-report/parser-sync.js.html +404 -0
  411. package/node_modules/pngjs/coverage/lcov-report/parser.js.html +950 -0
  412. package/node_modules/pngjs/coverage/lcov-report/png-sync.js.html +116 -0
  413. package/node_modules/pngjs/coverage/lcov-report/png.js.html +662 -0
  414. package/node_modules/pngjs/coverage/lcov-report/prettify.css +101 -0
  415. package/node_modules/pngjs/coverage/lcov-report/prettify.js +1007 -0
  416. package/node_modules/pngjs/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  417. package/node_modules/pngjs/coverage/lcov-report/sorter.js +169 -0
  418. package/node_modules/pngjs/coverage/lcov-report/sync-inflate.js.html +584 -0
  419. package/node_modules/pngjs/coverage/lcov-report/sync-reader.js.html +215 -0
  420. package/node_modules/pngjs/coverage/lcov.info +2177 -0
  421. package/node_modules/pngjs/lib/bitmapper.js +267 -0
  422. package/node_modules/pngjs/lib/bitpacker.js +158 -0
  423. package/node_modules/pngjs/lib/chunkstream.js +189 -0
  424. package/node_modules/pngjs/lib/constants.js +32 -0
  425. package/node_modules/pngjs/lib/crc.js +40 -0
  426. package/node_modules/pngjs/lib/filter-pack.js +171 -0
  427. package/node_modules/pngjs/lib/filter-parse-async.js +24 -0
  428. package/node_modules/pngjs/lib/filter-parse-sync.js +21 -0
  429. package/node_modules/pngjs/lib/filter-parse.js +177 -0
  430. package/node_modules/pngjs/lib/format-normaliser.js +93 -0
  431. package/node_modules/pngjs/lib/interlace.js +95 -0
  432. package/node_modules/pngjs/lib/packer-async.js +50 -0
  433. package/node_modules/pngjs/lib/packer-sync.js +56 -0
  434. package/node_modules/pngjs/lib/packer.js +129 -0
  435. package/node_modules/pngjs/lib/paeth-predictor.js +16 -0
  436. package/node_modules/pngjs/lib/parser-async.js +165 -0
  437. package/node_modules/pngjs/lib/parser-sync.js +108 -0
  438. package/node_modules/pngjs/lib/parser.js +290 -0
  439. package/node_modules/pngjs/lib/png-sync.js +12 -0
  440. package/node_modules/pngjs/lib/png.js +194 -0
  441. package/node_modules/pngjs/lib/sync-inflate.js +168 -0
  442. package/node_modules/pngjs/lib/sync-reader.js +45 -0
  443. package/node_modules/pngjs/package.json +73 -0
  444. package/node_modules/qrcode/README.md +770 -0
  445. package/node_modules/qrcode/bin/qrcode +159 -0
  446. package/node_modules/qrcode/helper/to-sjis-browser.js +2 -0
  447. package/node_modules/qrcode/helper/to-sjis.js +105 -0
  448. package/node_modules/qrcode/lib/browser.js +76 -0
  449. package/node_modules/qrcode/lib/can-promise.js +7 -0
  450. package/node_modules/qrcode/lib/core/alignment-pattern.js +83 -0
  451. package/node_modules/qrcode/lib/core/alphanumeric-data.js +59 -0
  452. package/node_modules/qrcode/lib/core/bit-buffer.js +37 -0
  453. package/node_modules/qrcode/lib/core/bit-matrix.js +65 -0
  454. package/node_modules/qrcode/lib/core/byte-data.js +30 -0
  455. package/node_modules/qrcode/lib/core/error-correction-code.js +135 -0
  456. package/node_modules/qrcode/lib/core/error-correction-level.js +50 -0
  457. package/node_modules/qrcode/lib/core/finder-pattern.js +22 -0
  458. package/node_modules/qrcode/lib/core/format-info.js +29 -0
  459. package/node_modules/qrcode/lib/core/galois-field.js +69 -0
  460. package/node_modules/qrcode/lib/core/kanji-data.js +54 -0
  461. package/node_modules/qrcode/lib/core/mask-pattern.js +234 -0
  462. package/node_modules/qrcode/lib/core/mode.js +167 -0
  463. package/node_modules/qrcode/lib/core/numeric-data.js +43 -0
  464. package/node_modules/qrcode/lib/core/polynomial.js +62 -0
  465. package/node_modules/qrcode/lib/core/qrcode.js +495 -0
  466. package/node_modules/qrcode/lib/core/reed-solomon-encoder.js +56 -0
  467. package/node_modules/qrcode/lib/core/regex.js +31 -0
  468. package/node_modules/qrcode/lib/core/segments.js +330 -0
  469. package/node_modules/qrcode/lib/core/utils.js +63 -0
  470. package/node_modules/qrcode/lib/core/version-check.js +9 -0
  471. package/node_modules/qrcode/lib/core/version.js +163 -0
  472. package/node_modules/qrcode/lib/index.js +12 -0
  473. package/node_modules/qrcode/lib/renderer/canvas.js +63 -0
  474. package/node_modules/qrcode/lib/renderer/png.js +78 -0
  475. package/node_modules/qrcode/lib/renderer/svg-tag.js +81 -0
  476. package/node_modules/qrcode/lib/renderer/svg.js +19 -0
  477. package/node_modules/qrcode/lib/renderer/terminal/terminal-small.js +85 -0
  478. package/node_modules/qrcode/lib/renderer/terminal/terminal.js +49 -0
  479. package/node_modules/qrcode/lib/renderer/terminal.js +9 -0
  480. package/node_modules/qrcode/lib/renderer/utf8.js +71 -0
  481. package/node_modules/qrcode/lib/renderer/utils.js +99 -0
  482. package/node_modules/qrcode/lib/server.js +138 -0
  483. package/node_modules/qrcode/license +10 -0
  484. package/node_modules/qrcode/package.json +77 -0
  485. package/node_modules/require-directory/.jshintrc +67 -0
  486. package/node_modules/require-directory/.npmignore +1 -0
  487. package/node_modules/require-directory/.travis.yml +3 -0
  488. package/node_modules/require-directory/LICENSE +22 -0
  489. package/node_modules/require-directory/README.markdown +184 -0
  490. package/node_modules/require-directory/index.js +86 -0
  491. package/node_modules/require-directory/package.json +40 -0
  492. package/node_modules/require-main-filename/CHANGELOG.md +26 -0
  493. package/node_modules/require-main-filename/LICENSE.txt +14 -0
  494. package/node_modules/require-main-filename/README.md +26 -0
  495. package/node_modules/require-main-filename/index.js +18 -0
  496. package/node_modules/require-main-filename/package.json +35 -0
  497. package/node_modules/semver/LICENSE +15 -0
  498. package/node_modules/semver/README.md +680 -0
  499. package/node_modules/semver/bin/semver.js +195 -0
  500. package/node_modules/semver/classes/comparator.js +143 -0
  501. package/node_modules/semver/classes/index.js +7 -0
  502. package/node_modules/semver/classes/range.js +577 -0
  503. package/node_modules/semver/classes/semver.js +350 -0
  504. package/node_modules/semver/functions/clean.js +8 -0
  505. package/node_modules/semver/functions/cmp.js +54 -0
  506. package/node_modules/semver/functions/coerce.js +62 -0
  507. package/node_modules/semver/functions/compare-build.js +9 -0
  508. package/node_modules/semver/functions/compare-loose.js +5 -0
  509. package/node_modules/semver/functions/compare.js +7 -0
  510. package/node_modules/semver/functions/diff.js +60 -0
  511. package/node_modules/semver/functions/eq.js +5 -0
  512. package/node_modules/semver/functions/gt.js +5 -0
  513. package/node_modules/semver/functions/gte.js +5 -0
  514. package/node_modules/semver/functions/inc.js +21 -0
  515. package/node_modules/semver/functions/lt.js +5 -0
  516. package/node_modules/semver/functions/lte.js +5 -0
  517. package/node_modules/semver/functions/major.js +5 -0
  518. package/node_modules/semver/functions/minor.js +5 -0
  519. package/node_modules/semver/functions/neq.js +5 -0
  520. package/node_modules/semver/functions/parse.js +18 -0
  521. package/node_modules/semver/functions/patch.js +5 -0
  522. package/node_modules/semver/functions/prerelease.js +8 -0
  523. package/node_modules/semver/functions/rcompare.js +5 -0
  524. package/node_modules/semver/functions/rsort.js +5 -0
  525. package/node_modules/semver/functions/satisfies.js +12 -0
  526. package/node_modules/semver/functions/sort.js +5 -0
  527. package/node_modules/semver/functions/truncate.js +48 -0
  528. package/node_modules/semver/functions/valid.js +8 -0
  529. package/node_modules/semver/index.js +93 -0
  530. package/node_modules/semver/internal/constants.js +37 -0
  531. package/node_modules/semver/internal/debug.js +11 -0
  532. package/node_modules/semver/internal/identifiers.js +29 -0
  533. package/node_modules/semver/internal/lrucache.js +42 -0
  534. package/node_modules/semver/internal/parse-options.js +17 -0
  535. package/node_modules/semver/internal/re.js +223 -0
  536. package/node_modules/semver/package.json +78 -0
  537. package/node_modules/semver/preload.js +4 -0
  538. package/node_modules/semver/range.bnf +17 -0
  539. package/node_modules/semver/ranges/gtr.js +6 -0
  540. package/node_modules/semver/ranges/intersects.js +9 -0
  541. package/node_modules/semver/ranges/ltr.js +6 -0
  542. package/node_modules/semver/ranges/max-satisfying.js +27 -0
  543. package/node_modules/semver/ranges/min-satisfying.js +26 -0
  544. package/node_modules/semver/ranges/min-version.js +63 -0
  545. package/node_modules/semver/ranges/outside.js +82 -0
  546. package/node_modules/semver/ranges/simplify.js +49 -0
  547. package/node_modules/semver/ranges/subset.js +249 -0
  548. package/node_modules/semver/ranges/to-comparators.js +10 -0
  549. package/node_modules/semver/ranges/valid.js +13 -0
  550. package/node_modules/set-blocking/CHANGELOG.md +26 -0
  551. package/node_modules/set-blocking/LICENSE.txt +14 -0
  552. package/node_modules/set-blocking/README.md +31 -0
  553. package/node_modules/set-blocking/index.js +7 -0
  554. package/node_modules/set-blocking/package.json +42 -0
  555. package/node_modules/sharp/LICENSE +191 -0
  556. package/node_modules/sharp/README.md +112 -0
  557. package/node_modules/sharp/dist/channel.cjs +177 -0
  558. package/node_modules/sharp/dist/channel.mjs +177 -0
  559. package/node_modules/sharp/dist/colour.cjs +199 -0
  560. package/node_modules/sharp/dist/colour.mjs +199 -0
  561. package/node_modules/sharp/dist/composite.cjs +213 -0
  562. package/node_modules/sharp/dist/composite.mjs +213 -0
  563. package/node_modules/sharp/dist/constructor.cjs +511 -0
  564. package/node_modules/sharp/dist/constructor.mjs +511 -0
  565. package/node_modules/sharp/dist/index.cjs +25 -0
  566. package/node_modules/sharp/dist/index.d.cts +1999 -0
  567. package/node_modules/sharp/dist/index.d.mts +2046 -0
  568. package/node_modules/sharp/dist/index.mjs +25 -0
  569. package/node_modules/sharp/dist/input.cjs +819 -0
  570. package/node_modules/sharp/dist/input.mjs +819 -0
  571. package/node_modules/sharp/dist/is.cjs +143 -0
  572. package/node_modules/sharp/dist/is.mjs +143 -0
  573. package/node_modules/sharp/dist/libvips.cjs +212 -0
  574. package/node_modules/sharp/dist/libvips.mjs +212 -0
  575. package/node_modules/sharp/dist/operation.cjs +1002 -0
  576. package/node_modules/sharp/dist/operation.mjs +1002 -0
  577. package/node_modules/sharp/dist/output.cjs +1785 -0
  578. package/node_modules/sharp/dist/output.mjs +1785 -0
  579. package/node_modules/sharp/dist/resize.cjs +617 -0
  580. package/node_modules/sharp/dist/resize.mjs +617 -0
  581. package/node_modules/sharp/dist/sharp.cjs +174 -0
  582. package/node_modules/sharp/dist/sharp.mjs +174 -0
  583. package/node_modules/sharp/dist/utility.cjs +301 -0
  584. package/node_modules/sharp/dist/utility.mjs +301 -0
  585. package/node_modules/sharp/install/build.js +38 -0
  586. package/node_modules/sharp/lib/index.d.ts +1999 -0
  587. package/node_modules/sharp/package.json +227 -0
  588. package/node_modules/sharp/src/binding.gyp +303 -0
  589. package/node_modules/sharp/src/common.cc +1186 -0
  590. package/node_modules/sharp/src/common.h +421 -0
  591. package/node_modules/sharp/src/metadata.cc +404 -0
  592. package/node_modules/sharp/src/metadata.h +95 -0
  593. package/node_modules/sharp/src/operations.cc +516 -0
  594. package/node_modules/sharp/src/operations.h +137 -0
  595. package/node_modules/sharp/src/pipeline.cc +1948 -0
  596. package/node_modules/sharp/src/pipeline.h +422 -0
  597. package/node_modules/sharp/src/sharp.cc +43 -0
  598. package/node_modules/sharp/src/stats.cc +186 -0
  599. package/node_modules/sharp/src/stats.h +62 -0
  600. package/node_modules/sharp/src/utilities.cc +289 -0
  601. package/node_modules/sharp/src/utilities.h +22 -0
  602. package/node_modules/string-width/index.d.ts +29 -0
  603. package/node_modules/string-width/index.js +47 -0
  604. package/node_modules/string-width/license +9 -0
  605. package/node_modules/string-width/package.json +56 -0
  606. package/node_modules/string-width/readme.md +50 -0
  607. package/node_modules/strip-ansi/index.d.ts +17 -0
  608. package/node_modules/strip-ansi/index.js +4 -0
  609. package/node_modules/strip-ansi/license +9 -0
  610. package/node_modules/strip-ansi/package.json +54 -0
  611. package/node_modules/strip-ansi/readme.md +46 -0
  612. package/node_modules/which-module/LICENSE +13 -0
  613. package/node_modules/which-module/README.md +58 -0
  614. package/node_modules/which-module/index.js +9 -0
  615. package/node_modules/which-module/package.json +41 -0
  616. package/node_modules/wrap-ansi/index.js +186 -0
  617. package/node_modules/wrap-ansi/license +9 -0
  618. package/node_modules/wrap-ansi/package.json +61 -0
  619. package/node_modules/wrap-ansi/readme.md +97 -0
  620. package/node_modules/ws/LICENSE +20 -0
  621. package/node_modules/ws/README.md +548 -0
  622. package/node_modules/ws/browser.js +8 -0
  623. package/node_modules/ws/index.js +22 -0
  624. package/node_modules/ws/lib/buffer-util.js +131 -0
  625. package/node_modules/ws/lib/constants.js +19 -0
  626. package/node_modules/ws/lib/event-target.js +292 -0
  627. package/node_modules/ws/lib/extension.js +203 -0
  628. package/node_modules/ws/lib/limiter.js +55 -0
  629. package/node_modules/ws/lib/permessage-deflate.js +530 -0
  630. package/node_modules/ws/lib/receiver.js +743 -0
  631. package/node_modules/ws/lib/sender.js +607 -0
  632. package/node_modules/ws/lib/stream.js +161 -0
  633. package/node_modules/ws/lib/subprotocol.js +62 -0
  634. package/node_modules/ws/lib/validation.js +152 -0
  635. package/node_modules/ws/lib/websocket-server.js +562 -0
  636. package/node_modules/ws/lib/websocket.js +1407 -0
  637. package/node_modules/ws/package.json +74 -0
  638. package/node_modules/ws/wrapper.mjs +21 -0
  639. package/node_modules/y18n/CHANGELOG.md +35 -0
  640. package/node_modules/y18n/LICENSE +13 -0
  641. package/node_modules/y18n/README.md +109 -0
  642. package/node_modules/y18n/index.js +188 -0
  643. package/node_modules/y18n/package.json +39 -0
  644. package/node_modules/yargs/CHANGELOG.md +420 -0
  645. package/node_modules/yargs/LICENSE +21 -0
  646. package/node_modules/yargs/README.md +140 -0
  647. package/node_modules/yargs/build/lib/apply-extends.d.ts +2 -0
  648. package/node_modules/yargs/build/lib/apply-extends.js +65 -0
  649. package/node_modules/yargs/build/lib/argsert.d.ts +2 -0
  650. package/node_modules/yargs/build/lib/argsert.js +65 -0
  651. package/node_modules/yargs/build/lib/command.d.ts +64 -0
  652. package/node_modules/yargs/build/lib/command.js +416 -0
  653. package/node_modules/yargs/build/lib/common-types.d.ts +36 -0
  654. package/node_modules/yargs/build/lib/common-types.js +25 -0
  655. package/node_modules/yargs/build/lib/completion-templates.d.ts +2 -0
  656. package/node_modules/yargs/build/lib/completion-templates.js +50 -0
  657. package/node_modules/yargs/build/lib/completion.d.ts +21 -0
  658. package/node_modules/yargs/build/lib/completion.js +135 -0
  659. package/node_modules/yargs/build/lib/is-promise.d.ts +1 -0
  660. package/node_modules/yargs/build/lib/is-promise.js +9 -0
  661. package/node_modules/yargs/build/lib/levenshtein.d.ts +1 -0
  662. package/node_modules/yargs/build/lib/levenshtein.js +58 -0
  663. package/node_modules/yargs/build/lib/middleware.d.ts +10 -0
  664. package/node_modules/yargs/build/lib/middleware.js +57 -0
  665. package/node_modules/yargs/build/lib/obj-filter.d.ts +1 -0
  666. package/node_modules/yargs/build/lib/obj-filter.js +14 -0
  667. package/node_modules/yargs/build/lib/parse-command.d.ts +11 -0
  668. package/node_modules/yargs/build/lib/parse-command.js +36 -0
  669. package/node_modules/yargs/build/lib/process-argv.d.ts +2 -0
  670. package/node_modules/yargs/build/lib/process-argv.js +31 -0
  671. package/node_modules/yargs/build/lib/usage.d.ts +49 -0
  672. package/node_modules/yargs/build/lib/usage.js +540 -0
  673. package/node_modules/yargs/build/lib/validation.d.ts +34 -0
  674. package/node_modules/yargs/build/lib/validation.js +330 -0
  675. package/node_modules/yargs/build/lib/yargs.d.ts +274 -0
  676. package/node_modules/yargs/build/lib/yargs.js +1190 -0
  677. package/node_modules/yargs/build/lib/yerror.d.ts +4 -0
  678. package/node_modules/yargs/build/lib/yerror.js +11 -0
  679. package/node_modules/yargs/index.js +40 -0
  680. package/node_modules/yargs/locales/be.json +46 -0
  681. package/node_modules/yargs/locales/de.json +46 -0
  682. package/node_modules/yargs/locales/en.json +51 -0
  683. package/node_modules/yargs/locales/es.json +46 -0
  684. package/node_modules/yargs/locales/fi.json +49 -0
  685. package/node_modules/yargs/locales/fr.json +53 -0
  686. package/node_modules/yargs/locales/hi.json +49 -0
  687. package/node_modules/yargs/locales/hu.json +46 -0
  688. package/node_modules/yargs/locales/id.json +50 -0
  689. package/node_modules/yargs/locales/it.json +46 -0
  690. package/node_modules/yargs/locales/ja.json +51 -0
  691. package/node_modules/yargs/locales/ko.json +49 -0
  692. package/node_modules/yargs/locales/nb.json +44 -0
  693. package/node_modules/yargs/locales/nl.json +49 -0
  694. package/node_modules/yargs/locales/nn.json +44 -0
  695. package/node_modules/yargs/locales/pirate.json +13 -0
  696. package/node_modules/yargs/locales/pl.json +49 -0
  697. package/node_modules/yargs/locales/pt.json +45 -0
  698. package/node_modules/yargs/locales/pt_BR.json +48 -0
  699. package/node_modules/yargs/locales/ru.json +46 -0
  700. package/node_modules/yargs/locales/th.json +46 -0
  701. package/node_modules/yargs/locales/tr.json +48 -0
  702. package/node_modules/yargs/locales/zh_CN.json +48 -0
  703. package/node_modules/yargs/locales/zh_TW.json +47 -0
  704. package/node_modules/yargs/package.json +92 -0
  705. package/node_modules/yargs/yargs.js +14 -0
  706. package/node_modules/yargs-parser/CHANGELOG.md +601 -0
  707. package/node_modules/yargs-parser/LICENSE.txt +14 -0
  708. package/node_modules/yargs-parser/README.md +449 -0
  709. package/node_modules/yargs-parser/index.js +1032 -0
  710. package/node_modules/yargs-parser/lib/tokenize-arg-string.js +40 -0
  711. package/node_modules/yargs-parser/package.json +46 -0
  712. package/package.json +50 -0
  713. package/tools/postinstall.mjs +9 -0
@@ -0,0 +1,516 @@
1
+ /*!
2
+ Copyright 2013 Lovell Fuller and others.
3
+ SPDX-License-Identifier: Apache-2.0
4
+ */
5
+
6
+ #include <algorithm>
7
+ #include <functional>
8
+ #include <memory>
9
+ #include <tuple>
10
+ #include <vector>
11
+ #include <vips/vips8>
12
+
13
+ #include "./common.h"
14
+ #include "./operations.h"
15
+
16
+ using vips::VImage;
17
+
18
+ namespace sharp {
19
+ /*
20
+ * Tint an image using the provided RGB.
21
+ */
22
+ VImage Tint(VImage image, std::vector<double> const tint) {
23
+ std::vector<double> const tintLab = (VImage::black(1, 1) + tint)
24
+ .colourspace(VIPS_INTERPRETATION_LAB, VImage::option()->set("source_space", VIPS_INTERPRETATION_sRGB))
25
+ .getpoint(0, 0);
26
+ // LAB identity function
27
+ VImage identityLab = VImage::identity(VImage::option()->set("bands", 3))
28
+ .colourspace(VIPS_INTERPRETATION_LAB, VImage::option()->set("source_space", VIPS_INTERPRETATION_sRGB));
29
+ // Scale luminance range, 0.0 to 1.0
30
+ VImage l = identityLab[0] / 100;
31
+ // Weighting functions
32
+ VImage weightL = 1.0 - 4.0 * ((l - 0.5) * (l - 0.5));
33
+ VImage weightAB = (weightL * tintLab).extract_band(1, VImage::option()->set("n", 2));
34
+ identityLab = identityLab[0].bandjoin(weightAB);
35
+ // Convert lookup table to sRGB
36
+ VImage lut = identityLab.colourspace(VIPS_INTERPRETATION_sRGB,
37
+ VImage::option()->set("source_space", VIPS_INTERPRETATION_LAB));
38
+ // Original colourspace
39
+ VipsInterpretation typeBeforeTint = image.interpretation();
40
+ if (typeBeforeTint == VIPS_INTERPRETATION_RGB) {
41
+ typeBeforeTint = VIPS_INTERPRETATION_sRGB;
42
+ }
43
+ // Apply lookup table
44
+ if (image.has_alpha()) {
45
+ VImage alpha = image[image.bands() - 1];
46
+ image = RemoveAlpha(image)
47
+ .colourspace(VIPS_INTERPRETATION_B_W)
48
+ .maplut(lut)
49
+ .colourspace(typeBeforeTint)
50
+ .bandjoin(alpha);
51
+ } else {
52
+ image = image
53
+ .colourspace(VIPS_INTERPRETATION_B_W)
54
+ .maplut(lut)
55
+ .colourspace(typeBeforeTint);
56
+ }
57
+ return image;
58
+ }
59
+
60
+ /*
61
+ * Stretch luminance to cover full dynamic range.
62
+ */
63
+ VImage Normalise(VImage image, int const lower, int const upper) {
64
+ // Get original colourspace
65
+ VipsInterpretation typeBeforeNormalize = image.interpretation();
66
+ if (typeBeforeNormalize == VIPS_INTERPRETATION_RGB) {
67
+ typeBeforeNormalize = VIPS_INTERPRETATION_sRGB;
68
+ }
69
+ // Convert to LAB colourspace
70
+ VImage lab = image.colourspace(VIPS_INTERPRETATION_LAB);
71
+ // Extract luminance
72
+ VImage luminance = lab[0];
73
+
74
+ // Find luminance range
75
+ int const min = lower == 0 ? luminance.min() : luminance.percent(lower);
76
+ int const max = upper == 100 ? luminance.max() : luminance.percent(upper);
77
+
78
+ if (std::abs(max - min) > 1) {
79
+ // Extract chroma
80
+ VImage chroma = lab.extract_band(1, VImage::option()->set("n", 2));
81
+ // Calculate multiplication factor and addition
82
+ double f = 100.0 / (max - min);
83
+ double a = -(min * f);
84
+ // Scale luminance, join to chroma, convert back to original colourspace
85
+ VImage normalized = luminance.linear(f, a).bandjoin(chroma).colourspace(typeBeforeNormalize);
86
+ // Attach original alpha channel, if any
87
+ if (image.has_alpha()) {
88
+ // Extract original alpha channel
89
+ VImage alpha = image[image.bands() - 1];
90
+ // Join alpha channel to normalised image
91
+ return normalized.bandjoin(alpha);
92
+ } else {
93
+ return normalized;
94
+ }
95
+ }
96
+ return image;
97
+ }
98
+
99
+ /*
100
+ * Contrast limiting adapative histogram equalization (CLAHE)
101
+ */
102
+ VImage Clahe(VImage image, int const width, int const height, int const maxSlope) {
103
+ return image.hist_local(width, height, VImage::option()->set("max_slope", maxSlope));
104
+ }
105
+
106
+ /*
107
+ * Gamma encoding/decoding
108
+ */
109
+ VImage Gamma(VImage image, double const exponent) {
110
+ if (image.has_alpha()) {
111
+ // Separate alpha channel
112
+ VImage alpha = image[image.bands() - 1];
113
+ return RemoveAlpha(image).gamma(VImage::option()->set("exponent", exponent)).bandjoin(alpha);
114
+ } else {
115
+ return image.gamma(VImage::option()->set("exponent", exponent));
116
+ }
117
+ }
118
+
119
+ /*
120
+ * Flatten image to remove alpha channel
121
+ */
122
+ VImage Flatten(VImage image, std::vector<double> flattenBackground) {
123
+ double const multiplier = sharp::Is16Bit(image.interpretation()) ? 256.0 : 1.0;
124
+ std::vector<double> background {
125
+ flattenBackground[0] * multiplier,
126
+ flattenBackground[1] * multiplier,
127
+ flattenBackground[2] * multiplier
128
+ };
129
+ return image.flatten(VImage::option()->set("background", background));
130
+ }
131
+
132
+ /**
133
+ * Produce the "negative" of the image.
134
+ */
135
+ VImage Negate(VImage image, bool const negateAlpha) {
136
+ if (image.has_alpha() && !negateAlpha) {
137
+ // Separate alpha channel
138
+ VImage alpha = image[image.bands() - 1];
139
+ return RemoveAlpha(image).invert().bandjoin(alpha);
140
+ } else {
141
+ return image.invert();
142
+ }
143
+ }
144
+
145
+ /*
146
+ * Gaussian blur. Use sigma of -1.0 for fast blur.
147
+ */
148
+ VImage Blur(VImage image, double const sigma, VipsPrecision precision, double const minAmpl) {
149
+ if (sigma == -1.0) {
150
+ // Fast, mild blur - averages neighbouring pixels
151
+ VImage blur = VImage::new_matrixv(3, 3,
152
+ 1.0, 1.0, 1.0,
153
+ 1.0, 1.0, 1.0,
154
+ 1.0, 1.0, 1.0);
155
+ blur.set("scale", 9.0);
156
+ return image.conv(blur);
157
+ } else {
158
+ // Slower, accurate Gaussian blur
159
+ return StaySequential(image).gaussblur(sigma, VImage::option()
160
+ ->set("precision", precision)
161
+ ->set("min_ampl", minAmpl));
162
+ }
163
+ }
164
+
165
+ /*
166
+ * Convolution with a kernel.
167
+ */
168
+ VImage Convolve(VImage image, int const width, int const height,
169
+ double const scale, double const offset,
170
+ std::vector<double> const &kernel_v
171
+ ) {
172
+ VImage kernel = VImage::new_from_memory(
173
+ static_cast<void*>(const_cast<double*>(kernel_v.data())),
174
+ width * height * sizeof(double),
175
+ width,
176
+ height,
177
+ 1,
178
+ VIPS_FORMAT_DOUBLE);
179
+ kernel.set("scale", scale);
180
+ kernel.set("offset", offset);
181
+
182
+ return image.conv(kernel);
183
+ }
184
+
185
+ /*
186
+ * Recomb with a Matrix of the given bands/channel size.
187
+ * Eg. RGB will be a 3x3 matrix.
188
+ */
189
+ VImage Recomb(VImage image, std::vector<double> const& matrix) {
190
+ double* m = const_cast<double*>(matrix.data());
191
+ image = image.colourspace(VIPS_INTERPRETATION_sRGB);
192
+ if (matrix.size() == 9) {
193
+ return image
194
+ .recomb(image.bands() == 3
195
+ ? VImage::new_matrix(3, 3, m, 9)
196
+ : VImage::new_matrixv(4, 4,
197
+ m[0], m[1], m[2], 0.0,
198
+ m[3], m[4], m[5], 0.0,
199
+ m[6], m[7], m[8], 0.0,
200
+ 0.0, 0.0, 0.0, 1.0));
201
+ } else {
202
+ return image.recomb(VImage::new_matrix(4, 4, m, 16));
203
+ }
204
+ }
205
+
206
+ VImage Modulate(VImage image, double const brightness, double const saturation,
207
+ int const hue, double const lightness) {
208
+ VipsInterpretation colourspaceBeforeModulate = image.interpretation();
209
+ if (image.has_alpha()) {
210
+ // Separate alpha channel
211
+ VImage alpha = image[image.bands() - 1];
212
+ return RemoveAlpha(image)
213
+ .colourspace(VIPS_INTERPRETATION_LCH)
214
+ .linear(
215
+ { brightness, saturation, 1},
216
+ { lightness, 0.0, static_cast<double>(hue) }
217
+ )
218
+ .colourspace(colourspaceBeforeModulate)
219
+ .bandjoin(alpha);
220
+ } else {
221
+ return image
222
+ .colourspace(VIPS_INTERPRETATION_LCH)
223
+ .linear(
224
+ { brightness, saturation, 1 },
225
+ { lightness, 0.0, static_cast<double>(hue) }
226
+ )
227
+ .colourspace(colourspaceBeforeModulate);
228
+ }
229
+ }
230
+
231
+ /*
232
+ * Sharpen flat and jagged areas. Use sigma of -1.0 for fast sharpen.
233
+ */
234
+ VImage Sharpen(VImage image, double const sigma, double const m1, double const m2,
235
+ double const x1, double const y2, double const y3) {
236
+ if (sigma == -1.0) {
237
+ // Fast, mild sharpen
238
+ VImage sharpen = VImage::new_matrixv(3, 3,
239
+ -1.0, -1.0, -1.0,
240
+ -1.0, 32.0, -1.0,
241
+ -1.0, -1.0, -1.0);
242
+ sharpen.set("scale", 24.0);
243
+ return image.conv(sharpen);
244
+ } else {
245
+ // Slow, accurate sharpen in LAB colour space, with control over flat vs jagged areas
246
+ VipsInterpretation colourspaceBeforeSharpen = image.interpretation();
247
+ if (colourspaceBeforeSharpen == VIPS_INTERPRETATION_RGB) {
248
+ colourspaceBeforeSharpen = VIPS_INTERPRETATION_sRGB;
249
+ }
250
+ return image
251
+ .sharpen(VImage::option()
252
+ ->set("sigma", sigma)
253
+ ->set("m1", m1)
254
+ ->set("m2", m2)
255
+ ->set("x1", x1)
256
+ ->set("y2", y2)
257
+ ->set("y3", y3))
258
+ .colourspace(colourspaceBeforeSharpen);
259
+ }
260
+ }
261
+
262
+ VImage Threshold(VImage image, double const threshold, bool const thresholdGrayscale) {
263
+ if (!thresholdGrayscale) {
264
+ return image >= threshold;
265
+ }
266
+ return image.colourspace(VIPS_INTERPRETATION_B_W) >= threshold;
267
+ }
268
+
269
+ /*
270
+ Perform boolean/bitwise operation on image color channels - results in one channel image
271
+ */
272
+ VImage Bandbool(VImage image, VipsOperationBoolean const boolean) {
273
+ image = image.bandbool(boolean);
274
+ return image.copy(VImage::option()->set("interpretation", VIPS_INTERPRETATION_B_W));
275
+ }
276
+
277
+ /*
278
+ Perform bitwise boolean operation between images
279
+ */
280
+ VImage Boolean(VImage image, VImage imageR, VipsOperationBoolean const boolean) {
281
+ return image.boolean(imageR, boolean);
282
+ }
283
+
284
+ /*
285
+ Trim an image
286
+ */
287
+ VImage Trim(VImage image, std::vector<double> background, double threshold, bool const lineArt, int const margin) {
288
+ if (image.width() < 3 && image.height() < 3) {
289
+ throw std::runtime_error("Image to trim must be at least 3x3 pixels");
290
+ }
291
+ if (background.size() == 0) {
292
+ // Top-left pixel provides the default background colour if none is given
293
+ background = image.extract_area(0, 0, 1, 1)(0, 0);
294
+ } else if (sharp::Is16Bit(image.interpretation())) {
295
+ for (size_t i = 0; i < background.size(); i++) {
296
+ background[i] *= 256.0;
297
+ }
298
+ threshold *= 256.0;
299
+ }
300
+ std::vector<double> backgroundAlpha({ background.back() });
301
+ if (image.has_alpha()) {
302
+ background.pop_back();
303
+ } else {
304
+ background.resize(image.bands());
305
+ }
306
+ int left, top, width, height;
307
+ left = image.find_trim(&top, &width, &height, VImage::option()
308
+ ->set("background", background)
309
+ ->set("line_art", lineArt)
310
+ ->set("threshold", threshold));
311
+ if (image.has_alpha()) {
312
+ // Search alpha channel (A)
313
+ int leftA, topA, widthA, heightA;
314
+ VImage alpha = image[image.bands() - 1];
315
+ leftA = alpha.find_trim(&topA, &widthA, &heightA, VImage::option()
316
+ ->set("background", backgroundAlpha)
317
+ ->set("line_art", lineArt)
318
+ ->set("threshold", threshold));
319
+ if (widthA > 0 && heightA > 0) {
320
+ if (width > 0 && height > 0) {
321
+ // Combined bounding box (B)
322
+ int leftB = std::min(left, leftA);
323
+ int topB = std::min(top, topA);
324
+ int widthB = std::max(left + width, leftA + widthA) - leftB;
325
+ int heightB = std::max(top + height, topA + heightA) - topB;
326
+ if (margin > 0) {
327
+ leftB = std::max(0, leftB - margin);
328
+ topB = std::max(0, topB - margin);
329
+ widthB = std::min(image.width() - leftB, widthB + 2 * margin);
330
+ heightB = std::min(image.height() - topB, heightB + 2 * margin);
331
+ }
332
+ return image.extract_area(leftB, topB, widthB, heightB);
333
+ } else {
334
+ // Use alpha only
335
+ if (margin > 0) {
336
+ leftA = std::max(0, leftA - margin);
337
+ topA = std::max(0, topA - margin);
338
+ widthA = std::min(image.width() - leftA, widthA + 2 * margin);
339
+ heightA = std::min(image.height() - topA, heightA + 2 * margin);
340
+ }
341
+ return image.extract_area(leftA, topA, widthA, heightA);
342
+ }
343
+ }
344
+ }
345
+ if (width > 0 && height > 0) {
346
+ if (margin > 0) {
347
+ left = std::max(0, left - margin);
348
+ top = std::max(0, top - margin);
349
+ width = std::min(image.width() - left, width + 2 * margin);
350
+ height = std::min(image.height() - top, height + 2 * margin);
351
+ }
352
+ return image.extract_area(left, top, width, height);
353
+ }
354
+ return image;
355
+ }
356
+
357
+ /*
358
+ * Calculate (a * in + b)
359
+ */
360
+ VImage Linear(VImage image, std::vector<double> const a, std::vector<double> const b) {
361
+ size_t const bands = static_cast<size_t>(image.bands());
362
+ if (a.size() > bands) {
363
+ throw std::runtime_error("Band expansion using linear is unsupported");
364
+ }
365
+ bool const uchar = !Is16Bit(image.interpretation());
366
+ if (image.has_alpha() && a.size() != bands && (a.size() == 1 || a.size() == bands - 1 || bands - 1 == 1)) {
367
+ // Separate alpha channel
368
+ VImage alpha = image[bands - 1];
369
+ return RemoveAlpha(image).linear(a, b, VImage::option()->set("uchar", uchar)).bandjoin(alpha);
370
+ } else {
371
+ return image.linear(a, b, VImage::option()->set("uchar", uchar));
372
+ }
373
+ }
374
+
375
+ /*
376
+ * Unflatten
377
+ */
378
+ VImage Unflatten(VImage image) {
379
+ if (image.has_alpha()) {
380
+ VImage alpha = image[image.bands() - 1];
381
+ VImage noAlpha = RemoveAlpha(image);
382
+ return noAlpha.bandjoin(alpha & (noAlpha.colourspace(VIPS_INTERPRETATION_B_W) < 255));
383
+ } else {
384
+ return image.bandjoin(image.colourspace(VIPS_INTERPRETATION_B_W) < 255);
385
+ }
386
+ }
387
+
388
+ /*
389
+ * Ensure the image is in a given colourspace
390
+ */
391
+ VImage EnsureColourspace(VImage image, VipsInterpretation colourspace) {
392
+ if (colourspace != VIPS_INTERPRETATION_LAST && image.interpretation() != colourspace) {
393
+ image = image.colourspace(colourspace,
394
+ VImage::option()->set("source_space", image.interpretation()));
395
+ }
396
+ return image;
397
+ }
398
+
399
+ /*
400
+ * Split and crop each frame, reassemble, and update pageHeight.
401
+ */
402
+ VImage CropMultiPage(VImage image, int left, int top, int width, int height,
403
+ int nPages, int *pageHeight) {
404
+ if (top == 0 && height == *pageHeight) {
405
+ // Fast path; no need to adjust the height of the multi-page image
406
+ return image.extract_area(left, 0, width, image.height());
407
+ } else {
408
+ std::vector<VImage> pages;
409
+ pages.reserve(nPages);
410
+
411
+ // Split the image into cropped frames
412
+ image = StaySequential(image);
413
+ for (int i = 0; i < nPages; i++) {
414
+ pages.push_back(
415
+ image.extract_area(left, *pageHeight * i + top, width, height));
416
+ }
417
+
418
+ // Reassemble the frames into a tall, thin image
419
+ VImage assembled = VImage::arrayjoin(pages,
420
+ VImage::option()->set("across", 1));
421
+
422
+ // Update the page height
423
+ *pageHeight = height;
424
+
425
+ return assembled;
426
+ }
427
+ }
428
+
429
+ /*
430
+ * Split into frames, embed each frame, reassemble, and update pageHeight.
431
+ */
432
+ VImage EmbedMultiPage(VImage image, int left, int top, int width, int height,
433
+ VipsExtend extendWith, std::vector<double> background, int nPages, int *pageHeight) {
434
+ if (top == 0 && height == *pageHeight) {
435
+ // Fast path; no need to adjust the height of the multi-page image
436
+ return image.embed(left, 0, width, image.height(), VImage::option()
437
+ ->set("extend", extendWith)
438
+ ->set("background", background));
439
+ } else if (left == 0 && width == image.width()) {
440
+ // Fast path; no need to adjust the width of the multi-page image
441
+ std::vector<VImage> pages;
442
+ pages.reserve(nPages);
443
+
444
+ // Rearrange the tall image into a vertical grid
445
+ image = image.grid(*pageHeight, nPages, 1);
446
+
447
+ // Do the embed on the wide image
448
+ image = image.embed(0, top, image.width(), height, VImage::option()
449
+ ->set("extend", extendWith)
450
+ ->set("background", background));
451
+
452
+ // Split the wide image into frames
453
+ for (int i = 0; i < nPages; i++) {
454
+ pages.push_back(
455
+ image.extract_area(width * i, 0, width, height));
456
+ }
457
+
458
+ // Reassemble the frames into a tall, thin image
459
+ VImage assembled = VImage::arrayjoin(pages,
460
+ VImage::option()->set("across", 1));
461
+
462
+ // Update the page height
463
+ *pageHeight = height;
464
+
465
+ return assembled;
466
+ } else {
467
+ std::vector<VImage> pages;
468
+ pages.reserve(nPages);
469
+
470
+ // Split the image into frames
471
+ for (int i = 0; i < nPages; i++) {
472
+ pages.push_back(
473
+ image.extract_area(0, *pageHeight * i, image.width(), *pageHeight));
474
+ }
475
+
476
+ // Embed each frame in the target size
477
+ for (int i = 0; i < nPages; i++) {
478
+ pages[i] = pages[i].embed(left, top, width, height, VImage::option()
479
+ ->set("extend", extendWith)
480
+ ->set("background", background));
481
+ }
482
+
483
+ // Reassemble the frames into a tall, thin image
484
+ VImage assembled = VImage::arrayjoin(pages,
485
+ VImage::option()->set("across", 1));
486
+
487
+ // Update the page height
488
+ *pageHeight = height;
489
+
490
+ return assembled;
491
+ }
492
+ }
493
+
494
+ /*
495
+ * Dilate an image
496
+ */
497
+ VImage Dilate(VImage image, int const width) {
498
+ int const maskWidth = 2 * width + 1;
499
+ VImage mask = VImage::new_matrix(maskWidth, maskWidth);
500
+ return image.morph(
501
+ mask,
502
+ VIPS_OPERATION_MORPHOLOGY_DILATE).invert();
503
+ }
504
+
505
+ /*
506
+ * Erode an image
507
+ */
508
+ VImage Erode(VImage image, int const width) {
509
+ int const maskWidth = 2 * width + 1;
510
+ VImage mask = VImage::new_matrix(maskWidth, maskWidth);
511
+ return image.morph(
512
+ mask,
513
+ VIPS_OPERATION_MORPHOLOGY_ERODE).invert();
514
+ }
515
+
516
+ } // namespace sharp
@@ -0,0 +1,137 @@
1
+ /*!
2
+ Copyright 2013 Lovell Fuller and others.
3
+ SPDX-License-Identifier: Apache-2.0
4
+ */
5
+
6
+ #ifndef SRC_OPERATIONS_H_
7
+ #define SRC_OPERATIONS_H_
8
+
9
+ #include <algorithm>
10
+ #include <functional>
11
+ #include <memory>
12
+ #include <tuple>
13
+ #include <vector>
14
+ #include <vips/vips8>
15
+
16
+ using vips::VImage;
17
+
18
+ namespace sharp {
19
+
20
+ /*
21
+ * Tint an image using the provided RGB.
22
+ */
23
+ VImage Tint(VImage image, std::vector<double> const tint);
24
+
25
+ /*
26
+ * Stretch luminance to cover full dynamic range.
27
+ */
28
+ VImage Normalise(VImage image, int const lower, int const upper);
29
+
30
+ /*
31
+ * Contrast limiting adapative histogram equalization (CLAHE)
32
+ */
33
+ VImage Clahe(VImage image, int const width, int const height, int const maxSlope);
34
+
35
+ /*
36
+ * Gamma encoding/decoding
37
+ */
38
+ VImage Gamma(VImage image, double const exponent);
39
+
40
+ /*
41
+ * Flatten image to remove alpha channel
42
+ */
43
+ VImage Flatten(VImage image, std::vector<double> flattenBackground);
44
+
45
+ /*
46
+ * Produce the "negative" of the image.
47
+ */
48
+ VImage Negate(VImage image, bool const negateAlpha);
49
+
50
+ /*
51
+ * Gaussian blur. Use sigma of -1.0 for fast blur.
52
+ */
53
+ VImage Blur(VImage image, double const sigma, VipsPrecision precision, double const minAmpl);
54
+
55
+ /*
56
+ * Convolution with a kernel.
57
+ */
58
+ VImage Convolve(VImage image, int const width, int const height,
59
+ double const scale, double const offset, std::vector<double> const &kernel_v);
60
+
61
+ /*
62
+ * Sharpen flat and jagged areas. Use sigma of -1.0 for fast sharpen.
63
+ */
64
+ VImage Sharpen(VImage image, double const sigma, double const m1, double const m2,
65
+ double const x1, double const y2, double const y3);
66
+
67
+ /*
68
+ Threshold an image
69
+ */
70
+ VImage Threshold(VImage image, double const threshold, bool const thresholdColor);
71
+
72
+ /*
73
+ Perform boolean/bitwise operation on image color channels - results in one channel image
74
+ */
75
+ VImage Bandbool(VImage image, VipsOperationBoolean const boolean);
76
+
77
+ /*
78
+ Perform bitwise boolean operation between images
79
+ */
80
+ VImage Boolean(VImage image, VImage imageR, VipsOperationBoolean const boolean);
81
+
82
+ /*
83
+ Trim an image
84
+ */
85
+ VImage Trim(VImage image, std::vector<double> background, double threshold, bool const lineArt, int const margin);
86
+
87
+ /*
88
+ * Linear adjustment (a * in + b)
89
+ */
90
+ VImage Linear(VImage image, std::vector<double> const a, std::vector<double> const b);
91
+
92
+ /*
93
+ * Unflatten
94
+ */
95
+ VImage Unflatten(VImage image);
96
+
97
+ /*
98
+ * Recomb with a Matrix of the given bands/channel size.
99
+ * Eg. RGB will be a 3x3 matrix.
100
+ */
101
+ VImage Recomb(VImage image, std::vector<double> const &matrix);
102
+
103
+ /*
104
+ * Modulate brightness, saturation, hue and lightness
105
+ */
106
+ VImage Modulate(VImage image, double const brightness, double const saturation,
107
+ int const hue, double const lightness);
108
+
109
+ /*
110
+ * Ensure the image is in a given colourspace
111
+ */
112
+ VImage EnsureColourspace(VImage image, VipsInterpretation colourspace);
113
+
114
+ /*
115
+ * Split and crop each frame, reassemble, and update pageHeight.
116
+ */
117
+ VImage CropMultiPage(VImage image, int left, int top, int width, int height,
118
+ int nPages, int *pageHeight);
119
+
120
+ /*
121
+ * Split into frames, embed each frame, reassemble, and update pageHeight.
122
+ */
123
+ VImage EmbedMultiPage(VImage image, int left, int top, int width, int height,
124
+ VipsExtend extendWith, std::vector<double> background, int nPages, int *pageHeight);
125
+
126
+ /*
127
+ * Dilate an image
128
+ */
129
+ VImage Dilate(VImage image, int const maskWidth);
130
+
131
+ /*
132
+ * Erode an image
133
+ */
134
+ VImage Erode(VImage image, int const maskWidth);
135
+ } // namespace sharp
136
+
137
+ #endif // SRC_OPERATIONS_H_