feat: add Favicon Generator app with ImageMagick WASM support

This commit is contained in:
2026-02-26 17:48:16 +01:00
parent d99c88df0e
commit 1f1b138089
16 changed files with 987 additions and 5 deletions

23
types/favicon.ts Normal file
View File

@@ -0,0 +1,23 @@
import { ConversionResult } from './media';
export interface FaviconIcon {
name: string;
size: number;
width: number;
height: number;
blob?: Blob;
previewUrl?: string;
}
export interface FaviconSet {
icons: FaviconIcon[];
manifest: string;
htmlCode: string;
}
export interface FaviconOptions {
name: string;
shortName: string;
backgroundColor: string;
themeColor: string;
}