如何将像素艺术图像的整个图像文件夹转换为双倍大小而不会模糊像素?我尝试使用 mogrify 但模糊了图像的内部。(边境工程)
问问题
38 次
1 回答
1
通常为了保留像素而不模糊,您会使用-scale
or -sample
。使用文档中有很好的示例和详细说明。
mogrify pixels/*.png -scale 100x100 -path ./scale
mogrify pixels/*.png -sample 100x100 -path ./sample
于 2014-05-07T14:08:52.093 回答