wasm-vips-cdn
v0.0.17
Published
Import wasm-vips from CDN
Downloads
14
Readme
Import wasm-vips from CDN
What problem it solves
Install
No installation is required.
Example
Browser
<script type="module">
import Vips from 'https://unpkg.com/[email protected]/lib/vips.min.js'
// or
// import Vips from 'https://cdn.jsdelivr.net/npm/[email protected]/lib/vips.min.js'
// or
// const { default: Vips } = await import('https://unpkg.com/[email protected]/lib/vips.min.js')
const vips = await Vips() //parameters are not supported
const im = vips.Image.black(100, 100);
console.log(JSON.stringify({
width: im.width,
height: im.height,
space: im.interpretation,
channels: im.bands,
depth: im.format
}))
</script>Node.js
Not supported,Please use the faster nodejs module sharp
