mirror of https://github.com/VERT-sh/VERT.git
feat: .bmp support
This commit is contained in:
parent
fdec0c77e9
commit
d75e89e570
|
@ -24,6 +24,7 @@ export class VipsConverter extends Converter {
|
|||
new FormatInfo("gif", true, true),
|
||||
new FormatInfo("heic", true, false),
|
||||
new FormatInfo("ico", true, false),
|
||||
new FormatInfo("bmp", true, false),
|
||||
new FormatInfo("cur", true, false),
|
||||
new FormatInfo("ani", true, false),
|
||||
new FormatInfo("icns", true, false),
|
||||
|
|
|
@ -26,6 +26,7 @@ const magickRequiredFormats = [
|
|||
".ani",
|
||||
".cr2",
|
||||
".nef",
|
||||
".bmp",
|
||||
];
|
||||
const unsupportedFrom: string[] = [];
|
||||
const unsupportedTo = [...magickRequiredFormats];
|
||||
|
|
Loading…
Reference in New Issue