* @param os OutputStream to write the image to.
*/
public void removeExifMetadata(InputStream src, OutputStream os)
throws ImageReadException, IOException, ImageWriteException
{
ByteSource byteSource = new ByteSourceInputStream(src, null);
removeExifMetadata(byteSource, os);
}