<code>
#include <windows.h>
#include <gdiplus.h>
#include <stdio.h>
using namespace Gdiplus;
#pragma comment(lib, "gdiplus.lib")
int GetEncoderClsid(const WCHAR* format, CLSID* pClsid)
{
UINT num = 0; // number of image encoders
UINT size = 0; // size of the image encoder
array in bytes
ImageCodecInfo* pImageCodecInfo = NULL;
GetImageEncodersSize(&num, &size);
if(size == 0)
return -1; // Failure
pImageCodecInfo = (ImageCodecInfo*)(malloc(size));
if(pImageCodecInfo == NULL)
return -1; // Failure
GetImageEncoders(num, size, pImageCodecInfo);
for(UINT j = 0; j < num; ++j)
{
if( wcscmp(pImageCodecInfo[j].MimeType, format) ==
0 )
{
*pClsid = pImageCodecInfo[j].Clsid;
free(pImageCodecInfo);
return j; // Success
}
}
free(pImageCodecInfo);
return -1; // Failure
}
INT main()
{
// Initialize GDI+.
GdiplusStartupInput gdiplusStartupInput;
ULONG_PTR gdiplusToken;
GdiplusStartup(&gdiplusToken, &gdiplusStartupInput,
NULL);
CLSID encoderClsid;
Status stat;
Image* image = new Image(L"Bird.bmp");
// Get the CLSID of the PNG encoder.
GetEncoderClsid(L"image/png", &encoderClsid);
stat = image->Save(L"Bird.png", &encoderClsid, NULL);
if(stat == Ok)
printf("Bird.png was saved successfully\n");
else
printf("Failure: stat = %d\n", stat);
delete image;
GdiplusShutdown(gdiplusToken);
return 0;
}
</code>
"Giovanni Dicanio" <giovanniDOTdicanio@REMOVEMEgmail.com>
ha scritto nel messaggio
news:egTZ1gYuKHA.4908@TK2MSFTNGP06.phx.gbl...
"Peter Olcott" <NoSpam@OCR4Screen.com> ha scritto nel
messaggio
news:rfKdndhqLPufrhHWnZ2dnUVZ_vOdnZ2d@giganews.com...
Now I have the problem simplified down to this command
line code sample will not compile:
http://msdn.microsoft.com/en-us/library/ms533837(VS.85).aspx
I am getting a bunch of link errors, here is one of
them:
gdipng.obj : error LNK2019: unresolved external symbol
_GdipFree@4 referenced in function "public: static void
__cdecl Gdiplus::GdiplusBase::operator delete(void *)"
Did you link with gdiplus.lib ?
Giovanni