I have an image of 72DPI and i want to change this to 300DPI for printing purposes,
I want all the stuff need to be done with imagick, tried with the code following but no positive results.
<?
$im = new Imagick();
$im->setResolution(72,72);
$im->setOption('density','300x300');
$im->readImage("test.png");
header("Content-Type: image/png");
echo $im;
?>
can someone help/clarify me the usage of setoption or can some one explain hot to change DPI in either iMagick or GD
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…