我想打开一个空白的目录图像并在其上面应用一些倾斜(扭曲)的文本。 我有这个typoscript片段:
/**
* Catalog image
*/
lib.catalogImage = IMAGE
lib.catalogImage {
file = GIFBUILDER
file {
XY = 242,270
format = png
quality = 80
10 = IMAGE
10 {
file = EXT:theme/Resources/Public/Images/catalog_blank.jpg
}
15 = IMAGE
15 {
offset = 20,20
file = GIFBUILDER
file {
XY = 150,50
10 = TEXT
10 {
text = Datenblatt
fontSize = 12
offset = 28,110
fontColor = black
niceText = 1
}
20 = SCALE
20 {
params = -matte -virtual-pixel transparent -distort Perspective '0,0,0,0 0,90,0,90 90,0,90,25 90,90,90,65'
}
}
}
}
}
问题是,我总是把文本框变成白色,里面没有文字。 我做错了什么?
空白目录图片:
结果图片:
修改
我也尝试过添加:
niceText.after = -matte -virtual-pixel transparent -distort Perspective '0,0,0,0 0,90,0,90 90,0,90,25 90,90,90,65'
到TEXT对象,根据文档(https://docs.typo3.org/typo3cms/TyposcriptReference/Gifbuilder/ObjectNames/Index.html),但似乎根本没有考虑。 结果如下:
答案 0 :(得分:0)
看起来niceText与SCALE不相处。 我删除了niceText,现在文本显示正确。