Skip to content

Releases: Goncalerta/tiff-encoder

v0.3.2

06 Apr 23:10
Compare
Choose a tag to compare

Feature

  • Added with_entries to insert multiple entries into an IFD at once.

v0.3.1

10 Mar 11:25
Compare
Choose a tag to compare

Feature

  • TIFF types and TiffTypeValues now implement #[Debug, PartialEq] so as to make unit testing easier.

v0.3.0

09 Mar 17:40
Compare
Choose a tag to compare

Feature

  • Macros for conveniently create TIFF type values.
  • Prelude module to import the most common items from this crate.
  • ::values functions in TIFF types have a more generic signature that allows anything that can be borrowed as a slice.

Refactor

  • API was restructured in multiple files and modules.

BREAKING CHANGES

  • IFD (the TIFF type, do not confuse with Ifd) constructor taken away from public API (there is no need to construct IFDs directly, use OffsetsToIfds instead).
  • API was completely restructured.

v0.2.1

09 Mar 12:04
Compare
Choose a tag to compare

Fix

  • If writing the file to a path that doesn't exist, automatically create all missing directories.

v0.2.0

09 Mar 12:03
Compare
Choose a tag to compare

Feature

  • TiffFile::write_to can now be used with any type implementing AsRef<Path>, instead of being limited to &str.

v0.1.2

09 Mar 12:03
Compare
Choose a tag to compare

Performance

  • Increase performance of ByteBlock.

Documentation

  • Minor tweaks.
  • Fix failed documentation tests.

v0.1.1

09 Mar 12:02
Compare
Choose a tag to compare

Documentation

  • Improved documentation, adding examples to Datablock and Byteblock.
  • Deleted github pages with documentation, as it can be accessed from docs.rs.

v0.1.0

09 Mar 12:01
Compare
Choose a tag to compare

Initial release