开发者

Change dpi of an image from 72 to 96 using php

开发者 https://www.devze.com 2023-02-15 11:00 出处:网络
i want to change dpi of an image from 72 to 96 using GD or php.开发者_运维知识库 thanks in advance..You can set resolution with PHP iMagick:

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

开发者_运维知识库

thanks in advance..


You can set resolution with PHP iMagick:

public function setDPI($DPIX, $DPIY) {

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

}
0

精彩评论

暂无评论...
验证码 换一张
取 消