Every social platform crops your image differently. Instagram wants a 1:1 square in the feed, 4:5 portrait for higher reach, 9:16 vertical for Stories and Reels. YouTube needs 16:9 thumbnails. Twitter clamps post images to a 16:9 viewport unless you click to expand. Upload a 4000×3000 photo to any of them and the platform crops it for you — usually wrong, often cutting your subject’s head off. A free image cropper online lets you do the cropping yourself, with the result you actually want.
Our image cropper runs entirely in your browser. Drop the photo, pick a ratio preset (or freeform), drag the crop box to the right region, click Download. The cropped output saves in PNG, JPEG, or WebP at your chosen quality. Your photo never uploads — meaningful for ID scans, kids’ photos, and anything you’d rather not hand to a server. This guide explains the platform-by-platform aspect ratios, the rotation + format-conversion features, and the workflow tricks that make repeat cropping fast.
Aspect ratios for every social platform in 2026
| Platform / Use | Aspect ratio | Notes |
|---|---|---|
| Instagram square post | 1:1 | Default feed format; classic and reliable |
| Instagram portrait post | 4:5 | Tallest format the feed accepts; gets more pixels visible per scroll → higher engagement |
| Instagram Story / Reel / TikTok | 9:16 | Vertical full-screen; reserve top + bottom 200px for UI overlays |
| YouTube thumbnail / cover | 16:9 | Pre-crop to exactly 1280×720 to avoid YouTube’s auto-recompression |
| Twitter / X header | 3:1 | Profile photo overlaps bottom-left; keep critical content centered |
| Facebook cover | ~21:8 | Mobile crops differently than desktop; safe zone is the centre 60% |
| LinkedIn banner | 4:1 | LinkedIn enforces this aspect strictly |
| Pinterest pin | 2:3 | Vertical performs ~2.3× better than square per Pinterest’s data |
| Photo print 4×6 | 3:2 | Standard photographic print and DSLR sensor ratio |
The most common mistake: uploading a 4:3 phone photo into a 1:1 Instagram square and letting the platform pick the centre crop. The result usually clips a subject’s forehead or chin. Crop to the platform’s native ratio yourself with our tool — you decide what gets included, not Meta’s algorithm.
How to use the browser image cropper
- Open the image cropper
- Drop a photo (JPG, PNG, WebP, GIF, BMP, HEIC) into the dropzone, or click to pick from disk
- Pick a preset — Free, 1:1 Square, 4:3, 3:2, 16:9, 9:16, IG Post, IG Story, Twitter Header, YouTube Cover
- Drag the crop box to position it. Pinch on touch devices to zoom; scroll-wheel zoom on desktop
- Use the rotation buttons (90° increments) if the photo is sideways, or fine-tune with the slider
- Pick the output format — PNG (lossless), JPEG (smaller, photo-friendly), or WebP (smallest, modern)
- Set JPEG/WebP quality (85 is the web sweet spot) and click Download
The crop happens entirely in your browser via the HTML canvas API. No file is transmitted, no cropped result lives on a server. Refresh the page and the photo is gone from memory.
Format choice — PNG vs JPEG vs WebP after crop
- JPEG quality 85: right answer for photographs in 95% of cases. Compresses to ~15% the size of an equivalent PNG with no perceptible quality loss. Use for photos uploaded to social media, websites, and email.
- WebP quality 85: ~30% smaller than JPEG at equivalent quality. Supported everywhere modern (Chrome, Safari 14+, Firefox, Edge). Use for web delivery; some legacy systems and older email clients still don’t accept WebP.
- PNG: for graphics with text, sharp edges, or transparency. Photos saved as PNG are ~5× larger than JPEG with no quality benefit. Don’t use for photos.
- Original format: when you want the cropped output to match the source format exactly (preserving any specific format quirks the source had).
The quality slider matters most for JPEG. At 85, photos look identical to the source. At 75, side-by-side comparisons reveal slight artefacts on detail-heavy regions but the average viewer doesn’t notice. At 60, compression artefacts become visible on skin tones and gradients. For social media uploads, the platform recompresses your image anyway — start at 85 to give the platform clean source material to work from.
Rotation — the under-used feature that fixes most “bad” photos
Phone photos taken in landscape orientation but stored with the EXIF rotation flag are a constant source of confusion. Some viewers honor the EXIF flag (showing the photo upright); some don’t (showing it sideways). Our cropper reads the EXIF orientation tag and applies it correctly before showing the photo, so what you see is what you’ll get on every platform.
Beyond EXIF correction, manual rotation handles three common cases:
- Slightly tilted horizons. A photo of the ocean with a 2° tilt looks “off” subconsciously. Our cropper has a fine-rotation slider for ±15° corrections.
- Sideways scans. A document scanned upside-down can be rotated 180° before cropping the relevant region.
- Aspect ratio fit. A wide landscape photo can be rotated 90° and cropped to portrait if you specifically need vertical orientation.
Cropping in code — Sharp, Pillow, ImageMagick
Node.js (Sharp — fastest production library):
import sharp from "sharp";
// Crop to 1080×1080 from the top-left corner
await sharp("photo.jpg")
.extract({ left: 0, top: 0, width: 1080, height: 1080 })
.jpeg({ quality: 85 })
.toFile("photo-square.jpg");
// Or use the smart resize-crop combo (centers automatically)
await sharp("photo.jpg")
.resize(1080, 1080, { fit: "cover", position: "centre" })
.toFile("photo-1080.jpg");
Python (Pillow):
from PIL import Image
img = Image.open("photo.jpg")
# Crop coords: (left, top, right, bottom)
cropped = img.crop((100, 50, 1180, 1130))
cropped.save("photo-square.jpg", quality=85, optimize=True)
ImageMagick CLI:
# Smart center crop to 1080×1080
magick photo.jpg -resize 1080x1080^ -gravity center -extent 1080x1080 photo-square.jpg
# Crop a specific region (1080×1080 starting at x=100, y=50)
magick photo.jpg -crop 1080x1080+100+50 photo-square.jpg
For batch processing — say, cropping 500 product photos from a CSV of crop coords — Sharp on Node is the fastest approach. Sharp uses libvips under the hood and processes thousands of images per minute on commodity hardware.
The four mistakes that ruin cropped photos
- Cropping too tight on faces. Cutting the top of someone’s head looks bad on every platform. Leave 10-15% headroom in any portrait crop. The standard wedding/event photographer rule.
- Wrong aspect ratio for the platform. Cropping to 1:1 then uploading to Pinterest (which prefers 2:3) wastes the platform’s algorithmic preference for your format. Match the ratio to the destination first.
- Letting the platform crop instead. Auto-cropping algorithms pick the centre by default. If your subject is off-centre — common in Rule-of-Thirds composed photos — the platform will crop them right out of the frame.
- Saving as PNG when JPEG would do. A 1080×1080 photograph saved as PNG is ~3 MB; the same as JPEG quality 85 is ~200 KB. Social platforms then recompress the PNG anyway. Skip the round-trip and save as JPEG to start.
When NOT to crop
- Legal evidence photos. Cropping changes the file’s metadata and visual extent — both attributes courts use to verify authenticity. Submit originals.
- Anything documenting medical or scientific evidence. The framing is part of the data. If you must crop for size, archive the original separately with the crop coordinates documented.
- RAW camera files (.cr2, .nef, .arw, .dng). Cropping a raw file loses the RAW container. Develop the RAW first in Lightroom, Capture One, or darktable, then crop the resulting JPEG/TIFF.
- Photos with EXIF metadata you need to preserve. Standard browser cropping strips EXIF (location, camera model, aperture, shutter speed). Use a metadata-preserving tool like exiftool if the EXIF matters.
Frequently asked questions
Does cropping reduce image quality?
Cropping itself doesn’t reduce quality — the cropped pixels are byte-identical to the source. Quality loss happens only if you re-encode the result as JPEG or WebP at a lower quality setting. Save at 85+ and the cropped image is visually indistinguishable from the source within the cropped region.
Is my photo uploaded when I use the cropper?
No. The browser reads the photo locally via the File API, the cropper renders it on a canvas in your browser tab, and the cropped output is offered as a download — all without making any network requests. Open browser DevTools Network tab and watch for upload requests when you click Download: there are none.
What’s the maximum image size the cropper handles?
Limited by your device’s RAM, not by us. A 50-megapixel raw smartphone photo (~15 MB) crops in about a second on a modern laptop. A 100-megapixel medium-format JPEG (~50 MB) might take 2-3 seconds. Server-based croppers cap at 10-25 MB; we have no upper limit because there’s no upload.
Can I crop multiple photos at once?
The current tool is one-at-a-time. For batch jobs, use Sharp or Pillow scripts (examples above). The browser tool is optimised for the case of “I have one photo and need it in a specific shape” — the most common social-media workflow.
Will the cropper preserve transparency in PNGs?
Yes if you save as PNG or WebP. JPEG output flattens transparency to white because JPEG doesn’t support transparency. If your source has transparency you want to keep, choose PNG or WebP for the output format.
Can I crop a circle or non-rectangular shape?
The cropper outputs rectangular images only — that’s what every social platform actually accepts. For circular profile photos, social platforms apply the circle mask themselves at display time, so a square crop is what you upload. If you need actual circular images for design work (with transparent corners), use a vector editor like Figma or Illustrator after cropping to square.
Related tools and guides
- Image Cropper — the tool this guide is about
- Image Resizer — resize after cropping for exact pixel dimensions
- Free Image Resizer Tool guide — the platform-by-platform pixel cheat sheet
- Image Color Picker — sample colours from your cropped photos
- Image Filters — apply Instagram-style filters in the browser
- All image tools
![Free Image Cropper Online: Aspect Ratio Presets [2026]](https://simpletool.io/blog/wp-content/uploads/2026/05/free-image-cropper-online.png)
![Free Image Resizer Tool: Resize Photos in Your Browser [2026 Guide]](https://simpletool.io/blog/wp-content/uploads/2026/05/free-image-resizer-tool.png)