Fix zstd not loaded

This commit is contained in:
2025-10-14 13:56:57 +08:00
parent a21672e7e9
commit 419941b96e
8 changed files with 57 additions and 5 deletions

23
ArcFormats/ImageJXL.cs Normal file
View 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" };
// }
// }
}