Last active
September 26, 2015 22:28
-
-
Save jmoz/1169074 to your computer and use it in GitHub Desktop.
Imagick stripImage
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$file = '/home/moz/Desktop/canon-ixus.jpg'; | |
$i = new Imagick($file); | |
print_r($i->getImageProperties('exif:*')); | |
$i->stripImage(); | |
$i->writeImage($file . '2'); | |
$i->readImage($file . '2'); | |
print_r($i->getImageProperties('exif:*')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment