Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
I get an error message : convert: Unrecognized option (-strip). Is it because the strip option was implemented after version 5.4.7? If that's the case, is there a work around I could use to get the same result as strip?
Is there a file format that would not retain the info that -strip gets rid of? This way, I could convert my files to this file format first and then convert them back to jpeg.
<?php
// Build the array of items to be used
exec("convert convert -list list", $IMarray, $code);
// Start the loop to find and display the results
foreach ($IMarray as $value) {
echo "<br>system (\"convert -list $value\")";
echo "<pre>";
system("convert -list $value");
echo "</pre><hr>";
}
?>