feat(project): optimize image imports and converter

- Optimize imported scene preview images (smart WebP/JPEG/PNG, preserve alpha, keep pixel size)

- Update converter to re-encode existing image assets with same algorithm

- Improve import/export progress overlay and reduce presentation slide stutter

Made-with: Cursor
This commit is contained in:
Ivan Fontosh
2026-04-23 17:59:57 +08:00
parent 1d051f8bf9
commit 8f8eef53c9
33 changed files with 3684 additions and 68 deletions
@@ -0,0 +1,14 @@
import type { Buffer } from 'node:buffer';
export type OptimizeImageImportResult = {
buffer: Buffer;
mime: string;
ext: string;
width: number;
height: number;
passthrough: boolean;
};
export function optimizeImageBufferVisuallyLossless(
input: Buffer,
): Promise<OptimizeImageImportResult>;