Web Analytics Made Easy -
StatCounter GD Image to Database - CodingForum

Announcement

Collapse
No announcement yet.

GD Image to Database

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • GD Image to Database

    Instead of outputting my image to the browser or to a file, I would like the image to be put into a Database as a JPEG. I looked at PHP.NET and I coudn't figure out a way to do it.

    Can it be done? How?
    -mR_eGo
    _______________________
    Programming since
    3 years old.

  • #2
    Found out how ...
    Just Obend your output.


    ob_start();
    ImagePNG($im);
    $db = ob_get_contents();
    ob_end_clean();
    -mR_eGo
    _______________________
    Programming since
    3 years old.

    Comment

    Working...
    X