fix: add heic input/output

This commit is contained in:
loks0n
2025-01-21 18:06:20 +00:00
parent 15aa0e0315
commit bc3ac237be
2 changed files with 7 additions and 6 deletions
+7 -5
View File
@@ -1,8 +1,10 @@
<?php
return [ // Accepted inputs files
'jpg' => 'image/jpeg',
'jpeg' => 'image/jpeg',
'gif' => 'image/gif',
'png' => 'image/png',
return [
// Accepted inputs files
"jpg" => "image/jpeg",
"jpeg" => "image/jpeg",
"gif" => "image/gif",
"png" => "image/png",
"heic" => "image/heic",
];
-1
View File
@@ -8,6 +8,5 @@ return [
"png" => "image/png",
"webp" => "image/webp",
"heic" => "image/heic",
"heics" => "image/heic",
"avif" => "image/avif",
];