* @param xmpXml
* String containing XMP XML.
*/
public void updateXmpXml(final InputStream src, final OutputStream os, final String xmpXml)
throws ImageReadException, IOException, ImageWriteException {
final ByteSource byteSource = new ByteSourceInputStream(src, null);
updateXmpXml(byteSource, os, xmpXml);
}