Compressed Image Buffer Decompressor
Enter a compressed array buffer to decompress and preview the image using pako (Zlib decompression)

Enter the compressed data as a JSON array of numbers (e.g., [120, 156, 236, 253, 5, ...])

How it works

1. Enter your compressed array buffer data as a JSON array

2. The app converts the array to a Uint8Array

3. Uses pako.inflate() to decompress the Zlib-compressed data

4. Creates a blob URL and displays the decompressed image

Note: This assumes the decompressed data is a valid image format (PNG, JPEG, etc.). If the preview fails, the compressed data might be in a different format or corrupted.