Giriş
Açıklaması şöyle.
Şöyle yaparız
Şöyle yaparız
Açıklaması şöyle.
removeExifMetadata metoduReads a Jpeg image, removes all EXIF metadata (by removing the APP1 segment), and writes the result to a stream.
Şöyle yaparız
FileInputStream is = new FileInputStream(new File("/path/to/photo.jpg"));
FileOutputStream os = new FileOutputStream(new File("/path/to/photo_without.jpg")))
new ExifRewriter().removeExifMetadata(is, os);
updateExifMetadataLossless metoduŞöyle yaparız
File jpegImageFile = ...
OutputStream os = ...;
TiffOutputSet outputSet = ...;
new ExifRewriter().updateExifMetadataLossless(jpegImageFile, os, outputSet);
Hiç yorum yok:
Yorum Gönder