I am extracting images from a MySQL database using the MySQL++ API. I get the images as mysqlpp::sql_mediumblob which is representation of string. Now I want to rotate some pictures using GDI+, but I am not sure how to use this constructor:
Image::Image(IStream*,BOOL) - Creates an Image object based on a stream.
with the image that is kept in the blob. Thanks in advance.