TYPO3:仅为一个变量裁剪图像

时间:2016-02-16 09:44:47

标签: typo3 crop typoscript

我有类似

的东西
page.10.variables {
    content < styles.content.get
    content.stdWrap.wrap = <div class="content">|</div>
    content.select.where = colPos = 0

    teaser < styles.content.get
    teaser.select.where = colPos = 4
    teaser.stdWrap.wrap = <div class="teaser">|</div>
    teaser.stdWrap.required = 1
}

我希望裁剪{teaser}内的图像,同时将图像保留在{content}未剪切的内部。
如何管理?

我目前正在运行T3 7.4但我也在努力将其升级到7.6.2

1 个答案:

答案 0 :(得分:1)

您可以为每列设置不同的图像尺寸:

temp.tt_content.image < tt_content.image
tt_content.image = CASE
tt_content.image {
key.field=colPos
    1 < temp.tt_content.image
    2 < temp.tt_content.image
    3 < temp.tt_content.image
    default < temp.tt_content.image
    1.20.width= 145c #col-02
    2.20.width= 190c #col-04
    3.20.width= 100c
    1.20.height= 145c #col-02
    2.20.height= 190c #col-04
    3.20.height= 100c
    default.20.maxW= 345
}
temp.tt_content.image >