177 lines
5.3 KiB
TypeScript
177 lines
5.3 KiB
TypeScript
import type { ImageContent } from "@earendil-works/pi-ai";
|
|
import { applyExifOrientation } from "./exif-orientation.js";
|
|
import { loadPhoton } from "./photon.js";
|
|
|
|
export interface ImageResizeOptions {
|
|
maxWidth?: number; // Default: 2000
|
|
maxHeight?: number; // Default: 2000
|
|
maxBytes?: number; // Default: 4.5MB of base64 payload (below Anthropic's 5MB limit)
|
|
jpegQuality?: number; // Default: 80
|
|
}
|
|
|
|
export interface ResizedImage {
|
|
data: string; // base64
|
|
mimeType: string;
|
|
originalWidth: number;
|
|
originalHeight: number;
|
|
width: number;
|
|
height: number;
|
|
wasResized: boolean;
|
|
}
|
|
|
|
// 4.5MB of base64 payload. Provides headroom below Anthropic's 5MB limit.
|
|
const DEFAULT_MAX_BYTES = 4.5 * 1024 * 1024;
|
|
|
|
const DEFAULT_OPTIONS: Required<ImageResizeOptions> = {
|
|
maxWidth: 2000,
|
|
maxHeight: 2000,
|
|
maxBytes: DEFAULT_MAX_BYTES,
|
|
jpegQuality: 80,
|
|
};
|
|
|
|
interface EncodedCandidate {
|
|
data: string;
|
|
encodedSize: number;
|
|
mimeType: string;
|
|
}
|
|
|
|
function encodeCandidate(buffer: Uint8Array, mimeType: string): EncodedCandidate {
|
|
const data = Buffer.from(buffer).toString("base64");
|
|
return {
|
|
data,
|
|
encodedSize: Buffer.byteLength(data, "utf-8"),
|
|
mimeType,
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Resize an image to fit within the specified max dimensions and encoded file size.
|
|
* Returns null if the image cannot be resized below maxBytes.
|
|
*
|
|
* Uses Photon (Rust/WASM) for image processing. If Photon is not available,
|
|
* returns null.
|
|
*
|
|
* Strategy for staying under maxBytes:
|
|
* 1. First resize to maxWidth/maxHeight
|
|
* 2. Try both PNG and JPEG formats, pick the smaller one
|
|
* 3. If still too large, try JPEG with decreasing quality
|
|
* 4. If still too large, progressively reduce dimensions until 1x1
|
|
*/
|
|
export async function resizeImage(img: ImageContent, options?: ImageResizeOptions): Promise<ResizedImage | null> {
|
|
const opts = { ...DEFAULT_OPTIONS, ...options };
|
|
const inputBuffer = Buffer.from(img.data, "base64");
|
|
const inputBase64Size = Buffer.byteLength(img.data, "utf-8");
|
|
|
|
const photon = await loadPhoton();
|
|
if (!photon) {
|
|
return null;
|
|
}
|
|
|
|
let image: ReturnType<typeof photon.PhotonImage.new_from_byteslice> | undefined;
|
|
try {
|
|
const inputBytes = new Uint8Array(inputBuffer);
|
|
const rawImage = photon.PhotonImage.new_from_byteslice(inputBytes);
|
|
image = applyExifOrientation(photon, rawImage, inputBytes);
|
|
if (image !== rawImage) rawImage.free();
|
|
|
|
const originalWidth = image.get_width();
|
|
const originalHeight = image.get_height();
|
|
const format = img.mimeType?.split("/")[1] ?? "png";
|
|
|
|
// Check if already within all limits (dimensions AND encoded size)
|
|
if (originalWidth <= opts.maxWidth && originalHeight <= opts.maxHeight && inputBase64Size < opts.maxBytes) {
|
|
return {
|
|
data: img.data,
|
|
mimeType: img.mimeType ?? `image/${format}`,
|
|
originalWidth,
|
|
originalHeight,
|
|
width: originalWidth,
|
|
height: originalHeight,
|
|
wasResized: false,
|
|
};
|
|
}
|
|
|
|
// Calculate initial dimensions respecting max limits
|
|
let targetWidth = originalWidth;
|
|
let targetHeight = originalHeight;
|
|
|
|
if (targetWidth > opts.maxWidth) {
|
|
targetHeight = Math.round((targetHeight * opts.maxWidth) / targetWidth);
|
|
targetWidth = opts.maxWidth;
|
|
}
|
|
if (targetHeight > opts.maxHeight) {
|
|
targetWidth = Math.round((targetWidth * opts.maxHeight) / targetHeight);
|
|
targetHeight = opts.maxHeight;
|
|
}
|
|
|
|
function tryEncodings(width: number, height: number, jpegQualities: number[]): EncodedCandidate[] {
|
|
const resized = photon!.resize(image!, width, height, photon!.SamplingFilter.Lanczos3);
|
|
|
|
try {
|
|
const candidates: EncodedCandidate[] = [encodeCandidate(resized.get_bytes(), "image/png")];
|
|
for (const quality of jpegQualities) {
|
|
candidates.push(encodeCandidate(resized.get_bytes_jpeg(quality), "image/jpeg"));
|
|
}
|
|
return candidates;
|
|
} finally {
|
|
resized.free();
|
|
}
|
|
}
|
|
|
|
const qualitySteps = Array.from(new Set([opts.jpegQuality, 85, 70, 55, 40]));
|
|
let currentWidth = targetWidth;
|
|
let currentHeight = targetHeight;
|
|
|
|
while (true) {
|
|
const candidates = tryEncodings(currentWidth, currentHeight, qualitySteps);
|
|
for (const candidate of candidates) {
|
|
if (candidate.encodedSize < opts.maxBytes) {
|
|
return {
|
|
data: candidate.data,
|
|
mimeType: candidate.mimeType,
|
|
originalWidth,
|
|
originalHeight,
|
|
width: currentWidth,
|
|
height: currentHeight,
|
|
wasResized: true,
|
|
};
|
|
}
|
|
}
|
|
|
|
if (currentWidth === 1 && currentHeight === 1) {
|
|
break;
|
|
}
|
|
|
|
const nextWidth = currentWidth === 1 ? 1 : Math.max(1, Math.floor(currentWidth * 0.75));
|
|
const nextHeight = currentHeight === 1 ? 1 : Math.max(1, Math.floor(currentHeight * 0.75));
|
|
if (nextWidth === currentWidth && nextHeight === currentHeight) {
|
|
break;
|
|
}
|
|
|
|
currentWidth = nextWidth;
|
|
currentHeight = nextHeight;
|
|
}
|
|
|
|
return null;
|
|
} catch {
|
|
return null;
|
|
} finally {
|
|
if (image) {
|
|
image.free();
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Format a dimension note for resized images.
|
|
* This helps the model understand the coordinate mapping.
|
|
*/
|
|
export function formatDimensionNote(result: ResizedImage): string | undefined {
|
|
if (!result.wasResized) {
|
|
return undefined;
|
|
}
|
|
|
|
const scale = result.originalWidth / result.width;
|
|
return `[Image: original ${result.originalWidth}x${result.originalHeight}, displayed at ${result.width}x${result.height}. Multiply coordinates by ${scale.toFixed(2)} to map to original image.]`;
|
|
}
|