Image Tools
Start Processing
Drop your images below and choose your processing options.
Drop images anywhere
Or click to browse — up to 50 images at once
JPGPNGWebPGIF
SVGBMPAVIF
Operation
Compression Type
Quality
80
Processing…
0%
Results
Before / After
BEFORE
AFTER
Resize & Crop
Drag images into the main drop zone first, then set dimensions here.
Output Dimensions
×
Quick Presets
Responsive Image Generator
Auto-generate multiple sizes for web use. Exported as WebP in a ZIP file.
Select Sizes to Generate
Naming Convention
image-name-480w.webp
image-name-800w.webp
image-name-1200w.webp
image-name-800w.webp
image-name-1200w.webp
HTML Snippet (srcset)
<img
src="image-800w.webp"
srcset="image-480w.webp 480w, image-800w.webp 800w, image-1200w.webp 1200w"
sizes="(max-width: 600px) 480px, (max-width: 900px) 800px, 1200px"
alt="Description"
/>
src="image-800w.webp"
srcset="image-480w.webp 480w, image-800w.webp 800w, image-1200w.webp 1200w"
sizes="(max-width: 600px) 480px, (max-width: 900px) 800px, 1200px"
alt="Description"
/>
Base64 Encoder
Convert images to Base64 data URLs for embedding directly in HTML or CSS.
Drop image to encode
Single image only
API Reference
Integrate PixForge into your workflow. REST API with JSON responses — WhiteCoder API key required for external access.
Convert & Compress
Upload an image and get back the processed result.
POST
/index.php?api=process
Parameters
image — multipart file upload (required)
operation — compress | jpg | png | webp | gif
quality — 1–100 (default: 80)
operation — compress | jpg | png | webp | gif
quality — 1–100 (default: 80)
Example Response
{
"success": true,
"file": "output_1234.webp",
"format": "webp",
"original_size": 512000,
"new_size": 89600,
"savings_pct": 82,
"api_version": "1.0",
"powered_by": "PixForge Pro"
}
"success": true,
"file": "output_1234.webp",
"format": "webp",
"original_size": 512000,
"new_size": 89600,
"savings_pct": 82,
"api_version": "1.0",
"powered_by": "PixForge Pro"
}
Quick Test (AJAX)
Test the local PHP endpoint directly — no API key needed.