FIX BSE decode

This commit is contained in:
2025-06-12 17:59:39 +08:00
parent ecaa9cc213
commit 8bed66d4f1
4 changed files with 114 additions and 40 deletions

View File

@@ -299,3 +299,15 @@ pub struct ReplacementTable {
#[serde(flatten)]
pub map: HashMap<String, String>,
}
#[cfg(feature = "image")]
pub enum ImageColorType {
Grayscale,
Rgb24,
Rgba32,
}
#[cfg(feature = "image")]
pub enum ImageOutputType {
Png,
}