在我的网站上,我允许用户使用图片上指定的文字行创建图片
目前我用于那个imagemagick转换 - 我指定svg模板并让转换做其余的
这是代码的一部分,负责输出图片中的文本
<text text-anchor="middle" x="50%%" y="%s"
font-family="Times New Roman" font-size="55"
style="fill:rgb(255,255,255);">
%s
</text>
我的问题是,如果用户提供非常长的字符串,则文字不适合图像。
如果文字不适合图片,我希望将文字自动调整为较小的字体。是否可以使用svg模板?如果没有,那可能是其他解决方案
答案 0 :(得分:4)
您可以在SVG模板中添加一个脚本,该模板在加载SVG时调用,并使用getComputedTextLength()来调整字体大小。这是一个hacky解决方案,但似乎有效。
这是一个快速示例,它在其中绘制一个框和一些文本。文本应该调整大小,以便总是适合框,无论它多长时间(至少指向):
在加载SVG时调用代码包括SVG标记中的onload =“int(evt)”。
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="400" height="80"
onload="init(evt)">
然后是实际的脚本:
<script type="text/ecmascript">
<![CDATA[
function init(evt)
{
if ( window.svgDocument == null )
{
svgDocument = evt.target.ownerDocument;
}
maximum_length = 300;
my_text = svgDocument.getElementById('text-to-resize');
for (var font_size=55; font_size>0; font_size--)
{
if(my_text.getComputedTextLength() < maximum_length){break;}
my_text.setAttributeNS(null, "font-size", font_size);
}
}
]]>
</script>
我只是使用for循环来减小字体大小,直到文本长度小于指定的最大值;我确信有更好的方法可以调整文本大小。
最后是实际的文字和方框:
<rect id="rect1" x="20" y="10" width="320" height="50" fill="white" stroke="black"/>
<text id="text-to-resize"
text-anchor="middle"
x="170" y="50"
font-family="Times New Roman" font-size="55">
whatever text
</text>
</svg>
如果更改文本,则应更改字体大小,使其适合框内。您可能希望更改x和y值以使文本正确居中。
答案 1 :(得分:2)
通过放弃svg并使用imagemagick convert和mvg template
完成所有事情来解决这是简化的脚本示例,以防任何人追求类似的东西
脚本在画布上放置图像和标题。 title使用单独的convert命令创建,保存为临时文件,然后放到画布上
#!/bin/sh
TEMPLATE="
push graphic-context
viewbox 0 0 600 600
affine 1 0 0 1 0.0 0.0
push graphic-context
fill 'rgb(0,0,0)'
rectangle 0,0 600,600
pop graphic-context
push graphic-context
image Over 38,38 338,338 '%s'
pop graphic-context
push graphic-context
image Over 36,400 529,55 '%s'
pop graphic-context
pop graphic-context
";
#1. creating label fitting specified proportions
#2. converting mvg template to jpeg image (and trimming it in process)
#3. removing temp file with label
convert -size 529x55 -background black -family "Times New Roman" -gravity center -fill white label:"$2" "tmp/$1title.jpg" && printf "$TEMPLATE" "images/$1.jpg" "tmp/$1title.jpg" | convert mvg:- -trim +repage -bordercolor black -border 36 "images/$1converted.jpg" && rm "tmp/$1title.jpg"
#script parameters: $1 is image id, $2 is title text