Browse Source

chore: move libheif below vips

C4illin 5 tháng trước cách đây
mục cha
commit
ad98499da0
2 tập tin đã thay đổi với 5 bổ sung5 xóa
  1. 1 1
      README.md
  2. 4 4
      src/converters/main.ts

+ 1 - 1
README.md

@@ -26,8 +26,8 @@ A self-hosted online file converter. Supports over a thousand different formats.
 |------------------------------------------------------------------------------|---------------|---------------|-------------|
 | [libjxl](https://github.com/libjxl/libjxl)                                   | JPEG XL       | 11            | 11          |
 | [resvg](https://github.com/RazrFalcon/resvg)                                 | SVG           | 1             | 1           |
-| [libheif](https://github.com/strukturag/libheif)                             | HEIF          | 7             | 6           |
 | [Vips](https://github.com/libvips/libvips)                                   | Images        | 45            | 23          |
+| [libheif](https://github.com/strukturag/libheif)                             | HEIF          | 2             | 4           |
 | [XeLaTeX](https://tug.org/xetex/)                                            | LaTeX         | 1             | 1           |
 | [Calibre](https://calibre-ebook.com/)                                        | E-books       | 26            | 19          |
 | [Pandoc](https://pandoc.org/)                                                | Documents     | 43            | 65          |

+ 4 - 4
src/converters/main.ts

@@ -50,14 +50,14 @@ const properties: Record<
     properties: propertiesresvg,
     converter: convertresvg,
   },
-  libheif: {
-    properties: propertiesLibheif,
-    converter: convertLibheif,
-  },
   vips: {
     properties: propertiesImage,
     converter: convertImage,
   },
+  libheif: {
+    properties: propertiesLibheif,
+    converter: convertLibheif,
+  },
   xelatex: {
     properties: propertiesxelatex,
     converter: convertxelatex,