exiftool -all:all= filename.jpg in Perl CGI

Started by PossibleAce, June 17, 2013, 03:20:10 PM

Previous topic - Next topic

PossibleAce

Hello,
This issue has been solved.

system("exiftool -all:all= $file2$ext");

Phil Harvey

To do this in the API:

my $exifTool = new Image::ExifTool;
$exifTool->SetNewValue('all:all');
$exifTool->WriteInfo("$file2$ext");


- Phil
...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).