Die TYPO3 Mailingliste - nicht fragen: lesen!
This is a discussion on [TYPO3] rounded.corners within the typo3-english@lists.netfielders.de forums, part of the TYPO3-Mailinglists: ENGLISH category; Hi, I am trying to use the extension rounded.corners. Unfortunately it does not work. The original picture will be ...
|
|||||||
| Registrieren | Hilfe | Benutzerliste | Kalender | Suchen | Heutige Beiträge | Alle Foren als gelesen markieren |
|
#1
|
|||
|
|||
|
Hi, I am trying to use the extension rounded.corners. Unfortunately it
does not work. The original picture will be replaced by a white square. The name will be changed to the original filename with the extension "-rounded". I was trying to change in the install-section the word “combine†with “compositeâ€, but without success. I am working with Typo 4.1.5 and IM 4.2.9. Any suggestions? Thanks a lot. _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
|
#2
|
|||
|
|||
|
ImageMagick commands have changed slightly between versions. I am have used
IM-6.2.4 with rounded_corners. I first got similar commands working from the command line and then ended up editing class.ux_tslib_content.php in the extension. The 'compose over' part seemed to be important but this may well be different for IMv4. Steve Hewett //perform transformation if (file_exists($cornerNE)) { $cmd = t3lib_div::imageMagickCommand('composite', '-compose over -gravity NorthEast '.$cornerNE .' '.$info[3].' '.$newfile); exec($cmd); } if (file_exists($cornerNW)) { $cmd = t3lib_div::imageMagickCommand('composite', '-compose over -gravity NorthWest '.$cornerNW .' '.$newfile .' '.$newfile); exec($cmd); } if (file_exists($cornerSE)) { $cmd = t3lib_div::imageMagickCommand('composite', '-compose over -gravity SouthEast '.$cornerSE .' '.$newfile .' '.$newfile); exec($cmd); } if (file_exists($cornerSW)) { $cmd = t3lib_div::imageMagickCommand('composite', '-compose over -gravity SouthWest '.$cornerSW .' '.$newfile .' '.$newfile); exec($cmd); } -----Original Message----- From: Othmar Voser [mailto:info (AT) om-v (DOT) com] Sent: 09 March 2008 15:40 To: typo3-english (AT) lists (DOT) netfielders.de Subject: [TYPO3] rounded.corners Hi, I am trying to use the extension rounded.corners. Unfortunately it does not work. The original picture will be replaced by a white square. The name will be changed to the original filename with the extension "-rounded". I was trying to change in the install-section the word "combine" with "composite", but without success. I am working with Typo 4.1.5 and IM 4.2.9. Any suggestions? Thanks a lot. _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
| Themen-Optionen | Thema durchsuchen |
| Ansicht | Thema bewerten |
|
|
|
||||
| Thema | Autor | Forum | Antworten | Letzter Beitrag |
| [TYPO3-german] rounded.corners | Othmar Voser | typo3-german@lists.netfielders.de | 2 | 09.03.2008 17:18 |