- Is my image uploaded to a server?
- No. The file is decoded, displayed, cropped, and re-encoded entirely in your browser using the Canvas API. There is no upload request at any point — Convertitive never sees your image, which also means there is nothing to delete afterwards.
- Does cropping lose image quality?
- Not if you download as PNG. Cropping itself only selects a rectangle of existing pixels — no resampling happens — and PNG stores that region losslessly, so the cropped area is bit-identical to the original. Quality loss only enters if you choose JPEG or WebP output, which re-encode the pixels at the quality level you pick.
- When should I pick JPEG or WebP instead of PNG?
- For photographs where file size matters. PNG of a large photo crop can be several megabytes; JPEG at 85–90% quality or WebP at similar settings is usually 5–10× smaller with no visible difference. Stick with PNG for screenshots, diagrams, text, or anything with sharp edges, and note that JPEG flattens transparency onto a white background.
- Which aspect ratio should I use for social or profile images?
- 1:1 for profile pictures and avatars (most platforms display them square or circular), 16:9 for video thumbnails, presentation slides, and social link-preview cards, 4:3 for older display formats, and 3:2 for framing that matches classic photo prints. The Free setting lets you crop to any rectangle when no platform constraint applies.
- Will phone photos with EXIF rotation come out sideways?
- No. Modern browsers apply the EXIF orientation flag automatically when decoding an image, so a portrait photo from a phone is shown — and cropped — the right way up. The coordinates you see always refer to the image as displayed, and the downloaded crop matches exactly what the rectangle framed.
- What is the maximum file size?
- 32 MB per image, which covers photos from essentially any current phone or camera. Because processing is local, the practical limit is your device’s memory rather than a server quota — very large images simply take a moment longer to decode and encode.