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