I am extracting images from a MySQL database using the MySQL ++ API. I get images like mysqlpp :: sql_mediumblob representing a row. Now I want to rotate some images using GDI +, but I'm not sure how to use this constructor:
Image::Image(IStream*,BOOL) - Creates an Image object based on a stream.
with the image that is stored in blob. Thanks in advance.
source
share