45 releases (15 stable)

new 1.7.3 Mar 19, 2024
1.7.0 Jan 15, 2024
1.6.0 Nov 14, 2023
1.4.0 Jun 9, 2023
0.1.6 Nov 26, 2020

#164 in Images

Download history 542/week @ 2023-12-04 634/week @ 2023-12-11 634/week @ 2023-12-18 323/week @ 2023-12-25 494/week @ 2024-01-01 677/week @ 2024-01-08 649/week @ 2024-01-15 694/week @ 2024-01-22 718/week @ 2024-01-29 692/week @ 2024-02-05 582/week @ 2024-02-12 1297/week @ 2024-02-19 1022/week @ 2024-02-26 899/week @ 2024-03-04 999/week @ 2024-03-11 662/week @ 2024-03-18

3,615 downloads per month
Used in 3 crates (via c2pa)

MIT/Apache

9.5MB
111K SLoC

C++ 67K SLoC // 0.2% comments C 32K SLoC // 0.1% comments Rust 11K SLoC // 0.0% comments Shell 1K SLoC // 0.3% comments Automake 252 SLoC // 0.5% comments Batch 228 SLoC // 0.2% comments M4 118 SLoC // 0.7% comments Python 60 SLoC // 0.6% comments

XMP Toolkit bindings for Rust

CI Latest Version codecov

Adobe's Extensible Metadata Platform (XMP) is a labeling technology that allows you to embed data about a file, known as metadata, into the file itself. More information on how partners and standards are using XMP is available at the XMP website.

Key features

This XMP Toolkit crate implements a subset of the XMP metadata standard. This toolkit allows a desktop or mobile application to:

  • Parse XMP metadata found in many file formats.
  • Inspect and modify the XMP data model.
  • Embed and update XMP metadata in many file formats.

The XmpMeta struct contains most of the API functions for these features and is the best place to get started in understanding this crate.

Contributions and feedback

We welcome contributions to this project. For information on contributing, providing feedback, and about ongoing work, see Contributing.

Requirements

The toolkit requires Rust version 1.70.0 or newer. When a newer version of Rust becomes required, a new minor (1.x.0) version of this crate will be released.

Crate features

This crate comes with the following features, which you can enable via your Cargo.toml file:

  • chrono - When enabled, adds conversions between XmpDateTime and chrono::DateTime<FixedOffset>.
  • crt_static - When enabled on Windows, uses the MSVC /MT build flag to request the static version of the C runtime instead of the dynamic version. This may help with avoiding conflicts with other libraries in the overall application. (This feature has no effect on any platform other than Windows.)

None of these features are enabled by default.

Supported platforms

The toolkit has been tested on the following operating systems:

  • Windows

    • Only the MSVC build chain is supported on Windows. As discussed in #155, we would welcome a PR to enable GNU build chain support on Windows.
  • MacOS (Intel and Apple silicon)

  • Ubuntu Linux on x86 and ARM v8 (aarch64)

C++ XMP Toolkit

This crate incorporates the December 2023 version of the C++ Adobe XMP Toolkit SDK.

When a newer version of the C++ XMP Toolkit is incorporated, a new minor (1.x.0) version of this crate will be released.

Upgrading from earlier versions

This API is considered to to be stable; in other words, no further breaking changes are anticipated. For instructions on how to upgrade from various 0.x versions to 1.x, see the Upgrading guide.

Minor, non-breaking additions to the API surface may be added as the few remaining APIs in the C++ XMP_Meta, XMP_Files, and TXMPUtils interfaces are exposed. Such changes will trigger minor (1.x.0) version increments when they happen.

Usage

Add this to your Cargo.toml:

[dependencies]
xmp_toolkit = "1.7.3"

License

The xmp_toolkit crate is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE and LICENSE-MIT.

Note that some components and dependent crates are licensed under different terms; please check the license terms for each crate and component for details.

Dependencies