Elenco dei codificatori installati
GDI+ fornisce la funzione GetImageEncoders in modo da poter determinare quali codificatori di immagini sono disponibili nel computer. GetImageEncoders restituisce una matrice di oggetti ImageCodecInfo . Prima di chiamare GetImageEncoders, è necessario allocare un buffer sufficientemente grande per ricevere tale matrice. È possibile chiamare GetImageEncodersSize per determinare le dimensioni del buffer necessario.
L'applicazione console seguente elenca i codificatori di immagini disponibili:
#include <windows.h>
#include <gdiplus.h>
#include <stdio.h>
using namespace Gdiplus;
INT main()
{
// Initialize GDI+.
GdiplusStartupInput gdiplusStartupInput;
ULONG_PTR gdiplusToken;
GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
UINT num; // number of image encoders
UINT size; // size, in bytes, of the image encoder array
ImageCodecInfo* pImageCodecInfo;
// How many encoders are there?
// How big (in bytes) is the array of all ImageCodecInfo objects?
GetImageEncodersSize(&num, &size);
// Create a buffer large enough to hold the array of ImageCodecInfo
// objects that will be returned by GetImageEncoders.
pImageCodecInfo = (ImageCodecInfo*)(malloc(size));
// GetImageEncoders creates an array of ImageCodecInfo objects
// and copies that array into a previously allocated buffer.
// The third argument, imageCodecInfo, is a pointer to that buffer.
GetImageEncoders(num, size, pImageCodecInfo);
// Display the graphics file format (MimeType)
// for each ImageCodecInfo object.
for(UINT j = 0; j < num; ++j)
{
wprintf(L"%s\n", pImageCodecInfo[j].MimeType);
}
free(pImageCodecInfo);
GdiplusShutdown(gdiplusToken);
return 0;
}
Quando si esegue l'applicazione console precedente, l'output sarà simile al seguente:
image/bmp
image/jpeg
image/gif
image/tiff
image/png