我设法在我的头像上实现了一个圆角后期处理。它在我的 Mac 上运行良好,但在 Windows 上没有骰子。
看起来像这样
def self.convert_options(px = 10)
trans = ""
trans << " \\( +clone -alpha extract "
trans << "-draw 'fill black polygon 0,0 0,#{px} #{px},0 fill white circle #{px},#{px} #{px},0' "
trans << "\\( +clone -flip \\) -compose Multiply -composite "
trans << "\\( +clone -flop \\) -compose Multiply -composite "
trans << "\\) -alpha off -compose CopyOpacity -composite "
end
基于http://www.imagemagick.org/Usage/thumbnails/#rounded & Rounded corners with Paperclip
我开始犯的一大堆错误
convert.exe: unable to open image `\\(': No such file or directory @ error/blob.c/OpenBlob/2638.
我想这可能与 Windows 转义字符有关?所以将 \ 更改为 ^ 但得到了这个错误
convert.exe: unable to open image `black': No such file or directory @ error/blob.c/OpenBlob/2638.
ImageMagick 正在工作,否则。它管理更简单的处理/调整大小。如果我使用 GIT BASH 将命令直接输入到 shell 中,那么该行会毫无问题地生成圆角文件。