feat: .bmp support

This commit is contained in:
not-nullptr 2025-04-17 19:36:06 +01:00
parent fdec0c77e9
commit d75e89e570
2 changed files with 2 additions and 0 deletions

View File

@ -24,6 +24,7 @@ export class VipsConverter extends Converter {
new FormatInfo("gif", true, true), new FormatInfo("gif", true, true),
new FormatInfo("heic", true, false), new FormatInfo("heic", true, false),
new FormatInfo("ico", true, false), new FormatInfo("ico", true, false),
new FormatInfo("bmp", true, false),
new FormatInfo("cur", true, false), new FormatInfo("cur", true, false),
new FormatInfo("ani", true, false), new FormatInfo("ani", true, false),
new FormatInfo("icns", true, false), new FormatInfo("icns", true, false),

View File

@ -26,6 +26,7 @@ const magickRequiredFormats = [
".ani", ".ani",
".cr2", ".cr2",
".nef", ".nef",
".bmp",
]; ];
const unsupportedFrom: string[] = []; const unsupportedFrom: string[] = [];
const unsupportedTo = [...magickRequiredFormats]; const unsupportedTo = [...magickRequiredFormats];