Batch Resize
Batch Image Resize
Processing multiple images at once to change their dimensions to a uniform size or percentage of the original.
Detail Teknis
Batch Resize determines the level of detail an image can capture. In digital imaging, resolution is typically stated as width x height in pixels (e.g. 3840x2160 for 4K). For print, PPI (pixels per inch) maps these pixels to physical dimensions — 300 PPI is standard for professional printing while 72-96 PPI suffices for screen display. Increasing resolution beyond the original capture requires interpolation algorithms (bicubic, Lanczos) that estimate new pixel values, which adds softness rather than true detail.
Contoh
```javascript
// Resize image using Canvas API
const canvas = document.createElement('canvas');
canvas.width = 800;
canvas.height = 600;
const ctx = canvas.getContext('2d');
ctx.drawImage(img, 0, 0, 800, 600);
canvas.toBlob(blob => {
// Download resized image
saveAs(blob, 'resized.png');
}, 'image/png');
```