![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@jsquash/webp
Advanced tools
Wasm webp encoder and decoder supporting the browser. Repackaged from Squoosh App.
An easy experience for encoding and decoding WebP images in the browser. Powered by WebAssembly ⚡️.
Uses the libwebp library.
A jSquash package. Codecs and supporting code derived from the Squoosh app.
npm install --save @jsquash/webp
# Or your favourite package manager alternative
Note: You will need to either manually include the wasm files from the codec directory or use a bundler like WebPack or Rollup to include them in your app/server.
Decodes WebP binary ArrayBuffer to raw RGB image data.
Type: ArrayBuffer
import { decode } from '@jsquash/webp';
const formEl = document.querySelector('form');
const formData = new FormData(formEl);
// Assuming user selected an input WebP file
const imageData = await decode(await formData.get('image').arrayBuffer());
Encodes raw RGB image data to WebP format and resolves to an ArrayBuffer of binary data.
Type: ImageData
Type: Partial<EncodeOptions>
The WebP encoder options for the output image. See default values.
import { encode } from '@jsquash/webp';
async function loadImage(src) {
const img = document.createElement('img');
img.src = src;
await new Promise(resolve => img.onload = resolve);
const canvas = document.createElement('canvas');
[canvas.width, canvas.height] = [img.width, img.height];
const ctx = canvas.getContext('2d');
ctx.drawImage(img, 0, 0);
return ctx.getImageData(0, 0, img.width, img.height);
}
const rawImageData = await loadImage('/example.png');
const webpBuffer = await encode(rawImageData);
In most situations there is no need to manually initialise the provided WebAssembly modules. The generated glue code takes care of this and supports most web bundlers.
One situation where this arises is when using the modules in Cloudflare Workers (See the README for more info).
The encode
and decode
modules both export an init
function that can be used to manually load the wasm module.
import decode, { init as initWebpDecode } from '@jsquash/webp/decode';
initWebpDecode(WASM_MODULE); // The `WASM_MODULE` variable will need to be sourced by yourself and passed as an ArrayBuffer.
const image = await fetch('./image.webp').then(res => res.arrayBuffer()).then(decode);
FAQs
Wasm webp encoder and decoder supporting the browser. Repackaged from Squoosh App.
The npm package @jsquash/webp receives a total of 3,445 weekly downloads. As such, @jsquash/webp popularity was classified as popular.
We found that @jsquash/webp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.