I'm new to PHP. How I can use blob in CodeIgniter? What is the best option for sending an image from the server to a client (RESTful) using codeigniter?
I have tried the following:
$newPerson = new Person();
$newPerson->id = 1;
$newPerson->firstName = "Qutfullo";
$newPerson->lastName = "Ochilov";
$image=new Imagick();
$image->setImage("my.jpg");
$newPerson->image=$image->getImageBlob();
$this->response($newPerson);
But I get an exception:
Fatal error: Class 'Imagick' not found.
Thanks for help!