I'm using Yii 1.1.6 I've coded a class that use GD and Imagick PHP extension. In mine, I declare a variable
class Myclass(){
public function __construct()
{
$imagick = new Imagick();
}
// something more
}
I put my class into component folder.
In controller, as usual,
$image = new MyClass();
But yii notify me error 500: include(Imagick.php): failed to open stream: No such file or directory. I understand that means Yii doesn't recognize class and file Imagick in component folder?????
Any idea for my problem? Please show me how to use Imagick and GD wright way in Yii.
P.s: I find out http://www.yiiframework.com/extension/image/, but, if I use that way, I'll rewrite my class, and it's just only used for Yii, I want to use my class for some projects.
UPDATE: Sorry about my foolish, I still work well on my Mac at home and my server but at office computer, I didn't config correctly for those extension.
You didn't install php5-imagick package. You can read about it at php.net
After installation you code will work perfectly.
On Ubuntu: