Actions
Feature #28699
closedGraphicsmagick User Command
Status:
Rejected
Priority:
Could have
Assignee:
-
Category:
Image Generation / GIFBUILDER
Target version:
-
Start date:
2011-08-03
Due date:
% Done:
0%
Estimated time:
PHP Version:
5.3
Tags:
Complexity:
Sprint Focus:
Description
i cant find a way to place my own user command to gifbuilder->graphicsmagick.
so i wrote just 3 lines in t3lib_stdGraphic::IMparams() after all other cases:
function IMparams($setup) {
....
case 'user':
$commands .= ' ' . $value;
break;
}
with this i can produce duplex (sepia) images via ts like:
page.10 = IMAGE
page.10.file = GIFBUILDER
page.10.file {
XY = [10.w],[10.h]
10 = IMAGE
10.file = fileadmin/1.jpg
20 = EFFECT
30.value = user = -colorspace RGB -modulate 130,0,100 -colorize 100/70/0/10
}
maybe this is a way to support full functions of graphicsmagick an not only predefined?
or is there another way to place my own commands?
kind regards
carsten
Actions