Skip to content

Instantly share code, notes, and snippets.

@lumixraku
Last active January 5, 2024 11:55
Show Gist options
  • Save lumixraku/b40fc2479b76d7ebb2b356de5a9c7780 to your computer and use it in GitHub Desktop.
Save lumixraku/b40fc2479b76d7ebb2b356de5a9c7780 to your computer and use it in GitHub Desktop.
Unit8Array to Image, SkiaImage
const blob = new Blob([skiaImage.encodeToBytes()], { type: 'image/png' })
const imageUrl = URL.createObjectURL(blob);
const img = new Image();
img.src = imageUrl;
document.body.appendChild(img)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment