IMagick without root access

IMagick is a native PHP extension to create and modify images using the ImageMagick API. ImageMagick Studio LLC did not write nor does it maintain the IMagick extension, however, IMagick users are welcome to discuss the extension here.
Post Reply
MARTES

IMagick without root access

Post by MARTES »

Hello all,

can somebody help me, with my Problem?

I have a webpaket, with no root access and also no IMagick installed.
But I need IMagick, to do something for me, so what can I do?
I have tried to get it working with a cgi script but it was only for typo 3.

My Script is working like this one:

Code: Select all

$button = new Imagick();
$draw = new ImagickDraw();
$draw->setFont($ttfname);
$draw->setFontSize($ttfsize);
$draw->setFillColor(new ImagickPixel($fontColor));
$fontdetails = $button->queryFontMetrics($draw, $caption);
$button->annotateImage($draw, $textMarginLeft, 23 + $margin['top'], 0, $caption);
code is not complete, and will not work; I know.
It is only mentioned to show you how i use IMagick and i search a solution, which will not end in writing a new script.

Can somebody help me.

Greetings
Post Reply