JPEG handler for embedding and extracting XMP packets in Swarmauri runtimes.
Project description
swarmauri_xmp_jpeg
swarmauri_xmp_jpeg ships the JPEGXMP handler for embedding, reading, and removing XMP packets from JPEGs via APP1 segments that follow Adobe's namespace header.
Features
- Immediate discovery – derives from
EmbedXmpBaseso dynamic registry consumers can import it automatically. - Header accuracy – produces APP1 payloads prefixed with
http://ns.adobe.com/xap/1.0/\x00as required by the specification. - Defensive parsing – iterates markers safely and halts at SOS to avoid corrupting scan data.
Installation
# pip
pip install swarmauri_xmp_jpeg
# uv
uv add swarmauri_xmp_jpeg
Usage
from pathlib import Path
from swarmauri_xmp_jpeg import JPEGXMP
handler = JPEGXMP()
photo_path = Path("example.jpg")
xmp_packet = """<x:xmpmeta xmlns:x='adobe:ns:meta/'><rdf:RDF>...</rdf:RDF></x:xmpmeta>"""
# Insert the packet right after the SOI marker
updated_bytes = handler.write_xmp(photo_path.read_bytes(), xmp_packet)
photo_path.write_bytes(updated_bytes)
# Confirm it can be recovered later
restored_xml = handler.read_xmp(updated_bytes)
print(restored_xml)
# Strip the packet if needed
clean_bytes = handler.remove_xmp(updated_bytes)
Why it works
- APP1 discipline – the implementation builds a compliant APP1 segment with the canonical XMP namespace string.
- Dynamic registration – inheriting from
EmbedXmpBasemeans the handler is registered automatically for plugin discovery. - Robust parsing – helper iterators validate segment structure, stopping safely at SOS or malformed markers.
Project Resources
- Source: https://github.com/swarmauri/swarmauri-sdk
- License: Apache 2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file swarmauri_xmp_jpeg-0.1.1.dev40.tar.gz.
File metadata
- Download URL: swarmauri_xmp_jpeg-0.1.1.dev40.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c75e0ce89553a96e544127b71d88047df6eb52719bc4a890344cb96041ce5e0
|
|
| MD5 |
0c76225085e3ff7ba9850a91b90d4400
|
|
| BLAKE2b-256 |
fda7a1e3a3d1445a66a438b5abc04fcd9b30ca0c0d044ad0bdb638bfdbe47532
|
File details
Details for the file swarmauri_xmp_jpeg-0.1.1.dev40-py3-none-any.whl.
File metadata
- Download URL: swarmauri_xmp_jpeg-0.1.1.dev40-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85a18fa634a0f4b944299daebc541b53d2ba61595e1812ac0cb4d9ac7f2272f3
|
|
| MD5 |
44464fbfe68357517dc869b4b4c54ba8
|
|
| BLAKE2b-256 |
d19d81d874dc54536fb2e6a22ef4cb701f1a2718c8a3b1fbaebbb8c39c222e08
|