My problem is I am trying to insert a large amount of RDF data into a jpeg image, specifically into the XMP headers. The RDF is specific to my application, with custom namespaces etc. However this should not affect the process of inserting RDF. I can do this with a small amount of RDF data, however I reach the XMP packet size limit when I try to insert anything larger.
I am using Java and the Apache Sanselan lib, however I'm open to use other libs.
Below is the code I am using in a test app to do this, however I do not know how to split it over multiple XMP packets in order for me to insert all the data I need to.
Any help or pointers in the right direction would be greatly appreciated :)
Thanks
private static File writeXmpToFile(File file, String xmpXmlAsString)
throws FileNotFoundException, ImageReadException, IOException,
ImageWriteException {
String XmpXmlAsString = xmpXmlAsString;
File fileWithXmpXml = new File(file.getParent(), file.getName()+ ".added-xmp" + ".jpg");
OutputStream os = null;
try {
os = new BufferedOutputStream(new FileOutputStream(fileWithXmpXml));
new JpegXmpRewriter().updateXmpXml(new ByteSourceFile(file), os, XmpXmlAsString);
} finally {
if (os != null) {
os.close();
}
os = null;
}
return fileWithXmpXml;
}
Quoting Adobe XMP Specification part 3:
Most of the metadata managing code currently only deals with the standard XMP part which fits into a single APP1 segment - either reading or writing. Exiftool seems to be fine with ExtendedXMP.
For the ExtendedXMP structure and how it is included in JPEG multiple segments, I answered a question here.
Basically, you need to split the entire XMP data into two parts: a standard XMP which will be fit into one APP1 segment with packet wrapper and an ExtendedXMP which is also a well-formed XMP but with no packet wrapper. The ExtendedXMP part could be any size and if it exceed the limit of a single APP1, it will be split and insert into multiple APP1 segment.
The above linked code could also insert large XMP data as long as you split it into two parts and keep the standard XMP part smaller than one APP1 segment limit.