mirror of
https://github.com/lifegpc/GARbro.git
synced 2026-07-08 01:31:41 +08:00
Fix zstd not loaded
This commit is contained in:
23
ArcFormats/ImageJXL.cs
Normal file
23
ArcFormats/ImageJXL.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.ComponentModel.Composition;
|
||||
using System.IO;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
|
||||
namespace GameRes.Formats
|
||||
{
|
||||
// [Export(typeof(ImageFormat))]
|
||||
// public class JxlImageFormat : ImageFormat, IDisposable
|
||||
// {
|
||||
// public override string Tag { get { return "JXL"; } }
|
||||
// public override string Description { get { return "JPEG XL image format"; } }
|
||||
// public override uint Signature { get { return 0; } } // JXL signature starts with 0xFF 0x0A
|
||||
// public override bool CanWrite { get { return false; } }
|
||||
|
||||
// public JxlImageFormat()
|
||||
// {
|
||||
// Extensions = new[] { "jxl" };
|
||||
// }
|
||||
// }
|
||||
}
|
||||
Reference in New Issue
Block a user