Merge branch 'main' into port_cpp_qrcode

This commit is contained in:
Henry Schimke
2023-03-20 10:29:14 -05:00
3 changed files with 9740 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "rxing" name = "rxing"
version = "0.4.1" version = "0.4.2"
description="A rust port of the zxing barcode library." description="A rust port of the zxing barcode library."
license="Apache-2.0" license="Apache-2.0"
repository="https://github.com/rxing-core/rxing" repository="https://github.com/rxing-core/rxing"

View File

@@ -136,6 +136,7 @@ impl Luma8LuminanceSource {
self.data = new_data; self.data = new_data;
self.dimensions = new_dim; self.dimensions = new_dim;
self.original_dimension = (self.original_dimension.1, self.original_dimension.0); self.original_dimension = (self.original_dimension.1, self.original_dimension.0);
self.origin = (self.origin.1, self.origin.0);
} }
fn transpose(&mut self) { fn transpose(&mut self) {

File diff suppressed because it is too large Load Diff