Files
SnapOtter/packages/ai/src/seam-carving.ts
T
Siddharth Kumar Sah 6f5283019b feat: full HEIF/HEIC support, content-aware resize performance fix, UI improvements
- Add bidirectional HEIF support: decode (input) and encode (output) via system heif-convert/heif-enc
- Add server-side WebP preview generation for non-browser-previewable formats (HEIC, TIFF)
- Fix content-aware resize failing on HEIF input (decode before passing to caire)
- Fix content-aware resize timeout on large images by downscaling to max 1200px and using JPEG intermediate
- Add HEIF as target format in convert tool
- Add loading spinner for HEIF preview decode in file store
- Fix file picker not accepting HEIF files (explicit .heic,.heif,.hif extensions)
- Extend frontend timeout for medium tools to 180s with 45s progress animation
- Redesign rotate controls with preset buttons and compact flip section
- Remove misleading savings percentage from convert tool
2026-04-11 23:27:44 +08:00

140 lines
4.4 KiB
TypeScript

import { execFile } from "node:child_process";
import { randomUUID } from "node:crypto";
import { readFile, rm, writeFile } from "node:fs/promises";
import { join } from "node:path";
import { promisify } from "node:util";
import sharp from "sharp";
const execFileAsync = promisify(execFile);
export interface SeamCarveOptions {
width?: number;
height?: number;
protectFaces?: boolean;
blurRadius?: number;
sobelThreshold?: number;
square?: boolean;
}
export interface SeamCarveResult {
buffer: Buffer;
width: number;
height: number;
}
/**
* Discover the caire binary. Checks PATH (Docker installs to /usr/local/bin)
* and the CAIRE_PATH env var for local development.
*/
let cachedCairePath: string | null = null;
async function findCaire(): Promise<string> {
if (cachedCairePath) return cachedCairePath;
const candidates = process.env.CAIRE_PATH ? [process.env.CAIRE_PATH, "caire"] : ["caire"];
for (const cmd of candidates) {
try {
await execFileAsync(cmd, ["-help"], { timeout: 5_000 });
cachedCairePath = cmd;
return cmd;
} catch {
// try next
}
}
throw new Error(
"caire binary not found. Install via: go install github.com/esimov/caire/cmd/caire@v1.5.0",
);
}
/** Max pixels on the longest edge before downscaling for caire. */
const MAX_CAIRE_DIMENSION = 1200;
/**
* Content-aware resize using caire (Go seam carving engine).
* Supports both shrinking and enlarging via seam removal/insertion.
*
* Large images (>1200px longest edge) are downscaled first because
* seam carving is O(width * height * seams) and becomes impractical
* on high-resolution inputs. JPEG intermediate is used because Go's
* JPEG decoder is significantly faster than PNG for large images.
*/
export async function seamCarve(
inputBuffer: Buffer,
outputDir: string,
options: SeamCarveOptions = {},
): Promise<SeamCarveResult> {
const cairePath = await findCaire();
const id = randomUUID();
// Use JPEG for input (fast decode in Go) and PNG for output (lossless)
const inputPath = join(outputDir, `caire-in-${id}.jpg`);
const outputPath = join(outputDir, `caire-out-${id}.png`);
try {
// Downscale large images and convert to JPEG for fast caire processing
const meta = await sharp(inputBuffer).metadata();
const origWidth = meta.width ?? 0;
const origHeight = meta.height ?? 0;
const longest = Math.max(origWidth, origHeight);
let width = origWidth;
let height = origHeight;
if (longest > MAX_CAIRE_DIMENSION) {
const scale = MAX_CAIRE_DIMENSION / longest;
width = Math.round(origWidth * scale);
height = Math.round(origHeight * scale);
}
// Always output JPEG for caire input (Go decodes JPEG 3-5x faster than PNG)
const processBuffer = await sharp(inputBuffer)
.resize(width, height, { fit: "fill" })
.jpeg({ quality: 95 })
.toBuffer();
await writeFile(inputPath, processBuffer);
// Build caire arguments
const args = ["-in", inputPath, "-out", outputPath, "-preview=false"];
if (options.square) {
const shortest = Math.min(width, height);
args.push("-square", "-width", String(shortest), "-height", String(shortest));
} else {
if (options.width) {
// Scale user-specified dimensions proportionally if image was downscaled
const targetW =
longest > MAX_CAIRE_DIMENSION
? Math.round(options.width * (MAX_CAIRE_DIMENSION / longest))
: options.width;
args.push("-width", String(targetW));
}
if (options.height) {
const targetH =
longest > MAX_CAIRE_DIMENSION
? Math.round(options.height * (MAX_CAIRE_DIMENSION / longest))
: options.height;
args.push("-height", String(targetH));
}
}
if (options.protectFaces) args.push("-face");
if (options.blurRadius !== undefined) args.push("-blur", String(options.blurRadius));
if (options.sobelThreshold !== undefined) args.push("-sobel", String(options.sobelThreshold));
await execFileAsync(cairePath, args, { timeout: 120_000 });
const buffer = await readFile(outputPath);
const outMeta = await sharp(buffer).metadata();
return {
buffer,
width: outMeta.width ?? 0,
height: outMeta.height ?? 0,
};
} finally {
await rm(inputPath, { force: true }).catch(() => {});
await rm(outputPath, { force: true }).catch(() => {});
}
}