I has installed from this link http://phpimageworkshop.com/installation.html
But when I run wampserver in localhost is error
demo/ImageWorkshop.php
/index.php
/test.jpg
in index.php i using code:
<?php
require_once('C:\\wamp\www\demo\ImageWorkshop.php');
$norwayLayer = new ImageWorkshop(array(
"imageFromPath" => "norway.jpg",
));
?>
Error: Fatal error: Class 'ImageWorkshop' not found in C:\wamp\www\demo\index.php on line xx
Open ImageWorkshop.php file, and then remove the namespace declaration line 3:
And the namespace inclusion line 5:
Then, with your text editor, replace all the founded occurences “
static::” by “self::“.Final:
I has config successfull, good luck !!!