I'm building a Web application that will handle image files that will ultimately be printed, large format.

As part of this, I need to get (i.e. read) and set (i.e. change) the DPI of an image file.

Is this possible through PHP GD or PHP Imagick?

Thanks,

BK


Edit:

The DPI of a image can be accessed through iMagick's getImageResolution method:

public function getDPI() {

    $imgDPI = $this->image->getImageResolution();
    return $imgDPI;

}

and the DPI of an image can be set through iMagick's setImageResolution method:

public function setDPI($DPIX, $DPIY) {

    $this->image->setImageResolution($DPIX,$DPIY);

}
link|improve this question

feedback

2 Answers

In a primitive bitmap format like those that GD outputs, the dpi setting is merely a meta information that the processing application can use to convert the pixel size into a physical unit.

As far as I know, it is not possible to manipulate metadata directly in GD. You'd have to use an external library for that.

That said, I don't think it is really necessary. Just generate the image in whatever pixel dimensions you need (the number of pixels is the really relevant information!), and tell the printing process what dpi setting to use.

link|improve this answer
feedback
up vote 0 down vote accepted

See my edit for the answer of how to get/set DPI with iMagick.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.