AutoOrient loses all tags

PerlMagick is an object-oriented Perl interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning PerlMagick.
Post Reply
skualito
Posts: 2
Joined: 2016-09-01T01:18:58-07:00
Authentication code: 1151

AutoOrient loses all tags

Post by skualito »

Hello,

I do an auto-orient on my image, it works well but i found that it remove all tags too...

Code: Select all

my $image = Image::Magick->new();
$image->Read($in);
$image->AutoOrient();
$image->Write($out);
Am i doing something wrong ?

I use Image::ExifTool version 10.10

Thanks for your help
skualito
Posts: 2
Joined: 2016-09-01T01:18:58-07:00
Authentication code: 1151

Re: AutoOrient loses all tags

Post by skualito »

ok sorry it was a mistake in my process script, everything is ok ;)
Post Reply