Create gdiplus: bitmap through byte array

Source: Internet
Author: User

In VC, we use GDI + for Graphic programming. It is known that image data is stored in byte arrays. We need to use this byte to create a bitmap and then process it. In this process, we need to use istream to implement it,CodeAs follows:

Void bytetobitmap (byte * pimagedata, int nsize)
{
Hresult hr;
Status SR;

Hglobal = globalalloc (gmem_moveable, nsize );
Lpvoid pvdata = NULL;
Pvdata = globallock (hglobal );
Memcpy (pvdata, pimagedata, nsize );
Globalunlock (hglobal );

Istream * pstream = NULL;
HR = createstreamonhglobal (hglobal, true, & pstream );

Bitmap BMP (pstream );
Sr = BMP. getlaststatus (); // sr = OK, indicating that bitmap is successfully created.

......
......

Globalfree (hglobal); // after using bitmap, you need to release resources to avoid Memory leakage.
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.