Understand my version of ImageMagick
Posted: 2009-09-14T10:42:53-07:00
I have a series of questions, but in order to ask them correctly, and to place in correct area, I need assistance in identifying the type of ImageMagick I am referring to.
I have a cloud account with Mosso.com
via php, ImageMagick is standard.
/usr/bin/convert
is the path to the convert command.
My successful work in calling and performing image conversions are as such
<?php
$size = getimagesize($sourcefile);
exec("convert -density 300x300 -size '$size[0]'x'$size[1]' $sourcefile -flatten +adjoin $coutputfile");
exec("convert -depth 8 -density 300x300 -size '$size[0]'x'$size[1]' xc:none test.psd[2] test.psd[3] test.psd[4] test.psd[5] -flatten +adjoin test/output4.png");
exec("convert -depth 8 -density 300x300 -size '$size[0]'x'$size[1]' xc:none test.psd[2] -composite +adjoin test/output11.png");
exec("convert -depth 8 -density 300x300 test.psd[3] test/output5.png");
exec("convert -depth 8 -density 300x300 test.psd[4] test/output6.png");
exec("convert -depth 8 -density 300x300 test.psd[5] test/output7.png");
?>
So, as I desire to post questions, I am looking for answers of the fashion, and usage as done above.
ImageMagick seems to have soooooo many types, I am lost to begin a forum question in a systemic method that will benefit me and or others.
Any help would be appreciated.
Thank you in advance.
I have a cloud account with Mosso.com
via php, ImageMagick is standard.
/usr/bin/convert
is the path to the convert command.
My successful work in calling and performing image conversions are as such
<?php
$size = getimagesize($sourcefile);
exec("convert -density 300x300 -size '$size[0]'x'$size[1]' $sourcefile -flatten +adjoin $coutputfile");
exec("convert -depth 8 -density 300x300 -size '$size[0]'x'$size[1]' xc:none test.psd[2] test.psd[3] test.psd[4] test.psd[5] -flatten +adjoin test/output4.png");
exec("convert -depth 8 -density 300x300 -size '$size[0]'x'$size[1]' xc:none test.psd[2] -composite +adjoin test/output11.png");
exec("convert -depth 8 -density 300x300 test.psd[3] test/output5.png");
exec("convert -depth 8 -density 300x300 test.psd[4] test/output6.png");
exec("convert -depth 8 -density 300x300 test.psd[5] test/output7.png");
?>
So, as I desire to post questions, I am looking for answers of the fashion, and usage as done above.
ImageMagick seems to have soooooo many types, I am lost to begin a forum question in a systemic method that will benefit me and or others.
Any help would be appreciated.
Thank you in advance.