Product photos are a conversion lever, not an asset
A 2024 BigCommerce study: 22% of online shoppers name "image quality" as the main reason for a purchase decision, more than description text (18%) or reviews (20%). Prepare product photos poorly and you lose sales without noticing — the conversion rate drops without a specific error message appearing.
For the fundamentals, see our e-commerce image basics post; here we cover the concrete 2026 platform requirements.
Platform-specific minimum requirements
Shopify (2026)
- Recommendation: 2048 × 2048 px for zoom-capable products.
- Max resolution: 4472 × 4472 (20 MP).
- File size: 20 MB maximum.
- Aspect ratio: 1:1 recommended for gallery consistency.
- Format: JPG, PNG, WebP. AVIF is supported since 2024 but not generated.
WooCommerce
The image sizes come from the WordPress core: single, catalog, thumbnail. Default since WooCommerce 4.5: 800 × 800 px for the main view. For premium shops at least 1200 × 1200. Overridable per theme.
Etsy
- Recommendation: 2000 × 2000 px for all 10 listing images.
- Format: JPG, PNG, GIF (max. 1 MB).
- Ratio: 4:3 or 1:1. 4:3 is the Etsy default.
Amazon
- Main image: at least 1000 × 1000 px for the zoom function. 2000 × 2000 recommended.
- Background: pure white (RGB 255,255,255).
- Format: JPG preferred, PNG allowed, TIFF too.
- Product share: at least 85% of the image area.
The five standard crops
Pro shops deliver every product in five crop variants:
- Main shot (hero). 1:1, product centered.
- Detail crop. Close-up on important features (material, logo, seam).
- Lifestyle. Product in use (person wearing the jacket, coffee in the cup).
- Side view. Rotated 90° for shape perception.
- Scale comparison. Product next to a reference (hand, coin, ruler).
According to a Baymard study, this standard set raises the conversion rate by 30–60% over single-image listings.
Background: white, transparent, or contextual?
Three strategies:
- Pure white (Amazon style). RGB 255,255,255. Mandatory for the Amazon main image, recommended on large marketplaces. Looks sterile, but maximally compatible.
- Transparency (PNG/WebP alpha). The product stands on the theme background. Works excellently for dark-mode shops, needs a background-removal pipeline.
- Contextual background. Wooden floor, marble, lifestyle. Feels warmer, less sterile, less comparable. Typical of Etsy and boutiques.
Performance pipeline
A modern 2026 e-commerce product-photo pipeline has five stages:
- Master file. 4000 × 4000 px original RAW or lossless TIFF for later re-sampling.
- Background removal. If needed, with BiRefNet or Remove.bg.
- Standard crops. Generate the five variants from the master.
- Format cascade. Per crop: AVIF + WebP + JPG, served via
<picture>. - CDN delivery. Vercel/Cloudflare/Shopify CDN with
Cache-Control: immutable.
Mobile-first is mandatory
73% of e-commerce sessions in 2026 come from mobile (Statista). That means:
- Resolution: a 1200 × 1200 WebP is enough for 90% of mobile displays. Keep 2000 × 2000 only for the zoom function.
- Bandwidth: photo galleries with 10 product images at 500 KB = 5 MB initial load. Lazy-load everything except the first image, or LCP suffers.
- Touch targets: image navigation arrows at least 44×44 px (WCAG). Carousel dots at least 32×32 px.
Schema.org Product with images
Structured data helps product images appear in Google Shopping, Lens search, and AI Overviews:
{
"@context": "https://schema.org",
"@type": "Product",
"name": "Marlene Chair",
"image": [
"https://shop.example.com/marlene-chair-hero.jpg",
"https://shop.example.com/marlene-chair-detail.jpg",
"https://shop.example.com/marlene-chair-lifestyle.jpg"
],
"description": "…",
"sku": "MAR-001",
"brand": { "@type": "Brand", "name": "Hommade" }
}Common mistakes 2026
- All images in the same format. Serve 10 PNG product images at 800 KB and you load 8 MB. WebP/AVIF saves half.
- Inconsistent background. Sometimes white, sometimes gray, sometimes wood. Looks chaotic in the gallery overview.
- Wrong aspect ratio. If the gallery expects 1:1 and the image is 4:3, the platform crops automatically — often badly.
- Watermarks or logos in the product image. Marketplaces often remove these automatically or reject the listing.
- No alt text. Wastes image-SEO potential. See our image SEO post.
Tool recommendations
- Background removal: BiRefNet (local), Remove.bg (cloud, $0.20/image).
- Batch crop: a Photoshop action or ImageMagick script.
- Format conversion: Sharp (Node.js) or our JPG-to-WebP tool.
- Scaling: Lanczos for down-sampling, Real-ESRGAN for up-sampling.
Sources
Shopify — Product image requirements · Amazon Seller Central — Product image requirements · Etsy — Photography requirements · WooCommerce — Product Images · Baymard Institute — Product Images Research · Schema.org — Product · Statista — Mobile Commerce Share.