命令行:convert.exe -density 200 -units PixelsPerInch -resize 1040x1471^> -background white -flatten xxx.png xx.jpeg.
设置分辨率:
接口:setResolution($this->rx,$this->ry); rx 和 ry 是宽高的分辨率。
命令行参数:-density 200 -units PixelsPerInch,其中,200就是宽高的分辨率,值越高越清晰,转出的图片越大。
白色背景:-background white -flatten 。
尺寸设置:-resize 1040x1471^> 。
注意:命令行转换中的参数最好放在前面,如果放在源文件和目标文件中间,可能会出现不起作用的情况,如:-density 200 -units PixelsPerInch 放在中间就不起作用。
转换 pdf 的命令:convert xx.pdf[1] xx.png。其中 1 为页数索引,从0开始。 pdf 默认转换的是透明背景,如果转为jpg格式必须添加背景色。