0

我的代码是这样写的。
它将“text_here”插入到上传的图像文件中。
此文本为白色,后面有黑色阴影。
尽管我说-pointsize 15两次,但它只扩大了

has_attached_file :user_avatar,
    :styles => {
    :thumb=> "100x100>",
    :small  => "400x400>" }, 
     :convert_options => {
     :small => ' -gravity south -stroke "#000C" -strokewidth 2 -annotate 0 " text_here! " -pointsize 15 -stroke none -fill white -annotate 0 " text_here! " -pointsize 15' }
4

1 回答 1

1

a/我不完全知道你想做什么,但把 -pointsize 放在 -annotate 之前。

b/如果一个是黑色阴影,为什么需要两个不同的点大小。

c/ 你为什么使用 stroke ?

试试这个:

 :small => ' -gravity south  -pointsize 15 -fill black -annotate +0+0 " text_here! " -fill white -annotate +2+2 " text_here! "' }
于 2013-01-03T20:27:25.257 回答