Image Resize and Crop FAQ: Your 20 Most-Asked Questions

You've got questions. I've answered these exact questions so many times — in forums, in comments, in DMs — that I finally wrote them all down in one place. No padding, no fluff. Just the answers.

The Resize Basics

1. What's the difference between resizing and resampling?

Resizing changes the display dimensions of an image — like telling your browser to show a 1000px image in a 200px box. Resampling actually changes the pixel data. When you "resize" in Photoshop or an online tool, you're almost always resampling. The distinction matters because resizing without resampling keeps file size the same; resampling doesn't.

2. Will resizing an image make it blurry?

Scaling down? Usually no — you're just discarding pixels, and most tools do this gracefully. Scaling up? Yes, almost always. You're asking software to invent pixels that don't exist, and the result is that familiar soft, mushy look. AI upscalers like Topaz Gigapixel or Adobe's Super Resolution do a dramatically better job than traditional bicubic interpolation, but they're not magic.

3. My image looks fine on screen but prints blurry. Why?

Screen resolution is 72–96 PPI. Print needs 300 PPI minimum. A 600×400px image looks sharp on a monitor but only prints cleanly at about 2×1.3 inches. People get tripped up because they're confusing pixel dimensions with physical print size. Always calculate: pixel width ÷ 300 = print width in inches.

4. What's the best algorithm for resizing down?

Lanczos3 (also called Sinc) is considered the gold standard for downscaling — it preserves sharpness without introducing halos. Bicubic is a solid second choice and is what most tools default to. Nearest neighbor gives you that blocky pixel-art look, which is occasionally exactly what you want.

5. Does resizing reduce file size?

Yes, dramatically. Halving both dimensions (say, 2000px → 1000px) cuts pixel count to one quarter, and file size typically drops by 60–80% depending on image complexity. This is one of the most effective ways to shrink an image for web use.

Cropping Questions

6. What's the difference between cropping and resizing?

Cropping removes content — you're literally cutting away the edges, changing what's in the frame. Resizing keeps all the content but changes how big it is. You can do both at once: crop to change composition, then resize to hit your target dimensions. They're separate operations even if some tools chain them together.

7. How do I crop to an exact aspect ratio without distorting anything?

Lock your crop tool to the ratio you need (say, 16:9), then drag to position. The crop will always maintain that ratio — nothing gets stretched. Where people go wrong is trying to resize a non-matching image into a fixed dimension without cropping first. That's what causes the squished faces and stretched logos you see everywhere.

8. I need to crop a face centered automatically. Is there a tool for that?

Yes — this is called "smart crop" or "content-aware crop." Cloudinary, Imgix, and Sirv all do this server-side via API. For a standalone tool, Jpegmini and BeFunky do reasonable jobs. On mobile, iOS Photos' "auto" crop actually uses face detection under the hood. For bulk processing, ImageMagick with gravity settings gets you close, though it doesn't actually detect faces.

9. When I crop in CSS with object-fit: cover, is that "real" cropping?

No. CSS cropping is purely visual — the full image still downloads, the browser just hides the overflow. Real cropping happens server-side or in an editor, and it reduces both file size and what gets transmitted. For performance-sensitive sites, always crop the actual file rather than relying on CSS.

10. What's the ideal crop for social media profile pictures?

Upload at 1080×1080px and let each platform downsample. Facebook displays at 170×170px on desktop but compresses aggressively if you upload small. Instagram profile circles are 110px display but you want higher source. Twitter/X is 400×400px minimum. The main thing: keep important content within the center 80% of your square, because all platforms crop to a circle and clip the corners.

Format Conversion

11. When should I use JPEG vs PNG?

JPEG for photographs and anything with gradients or complex color — it compresses brilliantly and the artifacts are rarely visible at quality 80+. PNG for anything that needs a transparent background, or for flat graphics, logos, and screenshots where JPEG's lossy compression would create ugly blockiness around sharp edges. Using PNG for photos and JPEG for logos are both common mistakes.

12. What exactly is WebP and do I actually need it?

WebP is Google's format from 2010 that combines lossy compression (like JPEG) with transparency support (like PNG) and lossless mode. At equivalent visual quality, WebP is typically 25–35% smaller than JPEG. Browser support is now essentially universal — even Safari added it in 2020. If you're running a website and not serving WebP, you're leaving real performance on the table.

13. What about AVIF? Is it worth converting?

AVIF compresses better than WebP — sometimes dramatically so for complex images — but encoding is slower and browser support, while growing, still has some gaps in older browsers. The smart approach: serve AVIF with a WebP fallback using the HTML <picture> element. Squoosh (Google's browser-based tool) lets you compare all three formats side-by-side with quality sliders before you commit.

14. I converted a PNG to JPEG and now I can see weird blocks around text. What happened?

JPEG uses DCT compression in 8×8 pixel blocks, and it handles sharp color transitions (like text edges) badly. This is called JPEG artifacting. The fix: keep text-heavy images as PNG, or if you must use JPEG, push quality to 90+ and accept the larger file size. Converting back to PNG won't remove the artifacts — the damage is already baked in.

15. Does converting from JPEG to PNG make it higher quality?

No. Converting a lossy format to lossless just preserves the already-degraded data without further loss. You get a much larger file with the same quality as the original JPEG. The original compression artifacts are locked in permanently. The only time this conversion makes sense is if you need to then edit and re-save the image multiple times — saving as PNG for intermediate steps avoids generation loss.

Practical Workflow Questions

16. What's the fastest way to batch resize 200 images?

Command line wins here. ImageMagick's mogrify command can resize an entire folder in seconds: mogrify -resize 1200x1200\> -quality 82 *.jpg. The > means it only shrinks, never enlarges. If command line isn't your thing, IrfanView (Windows) or XnConvert (cross-platform) are GUI tools built specifically for batch operations and are genuinely fast.

17. How do I resize without losing EXIF data like camera info and GPS?

Most basic resize tools strip EXIF. To preserve it: Photoshop keeps EXIF by default when you Save for Web with the "include metadata" option checked. ImageMagick preserves EXIF unless you use the -strip flag. Online tools are hit-or-miss — most strip everything. If GPS privacy is a concern (sharing photos online), stripping EXIF is actually the right call.

18. What's the right image size for blog post featured images?

1200×630px is the sweet spot — it satisfies Facebook Open Graph, Twitter card requirements, and looks sharp at typical blog column widths. Save as JPEG at quality 80–85 or WebP at quality 75. Run it through TinyPNG or Squoosh before uploading. A blog header image should never exceed 150KB; most can get to 80KB without visible quality loss.

19. I resized an image and the colors look different. What happened?

Color profile mismatch. Your original image probably has an embedded ICC color profile (likely sRGB or AdobeRGB), and the tool you used either discarded it or didn't handle it correctly. The fix: make sure you're always working and exporting in sRGB for web use — it's what browsers assume when no profile is embedded. In Photoshop: Edit → Convert to Profile → sRGB before exporting.

20. Is there a single tool that does resize, crop, and format conversion all in one?

A few good options depending on your needs. Squoosh (squoosh.app) is free, browser-based, and handles resize + format conversion with excellent quality previews. Sharp (Node.js library) is what most developers reach for in production pipelines — blazing fast, handles everything. Photoshop's Export As dialog does all three in one pass for manual work. And if you need a no-install desktop option, GIMP covers all of it for free, though the UI takes some adjustment.


That covers the questions I see over and over. The through-line in almost all of them: understand what your output needs to accomplish (screen vs. print, web vs. archive, lossy-okay vs. must-be-lossless), and choose your tool and settings around that. Most image quality problems come from applying the wrong compression to the wrong content — not from using "bad" tools.