I am saving images into database with doctrine. mapped with this
/** @Column(type="blob") **/
protected $data;
and everything seems to be ok.. I can persist the image data into db this way
$largeImage = new ImageData();
$handle = fopen($imagePath, "r");
$bytes = fread($handle, filesize($imagePath));
$largeImage->setData(base64_encode($bytes));
fclose($handle);
$entityManager->persist($largeImage);
$entityManager->flush();
ok.. the data is saved.. but when i need to read I am not being able
var_dump($image->getData());
// outputs resource(1) of type (stream)
so I try this
$fp = fopen('image.jpg', 'w');
fwrite($fp, base64_decode(stream_get_contents($image->getData())));
fclose($fp);
and the contents of the file is not from a image.. so the image is not rendered by the windows photo viewer