Image Magik Issue Upon Installation

 
Post new topic   Reply to topic    Aprelium Forum Index -> PHP
View previous topic :: View next topic  
Author Message
rmt99e
-


Joined: 11 May 2015
Posts: 1
Location: United States

PostPosted: Mon May 11, 2015 2:32 pm    Post subject: Image Magik Issue Upon Installation Reply with quote

Hello,

I have installed the latest Abyss for windows, as well as the latest PHP5 + Image Magik package.

When using the test code below I found on the forum, I am getting this error. What is going wrong?

Quote:
Fatal error: Uncaught exception 'ImagickException' with message 'UnableToOpenBlob `red-black': No such file or directory @ error/blob.c/OpenBlob/2642' in C:\Abyss Web Server\htdocs\img\test.php:7 Stack trace: #0 C:\Abyss Web Server\htdocs\img\test.php(7): Imagick->newpseudoimage(50, 50, 'gradient:red-bl...') #1 {main} thrown in C:\Abyss Web Server\htdocs\img\test.php on line 7


Test Code:
Code:
<?php

/* Create a new imagick object */
$im = new Imagick();

/* Create new image. This will be used as fill pattern */
$im->newPseudoImage(50, 50, "gradient:red-black");

/* Create imagickdraw object */
$draw = new ImagickDraw();

/* Start a new pattern called "gradient" */
$draw->pushPattern('gradient', 0, 0, 50, 50);

/* Composite the gradient on the pattern */
$draw->composite(Imagick::COMPOSITE_OVER, 0, 0, 50, 50, $im);

/* Close the pattern */
$draw->popPattern();

/* Use the pattern called "gradient" as the fill */
$draw->setFillPatternURL('#gradient');

/* Set font size to 52 */
$draw->setFontSize(52);

/* Annotate some text */
$draw->annotation(20, 50, "Hello World!");

/* Create a new canvas object and a white image */
$canvas = new Imagick();
$canvas->newImage(350, 70, "white");

/* Draw the ImagickDraw on to the canvas */
$canvas->drawImage($draw);

/* 1px black border around the image */
$canvas->borderImage('black', 1, 1);

/* Set the format to PNG */
$canvas->setImageFormat('png');

/* Output the image */
header("Content-Type: image/png");
echo $canvas;
?>
Back to top View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Aprelium Forum Index -> PHP All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB phpBB Group