The Hidden Cost of "Free" Image Resizers
Free online image resizers work by uploading your image to a server, resizing it there, and returning the result. This means your image — whether it's a product photo, a personal picture, or a confidential diagram — lives on a server you don't control, even briefly. Some services explicitly state they retain uploaded images for improvement purposes.
HarborConvert resizes images entirely in your browser using the Canvas API — a built-in, native browser technology that's been available since 2011. No upload, no server, no retention.
Pixels, Dimensions, and Quality
A few fundamentals before resizing:
Resolution vs. quality: Resolution is the pixel dimensions (width × height). Quality is how much the image is compressed during saving. You can have a high-resolution image saved at low quality (lots of compression artifacts) or a low-resolution image saved at high quality.
Upscaling vs. downscaling: Downscaling (making an image smaller) always looks good. Upscaling (making it larger than the original) will look blurry because new pixels have to be invented — the Canvas API uses bicubic interpolation to minimize this, but there's no way to create detail that wasn't in the original.
Aspect ratio: Always preserve the aspect ratio unless you intentionally want a stretched image. The resize tool locks the ratio by default.
Step-by-Step
- Open the Image Resize tool
- Drop your image (JPEG, PNG, WebP, or GIF)
- Enter your target width or height — the other dimension updates automatically
- Choose output format and quality (for JPEGs)
- Download the resized image
Recommended Sizes for Common Use Cases
| Use case | Recommended size |
|---|---|
| Website hero image | 1920 × 1080 px |
| Blog post image | 1200 × 630 px |
| Twitter/X card | 1200 × 628 px |
| LinkedIn post | 1200 × 627 px |
| Instagram square | 1080 × 1080 px |
| Email banner | 600 × 200 px |
| Thumbnail | 300 × 300 px |
Preserving Quality When Downscaling
For JPEG output, a quality setting of 80–85% is the sweet spot for most web images — visually indistinguishable from 100% at a fraction of the file size. For images with sharp edges or text (like screenshots or diagrams), use PNG instead of JPEG to avoid compression artifacts.