- bugfix: make sure all bytes are processed by the zstd encoder

- bump dependencies
This commit is contained in:
Wim Pomp
2024-12-23 15:29:08 +01:00
parent 49f8ab4115
commit 7fdfb7c9dc
4 changed files with 43 additions and 13 deletions

View File

@@ -11,6 +11,7 @@ struct PyTag {
tag: Tag,
}
/// Tiff tag, use one of the constructors to get a tag of a specific type
#[pymethods]
impl PyTag {
#[staticmethod]
@@ -150,6 +151,7 @@ impl PyTag {
}
}
/// get the number of values in the tag
fn count(&self) -> u64 {
self.tag.count()
}