Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

1 Answer

I solved it by doing this:

$image = stream_get_contents($image->getData());
$hex = substr($image, 1);
$image =  pack("H*", $hex);

echo $image;

my $image content is a hex string started with x, if yours starts with 0x, do: substr($image, 2);

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.