vote up 4 vote down star
2

Can I convert a bitmap to PNG in memory (i.e. without writing to a file) using only the Platform SDK? (i.e. no libpng, etc.).

I also want to be able to define a transparent color (not alpha channel) for this image.

The GdiPlus solution seems to be limited to images of width divisible by 4. Anything else fails during the call to Save(). Does anyone know the reason for this limitation and how/whether I can work around it?

Update: Bounty

I'm starting a bounty (I really want this to work). I implemented the GDI+ solution, but as I said, it's limited to images with quad width. The bounty will go to anyone who can solve this width issue (without changing the image dimensions), or can offer an alternative non-GDI+ solution that works.

flag
to get you started, i found an example to save an bitmap as png with gdi+: dotnet-snippets.de/dns/… maybe it's useful – Johannes Schaub - litb Dec 14 '08 at 17:39
This solution works for me, even with images where width is not divisible by 4. I'm on Windows Vista and using Visual C++ 2008. – friol Feb 11 at 19:38
Why don't you want to use libpng? It has a very permissive license. – Adam Rosenfield Feb 11 at 20:10
Does libpng do in-memory encoding? (or just to files?) – Assaf Feb 12 at 11:20
You can hook libpng's output using png_set_write_fn and do whatever you want with it. – timday Feb 12 at 20:35
show 1 more comment

8 Answers

vote up 7 vote down check

I read and write PNGs using libpng and it seems to deal with everthing I throw at it (I've used it in unit-tests with things like 257x255 images and they cause no trouble). I believe the API is flexible enough to not be tied to file I/O (or at least you can override its default behaviour e.g see png_set_write_fn in section on customization)

In practice I always use it via the much cleaner boost::gil PNG IO extension, but unfortunately that takes char* filenames and if you dig into it the png_writer and file_mgr classes in its implementation it seem pretty tied to FILE* (although if you were on Linux a version using fmemopen and in-memory buffers could probably be cooked up quite easily).

link|flag
vote up 1 vote down

LodePNG is a lib-less PNG encoder/decoder.

link|flag
vote up 4 vote down

The CImage class (ATL/MFC) supports saving into PNG format. Like the GDI+ solution, it also supports saving to a stream. Here's some code I use to save it to a CByteArray:

CByteArray baPicture;
IStream *pStream = NULL;
if (CreateStreamOnHGlobal(NULL, TRUE, &pStream) == S_OK)
{
    if (image.Save(pStream, Gdiplus::ImageFormatPNG) == S_OK)
    {
    ULARGE_INTEGER ulnSize;
        LARGE_INTEGER lnOffset;
        lnOffset.QuadPart = 0;
        if (pStream->Seek(lnOffset, STREAM_SEEK_END, &ulnSize) == S_OK)
        {
            if (pStream->Seek(lnOffset, STREAM_SEEK_SET, NULL) == S_OK)
            {   					
                baPicture.SetSize(ulnSize.QuadPart);
                ULONG ulBytesRead;
                pStream->Read(baPicture.GetData(), ulnSize.QuadPart, &ulBytesRead);
            }
        }
    }
}
pStream->Release();

I don't know if you'd want to use ATL or MFC, though.

link|flag
Alas, there's no ATL/MFC in my project. – Assaf Feb 12 at 11:14
ok... maybe the stream save part could be useful, it should be similar to the one using GDI+ – djeidot Feb 12 at 12:08
This helped me for something I was working on, +1 for that at least. – Aardvark Feb 12 at 15:39
I'm pretty sure this uses libpng – Adam Tegen Feb 12 at 23:42
vote up 2 vote down

If you want to only use Windows APIs, WIC (http://msdn.microsoft.com/en-us/library/ms737408(VS.85).aspx) is the way to accomplish this, and it supports both Bitmaps and PNGs.

link|flag
Are you certain it doesn't suffer from the same weird width limitation as GDI+? – Assaf Feb 12 at 11:19
No, not certain - but WIC is definitely more modern and kept up-to-date than GDI+ – Paul Betts Feb 12 at 17:02
vote up 1 vote down

GDI's (old school, non-plus) has a GetDIBBits method that can be asked to output bits using PNG compression (BI_PNG). I wonder if this could be used to create a PNG file? Using GetDIBBits to write standard bitmap files is complicated enough - so i suspect this would be even more difficult.

link|flag
vote up 5 vote down

I've used GDI+ for saving a bitmap as a PNG to a file. You should probably check out the MSDN info about GDI+ here and in particular this function GdipSaveImageToStream.

This tutorial here will probably provide some help as well.

link|flag
vote up 9 vote down

On this site the code shows how convert a bitmap to PNG writing it to a file: http://dotnet-snippets.de/dns/gdi-speichern-eines-png-SID814.aspx. Instead of writing to a file, the Save method of Bitmap also supports writing to a IStream (http://msdn.microsoft.com/en-us/library/ms535406%28VS.85%29.aspx). You can create a Stream backed up by memory using the CreateStreamOnHGlobal API function. (http://msdn.microsoft.com/en-us/library/aa378980%28VS.85%29.aspx). The used library, GDI+, is included in Windows up from WindowsXP, and works in Windows up from Windows98. I've never done something with it, just googled around. Looks like you can use that, though.

link|flag
vote up 2 vote down

It would probably be better to use a library instead of reinventing the wheel yourself.

Look into freeImage

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.