Skip to content

Commit 01737e2

Browse files
committed
Move mime saving provider to last position
1 parent 8392452 commit 01737e2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/registry.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ add_format(format"CRW", UInt8[0x49,0x49,0x1a,0x00,0x00,0x00,0x48,0x45], ".crw",
4343
add_format(format"CUR", UInt8[0x00,0x00,0x02,0x00], ".cur", [:ImageMagick])
4444
add_format(format"DCX", UInt8[0xb1,0x68,0xde,0x3a], ".dcx", [:ImageMagick])
4545
add_format(format"DOT", UInt8[0xd0,0xcf,0x11,0xe0,0xa1,0xb1,0x1a,0xe1], ".dot", [:ImageMagick])
46-
add_format(format"EPS", UInt8[0x25,0x21,0x50,0x53,0x2d,0x41,0x64,0x6f], ".eps", [:FileIO, SAVE], [:ImageMagick])
46+
add_format(format"EPS", UInt8[0x25,0x21,0x50,0x53,0x2d,0x41,0x64,0x6f], ".eps", [:ImageMagick], [:FileIO, SAVE])
4747
add_format(format"HDR", UInt8[0x23,0x3f,0x52,0x41,0x44,0x49,0x41,0x4e], ".hdr", [:ImageMagick])
4848
add_format(format"ICO", UInt8[0x00,0x00,0x01,0x00], ".ico", [:ImageMagick])
4949
add_format(format"INFO", UInt8[0x7a,0x62,0x65,0x78], ".info",[:ImageMagick])
5050
add_format(format"JP2", UInt8[0x00,0x00,0x00,0x0c,0x6a,0x50,0x20,0x20], ".jp2", [:ImageMagick])
5151
add_format(format"PDB", UInt8[0x73,0x7a,0x65,0x7a], ".pdb", [:ImageMagick])
52-
add_format(format"PDF", UInt8[0x25,0x50,0x44,0x46], ".pdf", [:FileIO, SAVE], [:ImageMagick])
52+
add_format(format"PDF", UInt8[0x25,0x50,0x44,0x46], ".pdf", [:ImageMagick], [:FileIO, SAVE])
5353
add_format(format"PGM", UInt8[0x50,0x35,0x0a], ".pgm", [:ImageMagick])
5454
add_format(format"PSD", UInt8[0x38,0x42,0x50,0x53], ".psd", [:ImageMagick])
5555
add_format(format"RGB", UInt8[0x01,0xda,0x01,0x01,0x00,0x03], ".rgb", [:ImageMagick])
@@ -75,9 +75,9 @@ add_format(
7575
format"PNG",
7676
UInt8[0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a],
7777
".png",
78-
[:FileIO, SAVE],
7978
[:QuartzImageIO, OSX],
80-
[:ImageMagick]
79+
[:ImageMagick],
80+
[:FileIO, SAVE]
8181
)
8282
add_format(
8383
format"TIFF",

0 commit comments

Comments
 (0)