immeta 0.1.0

An image metadata parsing library
docs.rs failed to build immeta-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: immeta-0.4.0

immeta, an image metadata inspection library in Rust

Build Status crates.io

Documentation

immeta is an image metadata processing library. It allows you to inspect metadata, that is, image dimensions, color information, etc. of various image formats.

Currently the following image formats are supported:

  • JPEG
  • PNG 1.2
  • GIF (87a and 89a)

Support for more will come in future versions.

Important note: this library is not intended to load actual image contents, i.e. the pixel data. If you need this functionality, consider using other libraries like image.

Usage

Just add a dependency in your Cargo.toml:

[dependencies]
immeta = "*"

You can see an example on how to use it in tests/test.rs.

License

This library is licensed under MIT license.


Copyright (c) Vladimir Matveev, 2015