-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use tiff tag types from tiff crate (#11)
* Add tiff TIFF decoding and encoding library in pure Rust! Repo at https://github.com/image-rs/image-tiff * Rename src/tiff.rs to src/geotiff.rs Reduce confusion when using the `tiff` crate later. * Use tiff tag type enums from upstream tiff crate Remove the TagType enum in src/lowlevel.rs, use tiff:tags:Type instead (https://docs.rs/tiff/0.9.1/tiff/tags/enum.Type.html). Added support for IFD, LONG8, SLONG8 and IFD8 types. * Fix clippy lint error on match_ref_pats Remove the & from the match statements. Xref https://rust-lang.github.io/rust-clippy/master/index.html#/match_ref_pats * Add note to main README.md on refactoring process to rely on tiff crate Also bumped up version in badge from v0.0.1 to v0.0.2 to match that in crates.io.
- Loading branch information
Showing
7 changed files
with
159 additions
and
95 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,4 @@ repository = "https://github.com/georust/geotiff" | |
byteorder = "*" | ||
enum_primitive = "*" | ||
num = "*" | ||
tiff = "0.9" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.