惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
腾讯CDC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
N
Netflix TechBlog - Medium
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
GbyAI
GbyAI
B
Blog
F
Fortinet All Blogs
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
G
Google Developers Blog
A
About on SuperTechFans
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
MyScale Blog
MyScale Blog
B
Blog RSS Feed

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Image Crop API for Smart Cropping and Resizing
Iteration La · 2026-04-30 · via DEV Community

Every App Needs Image Resizing

User uploads a 4000x3000 photo. Your thumbnail needs to be 200x200. Your product listing needs 800x600. Your social share card needs 1200x630. The original image fits none of these.

You could install Sharp, write the resizing logic, handle edge cases (what if the image is portrait? what if it's smaller than the target?), deploy it, and maintain the server. Or you could make one API call.

The Iteration Layer's Image Transformation API resizes and crops images in the cloud. Send an image, define your operations, get the result back. No server, no library, no Docker container.

Resize: Five Fit Strategies

The resize operation takes a target width, height, and a fit strategy that determines how the image fills the target dimensions:

import { IterationLayer } from "iterationlayer";

const client = new IterationLayer({
  apiKey: "YOUR_API_KEY",
});

const { data: { buffer: imageBase64 } } =
  await client.transformImage({
    file: {
      type: "url",
      name: "photo.jpg",
      url: "https://example.com/photo.jpg",
    },
    operations: [
      {
        type: "resize",
        width_in_px: 800,
        height_in_px: 600,
        fit: "cover",
      },
    ],
  });

Enter fullscreen mode Exit fullscreen mode

{
  "success": true,
  "data": {
    "buffer": "/9j/4AAQSkZJRgABAQAAAQ...",
    "mime_type": "image/jpeg"
  }
}

Enter fullscreen mode Exit fullscreen mode

The five fit strategies:

  • cover — scales the image to fill the target dimensions, cropping any overflow. The result is exactly width x height with no empty space. Best for thumbnails and cards where you need an exact size.
  • contain — scales the image to fit entirely within the target dimensions, adding letterboxing if the aspect ratios don't match. The result is at most width x height. Best when you need the full image visible.
  • fill — stretches the image to exactly width x height, ignoring aspect ratio. Best for backgrounds or abstract patterns where distortion doesn't matter.
  • inside — scales down to fit within the target dimensions, preserving aspect ratio, never upscaling. The result may be smaller than the target. Best for constraining maximum dimensions.
  • outside — scales so the image covers the target dimensions, preserving aspect ratio, never downscaling. The result may be larger than the target. Best when you want to guarantee minimum dimensions.

Choosing the Right Fit Strategy

The fit strategy you pick depends on what you're building. Here's how each one maps to common use cases.

cover for thumbnails and cards. When you need a grid of identically-sized images — product listings, team member cards, gallery thumbnails — cover guarantees every image is the exact same dimensions. The tradeoff is that parts of the image may be cropped. For product photos shot against clean backgrounds, the crop is usually imperceptible. For portraits, combine cover with smart_crop to keep faces visible.

contain for previews and lightboxes. When users expect to see the entire image — document previews, artwork displays, lightbox modals — contain preserves everything. The image sits within a bounding box, so you may get letterboxing (bars on the sides or top/bottom). Pair it with the extend operation and a background color to fill the letterbox area with a solid color instead of transparency.

inside for upload constraints. When users upload images and you need to cap the dimensions without upscaling small images, inside is the right fit. A 4000x3000 photo resized with inside at 1920x1080 becomes 1440x1080. A 800x600 photo stays at 800x600. This is what you want for content management systems where you need to limit bandwidth without distorting smaller images.

outside for minimum size guarantees. When a downstream process requires a minimum resolution — print workflows, large-format displays — outside ensures the image is at least the target dimensions. The result may be larger, which you can then crop to exact size.

Crop: Extract a Region

The crop operation extracts a rectangular region from the image:

const operations = [
  {
    type: "crop",
    left_in_px: 100,
    top_in_px: 50,
    width_in_px: 500,
    height_in_px: 400,
  },
];

Enter fullscreen mode Exit fullscreen mode

This cuts a 500x400 rectangle starting at position (100, 50) from the top-left corner. Useful when you know exactly which region of the image you need.

Manual crop is common in image editors and annotation tools where the user draws a selection rectangle. Your frontend captures the coordinates, and the API does the extraction.

Smart Crop: Let AI Find the Subject

Manual cropping requires knowing where the subject is. The smart_crop operation handles that automatically — it uses AI object detection to find the main subject (a face, a product, a focal point) and crops around it:

const operations = [
  {
    type: "smart_crop",
    width_in_px: 400,
    height_in_px: 400,
  },
];

Enter fullscreen mode Exit fullscreen mode

The result is a 400x400 image with the subject centered. No coordinate math, no face detection library, no guesswork about where to crop.

Smart crop is particularly useful for:

  • Profile pictures — always centers the face
  • Product thumbnails — keeps the product in frame regardless of the original composition
  • Content cards — finds the focal point of editorial images

The difference between resize with cover and smart_crop is intelligence. cover crops from the center. smart_crop crops around the detected subject. For images where the subject isn't centered — a person standing to the left, a product in the bottom-right corner — smart crop produces noticeably better results.

Responsive Images with Resize

Modern web development requires multiple sizes of every image. A hero image might need five variants for different screen widths. The resize operation handles this naturally:

import { IterationLayer } from "iterationlayer";

const client = new IterationLayer({
  apiKey: "YOUR_API_KEY",
});

const widths = [320, 640, 960, 1280, 1920];

const variants = await Promise.all(
  widths.map(async (width) => {
    const { data: { buffer } } = await client.transformImage({
      file: {
        type: "url",
        name: "hero.jpg",
        url: sourceUrl,
      },
      operations: [
        {
          type: "resize",
          width_in_px: width,
          height_in_px: Math.round(width * 0.5625),
          fit: "cover",
        },
        {
          type: "convert",
          format: "webp",
          quality: 85,
        },
      ],
    });

    return {
      width,
      buffer: Buffer.from(buffer, "base64"),
    };
  })
);

Enter fullscreen mode Exit fullscreen mode

Five sizes at a 16:9 aspect ratio, all converted to WebP. Use these in a srcset attribute to let the browser pick the right size for each viewport:

<img
  srcset="/images/hero-320.webp 320w,
          /images/hero-640.webp 640w,
          /images/hero-960.webp 960w,
          /images/hero-1280.webp 1280w,
          /images/hero-1920.webp 1920w"
  sizes="100vw"
  src="/images/hero-960.webp"
  alt="Hero image"
>

Enter fullscreen mode Exit fullscreen mode

The browser downloads only the variant that matches the device width, saving bandwidth on mobile and delivering sharp images on high-DPI screens.

Chaining Operations

Resize and crop are often just the start. The API lets you chain up to 30 operations in a single request. Each operation's output feeds into the next:

const operations = [
  {
    type: "resize",
    width_in_px: 1200,
    height_in_px: 900,
    fit: "cover",
  },
  {
    type: "sharpen",
    sigma: 0.5,
  },
  {
    type: "convert",
    format: "webp",
    quality: 85,
  },
];

Enter fullscreen mode Exit fullscreen mode

This resizes to 1200x900, sharpens slightly (common after downscaling), and converts to WebP at 85% quality. One API call, three operations, one result.

Practical Recipes

Thumbnail generation:

const operations = [
  {
    type: "resize",
    width_in_px: 200,
    height_in_px: 200,
    fit: "cover",
  },
  {
    type: "convert",
    format: "webp",
    quality: 80,
  },
];

Enter fullscreen mode Exit fullscreen mode

Constrain to max dimensions (never upscale):

const operations = [
  {
    type: "resize",
    width_in_px: 1920,
    height_in_px: 1080,
    fit: "inside",
  },
];

Enter fullscreen mode Exit fullscreen mode

Smart crop for a social card:

const operations = [
  {
    type: "smart_crop",
    width_in_px: 1200,
    height_in_px: 630,
  },
  {
    type: "convert",
    format: "jpeg",
    quality: 90,
  },
];

Enter fullscreen mode Exit fullscreen mode

Center crop with padding:

const operations = [
  {
    type: "resize",
    width_in_px: 800,
    height_in_px: 600,
    fit: "contain",
  },
  {
    type: "extend",
    top_in_px: 10,
    bottom_in_px: 10,
    left_in_px: 10,
    right_in_px: 10,
    hex_color: "#ffffff",
  },
];

Enter fullscreen mode Exit fullscreen mode

Product image with white background:

const operations = [
  {
    type: "resize",
    width_in_px: 1000,
    height_in_px: 1000,
    fit: "contain",
  },
  {
    type: "remove_transparency",
    hex_color: "#ffffff",
  },
  {
    type: "convert",
    format: "jpeg",
    quality: 90,
  },
];

Enter fullscreen mode Exit fullscreen mode

What's Next

Chain with Image Generation to add watermarks or branded overlays to resized images — same auth, same credit pool.

Get Started

Check the docs for the full operation reference, including all 24 operations and their parameters. The TypeScript and Python SDKs handle file upload and response parsing.

Sign up for a free account — no credit card required. Send an image, try the different fit strategies, and see the results.