daedalOS/utils/imagemagick/formats.ts
2023-11-30 22:48:58 -08:00

22 lines
255 B
TypeScript

export const IMAGE_DECODE_FORMATS = new Set([
".bmp",
".gif",
".ico",
".jpeg",
".jpg",
".png",
".psd",
".tiff",
".xcf",
]);
export const IMAGE_ENCODE_FORMATS = [
".bmp",
".gif",
".jpg",
".png",
".psd",
".svg",
".tiff",
];