build.khadas.com - Index of /khadas/test/edge2/external/skia/modules/canvaskit/npm_build/

khadas/test/edge2/external/skia/modules/canvaskit/npm_build
../
types/                                             02-Jul-2024 02:40                   -
CODE_OF_CONDUCT.md                                 02-Jul-2024 02:40                4494
CONTRIBUTING.md                                    02-Jul-2024 02:40                 881
LICENSE                                            02-Jul-2024 02:40                1635
README.md                                          02-Jul-2024 02:40                3888
example.html                                       02-Jul-2024 02:40               38982
extra.html                                         02-Jul-2024 02:40               26105
multicanvas.html                                   02-Jul-2024 02:40                3969
node.example.js                                    02-Jul-2024 02:40                3272
package-lock.json                                  02-Jul-2024 02:40               63120
package.json                                       02-Jul-2024 02:40                 605
shaping.html                                       02-Jul-2024 02:40                6865
textapi_utils.js                                   02-Jul-2024 02:40               21391

">;https://unpkg.com/canvaskit-wasm@0.18.1/bin/canvaskit.js"></script> CanvasKitInit({ locateFile: (file) => ';https://unpkg.com/canvaskit-wasm@0.18.1/bin/'+file, }).then(...) ## Node To use CanvasKit in Node, it's similar to the browser: const CanvasKitInit = require('/node_modules/canvaskit-wasm/bin/canvaskit.js'); CanvasKitInit({ locateFile: (file) => __dirname + '/bin/'+file, }).then((CanvasKit) => { // Code goes here using CanvasKit }); With node, you also need to supply the `--expose-wasm` flag. ## WebPack WebPack's support for WASM is still somewhat experimental, but CanvasKit can be used with a few configuration changes. In the JS code, use require(): const CanvasKitInit = require('canvaskit-wasm/bin/canvaskit.js') CanvasKitInit().then((CanvasKit) => { // Code goes here using CanvasKit }); Since WebPack does not expose the entire `/node_modules/` directory, but instead packages only the needed pieces, we have to copy canvaskit.wasm into the build directory. One such solution is to use CopyWebpackPlugin. For example, add the following plugin: config.plugins.push( new CopyWebpackPlugin( { from: 'node_modules/canvaskit-wasm/bin/canvaskit.wasm' } ]) ); If webpack gives an error similar to: ERROR in ./node_modules/canvaskit-wasm/bin/canvaskit.js Module not found: Error: Can't resolve 'fs' in '...' Then, add the following configuration change to the node section of the config: config.node = { fs: 'empty' }; # Using the CanvasKit API See `example.html` and `node.example.js` for demos of how to use the core API. See `extra.html` for some optional add-ins like an animation player (Skottie) and a particles system. See `types/index.d.ts` for a typescript definition file that contains all the APIs and some documentation about them. ## Drop-in Canvas2D replacement For environments where an HTML canvas is not available (e.g. Node, headless servers), CanvasKit has an optional API (included by default) that mostly mirrors the HTML canvas. let skcanvas = CanvasKit.MakeCanvas(600, 600); let ctx = skcanvas.getContext('2d'); let rgradient = ctx.createRadialGradient(200, 300, 10, 100, 100, 300); // Add three color stops rgradient.addColorStop(0, 'red'); rgradient.addColorStop(0.7, 'white'); rgradient.addColorStop(1, 'blue'); ctx.fillStyle = rgradient; ctx.globalAlpha = 0.7; ctx.fillRect(0, 0, 600, 600); let imgData = skcanvas.toDataURL(); // imgData is now a base64 encoded image. See more examples in `example.html` and `node.example.js`. ### Known issues with Canvas2D Emulation layer - measureText returns width only and does no shaping. It is only sort of valid with ASCII letters. - textAlign is not supported. - textBaseAlign is not supported. - fillText does not support the width parameter. # Filing bugs Please file bugs at [skbug.com. It may be convenient to use our online fiddle to demonstrate any issues encountered. See CONTRIBUTING.md for more information on sending pull requests. # Types and Documentation There are Typescript types and associated API docs in types/. `);