Project

General

Profile

Bug #65378

Updated by Simon Schaufelberger about 4 years ago

I am using following TypoScript to center an image on a specified rectangle. 
 This will not work after updating to 6.2.10 

 <pre> 
 lib.prodImage = COA 
 lib.prodImage { 
     10 = IMAGE 
     10 { 
         file = GIFBUILDER 
         file { 
             format = jpg 
             workArea = 0,0,200,200 
             XY = 200,200 
             backColor = #ffffff 
             quality = 95 

             10 = IMAGE 
             10 { 
                 file.import.current = 1 
                 file.maxH = 200 
                 file.maxW = 200 
                 align = c,c 
             } 
         } 
     } 
 } 
 </pre>

Back