gdiplus 从字符串构造图像
我正在使用 MySQL++ API 从 MySQL 数据库中提取图像。 我得到的图像为 mysqlpp::sql_mediumblob ,它是字符串的表示形式。 现在我想使用 GDI+ 旋转一些图片,但我不知道如何使用这个构造函数:
Image::Image(IStream*,BOOL) - Creates an Image object based on a stream.
使用保存在 blob 中的图像。 提前致谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如此处所述: http://msdn.microsoft.com /en-us/library/aa378980(VS.85).aspx
然后将 spStream 传递给 Gdiplus::Image 构造函数。
As noted here: http://msdn.microsoft.com/en-us/library/aa378980(VS.85).aspx
Then pass spStream to the Gdiplus::Image constructor.