Crop Web Images to Exact Pixel Dimensions for Faster, Cleaner Pages
Serving oversized images is one of the most common Lighthouse performance failures — a 4000px hero image scaled to 1440px in CSS still downloads at full resolution. Cropping at the source to the actual render size eliminates unnecessary bytes before the file hits the CDN. Deliteful's image crop tool handles exact-pixel crops without a build step.
For web asset pipelines, the two crop modes map cleanly to two common tasks. Centered crop handles responsive breakpoint variants: a 1440×600 desktop hero, an 800×400 tablet crop, a 400×300 mobile crop — each produced from the same source image with different width/height values. Explicit box crop handles cases where the focal point isn't centered, such as a product shot or a team photo where a specific face or object needs to stay in frame.
The tool preserves the original format, so WebP assets stay WebP. It does not resize or scale — if you need to resize after cropping, that's a separate operation. For web asset work, crop first to eliminate excess pixels, then run through a compression or conversion tool as needed.
How it works
- 1
Identify target render dimensions
Check your CSS or design specs for the exact pixel dimensions the image will render at.
- 2
Choose crop mode
Use centered crop for hero images and banners; use box crop for assets with an off-center focal point.
- 3
Upload and download the cropped asset
Deliteful returns the cropped file in the original format, ready for CDN upload or build pipeline inclusion.
Frequently asked questions
- Does cropping an image improve Lighthouse performance scores?
- Yes, indirectly. Lighthouse flags 'Properly size images' when the served image is significantly larger than its rendered size. Cropping the source to match render dimensions reduces transferred bytes, which improves LCP and overall page weight scores.
- Can I crop WebP images without converting them to JPEG or PNG?
- Yes. Deliteful supports WebP input and preserves WebP on output. No format conversion is applied.
- What's the difference between cropping and resizing for web performance?
- Cropping removes pixels by extracting a sub-region of the image. Resizing scales the entire image to new dimensions. For web use, you typically crop to the correct aspect ratio first, then resize or compress. Deliteful handles the crop step only.
- Can I batch-crop multiple breakpoint variants from the same source image?
- You can upload the same source image multiple times in one session with different crop parameters, or process each breakpoint as a separate job. Batch jobs with identical parameters across multiple files are also supported.
Create your free Deliteful account with Google and start producing correctly-sized web image assets without a build pipeline.