Crop vs Resize vs Format Conversion
Separate composition, pixel dimensions, and encoding, then use the smallest workflow that meets the destination requirement.
Separate composition, pixel dimensions, and encoding, then use the smallest workflow that meets the destination requirement.
Composition or target shape changed: crop.
Width or height in pixels changed: resize.
PNG, JPEG, or WebP requirement changed: convert.
More than one changed: order the necessary operations and verify each boundary.
The banner ratio is 1200 ÷ 630 = 40:21. Keeping the full 4000-pixel width requires a crop height of 2100. A centered rectangle is X 0, Y 450, width 4000, height 2100. After approving that composition, resize to 1200 × 630 and choose the receiving system's accepted encoding.
Unlocking the ratio and typing 1200 × 630 keeps every source pixel but distorts a 4:3 photo into roughly 1.90:1. Faces, circles, and text become visibly stretched. If no pixels may be removed, padding or a different layout is required; these tools do not add padding.
Each browser tool accepts a file and produces a download; they do not share one unencoded pixel pipeline. Preserve the original, minimize stages, and avoid using an already compressed JPEG as the source for repeated lossy output unless that tradeoff is accepted.
Crop: compare the four output edges with the approved framing.
Resize: check exact width, height, ratio, and small-text readability.
Convert: check actual MIME, transparency or background, artifacts, bytes, and recipient acceptance.
Any workflow: change a control and confirm the old download is invalidated before generating again.
Browser decoding, Canvas size, memory, JPEG/WebP encoding, color interpretation, metadata, EXIF, ICC profiles, and animation vary or are not preserved by contract here. A visual preview is evidence for one run, not a universal compatibility guarantee.
FAQ
Only if the selected rectangle is already exactly 1200 × 630. Otherwise establish the 40:21 composition, then resize it to the required pixels.
Usually it should not. Choose composition and delivery pixels first so an unnecessary intermediate encoding does not become another source of loss.
Do not crop. Keep the ratio and accept unused space through a separate padding or layout workflow, or negotiate another destination shape.
Further reading
Keep exploring