Is there any way to prevent typo3/typoscript IMAGE object from adding the dimension attributes (height and width) to the generated image tag?

UPDATE (Thanks to cascaval)!

The solution is to use IMG_RESOURCE instead of IMAGE. It apparently has less bells an whistles but gives you complete control of the the generated image tag.

   10 = IMG_RESOURCE
   10.file.import = uploads/tx_templavoila/
   10.file.import.current = 1
   10.file.import.listNum = 0
   10.stdWrap.required = 1
   10.stdWrap.wrap (
      <img src="|" />
   )

Note: This is for use with Templavoila.

link|improve this question

80% accept rate
The result of IMG_RESOURCE is just a path, a resource. That's why it actually cannot have any other bells and whistles as IMAGE has. All the non-standard modifications are then done with stdWrap. – cascaval Jan 16 at 15:05
feedback

1 Answer

up vote 2 down vote accepted

No but you can use IMG_RESOURCE object instead and wrap the resulting image path so that you get a HTML tag you want. Example:

temp.image_test = IMG_RESOURCE
temp.image_test {
  stdWrap.wrap = <img src="|" />
  file = GIFBUILDER
  file {
    format = jpg
    quality = 90
    maxWidth = 9999
    maxHeight = 9999
    XY = [10.w],[10.h]

    10 = IMAGE
    10.file {
      import = uploads/pics/
      import.field = image
      import.listNum = 0
    }

    20 = SCALE
    20 {
      width = 200
    }
  }
}
link|improve this answer
It work with IMG_RESOURCE though it had to change the code somewhat (see update in post) – jens_profile Jan 16 at 11:26
My code is just a theoretical example. It only demonstrates the main "trick" and that is stdWrap.wrap to wrap the path. – cascaval Jan 16 at 14:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.