21 Mayıs 2020 Perşembe

Imaging ExifRewriter Sınıfı

Giriş
Açıklaması şöyle.
Reads a Jpeg image, removes all EXIF metadata (by removing the APP1 segment), and writes the result to a stream.
removeExifMetadata metodu
Şö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