Typo3:GIFBUILDER 在图像顶部添加扭曲的文本
Typo3: GIFBUILDER add distorted text on top of image
我想打开一张空白目录图片并在上面应用一些倾斜(扭曲)的文本。
我有这个错字片段:
/**
* 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'
根据文档 (https://docs.typo3.org/typo3cms/TyposcriptReference/Gifbuilder/ObjectNames/Index.html),到 TEXT 对象,但似乎根本没有考虑它。
结果是这样的:
niceText 似乎与 SCALE 不相配。
我删除了 niceText,现在可以正确显示文本了。
我想打开一张空白目录图片并在上面应用一些倾斜(扭曲)的文本。 我有这个错字片段:
/**
* 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'
根据文档 (https://docs.typo3.org/typo3cms/TyposcriptReference/Gifbuilder/ObjectNames/Index.html),到 TEXT 对象,但似乎根本没有考虑它。 结果是这样的:
niceText 似乎与 SCALE 不相配。 我删除了 niceText,现在可以正确显示文本了。