How Batch Image Conversion Works in Your Browser
Modern browsers support high-performance off-main-thread image processing using Web Workers and OffscreenCanvas. By decoding and re-encoding raster image data locally, you can convert dozens of pictures instantly without uploading sensitive files to any external cloud server.
Supported Formats & Best Use Cases
- WebP: Next-generation image format offering superior lossy and lossless compression. Reduces file size by 25–35% compared to JPEG while preserving visual fidelity. Ideal for web performance and SEO Core Web Vitals.
- JPEG / JPG: Universal lossy compression standard best suited for photographic content and complex imagery where high color depth is required.
- PNG: Lossless compression supporting full alpha transparency. Perfect for logos, interface mockups, icons, and illustrations with sharp geometric boundaries.
Frequently Asked Questions
- 画像はサーバーにアップロードされますか?
- いいえ。すべての変換処理とZIP圧縮はHTML5 CanvasとWeb Workerを用いてブラウザ内で完結します。
- 一度に何枚まで変換できますか?
- メモリ保護のため、1回あたり最大20ファイルまたは総容量50MBまで変換可能です。
- 変換後の画像をまとめて保存するには?
- 「すべてダウンロード (.zip)」ボタンを押すと、すべての変換済みファイルを1つのZIPにまとめて保存できます。