Я пытаюсь, чтобы длинная строка текста появлялась на нескольких строках.несколько строк с image_magick
Есть ли способ для автоматического обертывания текста?
<%
image = MiniMagick::Image.open("public/output4.jpg")
image.combine_options do |c|
c.font 'Arial'
c.pointsize '30'
c.gravity "center"
c.size '360x'
c.fill 'white'
c.annotate '0,0', "this is a multi-line text paragraph this is a multi-line text paragraph"
end
image.write "public/output4.jpg"
%>
UPDATE Я также попытался заменить пояснение подписи ... и получить следующее сообщение об ошибке
MiniMagick::Error (Command ("mogrify -pointsize 30 -gravity center -size 360x -fill white caption:this is a multi-line text paragraph this is a multi-line text paragraph /var/folders/1s/dh01tgyn3j39f673v1d_xywc0000gn/T/mini_magick20140103-15012-11w3xtz.jpg") failed: {:status_code=>1, :output=>"mogrify: no encode delegate for this image format `this is a multi-line text paragraph this is a multi-line text paragraph' @ error/constitute.c/WriteImage/1195.\n"}):
Я посетил это раньше. Предложения для кода? – user749798