从当前图像获取文件名

时间:2012-12-03 09:52:32

标签: typo3 typoscript

任何人都可以告诉我如何获取当前图像文件名。我必须链接当前图像才能在灯箱中打开它。

我的代码:

15 = TEXT
    15 {
      field = image
      split {


        token = ,
        cObjNum = 1 || 3 || 3


        //ignore
        1....


        3 {
          10 = IMAGE
          10.file.import.current = 1
          10.file.import = uploads/pics/
          10.file.maxW = 270
          10.params = class="hidden"

          10.imageLinkWrap = 1
          10.imageLinkWrap {
            enable = 1
            typolink.parameter = TEXT
            typolink.parameter.field = image
            typolink.parameter.listNum.splitChar = ,

            typolink.parameter.listNum = // <- Need current image number
            typolink.parameter.wrap = /uploads/pics/|

2 个答案:

答案 0 :(得分:3)

你应该在img mainpulation期间设置一些特殊的变量。来自TYPO3 wiki

IMG_RESOURCE: 渲染img_resource TYPO3时设置TSFE:lastImgResourceInfo这是一个图像信息的数值数组

TSFE:lastImgResourceInfo|0 contains the width (after scaling) of the image
TSFE:lastImgResourceInfo|1 contains the height (after scaling) of the image
TSFE:lastImgResourceInfo|2 contains the image file extension
TSFE:lastImgResourceInfo|3 contains the path to the (scaled) image file
TSFE:lastImgResourceInfo|origFile contains the name (path?) of the original file
TSFE:lastImgResourceInfo|origFile_mtime contains the the last modification time of the original file

因此您可以将它们用于数据

10 = TEXT
10.data = TSFE:lastImgResourceInfo|3

答案 1 :(得分:0)

http://wiki.typo3.org/TSref/stdWrap#current http://www.typo3wizard.com/de/snippets/general-config/bild-aus-media-feld.html

字段“图片”

lib.images=TEXT
lib.images.data= levelmedia: 2,slide
lib.images.wrap=<div id="bilder">|</div>
lib.images.split{
token=,
cObjNum=1
1.10=IMAGE
1.10.file{
 import.current=1
 import=uploads/media/
 width = 270
 height= 300
}
}