Change dpi image from 72 to 96 using php

I want to change the dpi of an image from 72 to 96 using GD or php.

thanks in advance.

+3
source share
1 answer

You can set the resolution using PHP iMagick:

public function setDPI($DPIX, $DPIY) {

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

}
0
source

Source: https://habr.com/ru/post/1796449/


All Articles