Recuperación del identificador de clase para un codificador
La función GetEncoderClsid del ejemplo siguiente recibe el tipo MIME de un codificador y devuelve el identificador de clase (CLSID) de ese codificador. Los tipos MIME de los codificadores integrados en GDI+ de Windows son los siguientes:
- image/bmp
- image/jpeg
- image/gif
- image/tiff
- image/png
La función llama a GetImageEncoders para obtener una matriz de objetos ImageCodecInfo . Si uno de los objetos ImageCodecInfo de esa matriz representa el codificador solicitado, la función devuelve el índice del objeto ImageCodecInfo y copia el CLSID en la variable a la que apunta pClsid. Si se produce un error en la función, devuelve –1.
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
}
La siguiente aplicación de consola llama a la función GetEncoderClsid para determinar el CLSID del codificador PNG:
#include <windows.h>
#include <gdiplus.h>
#include <stdio.h>
using namespace Gdiplus;
#include "GdiplusHelperFunctions.h"
INT main()
{
// Initialize GDI+.
GdiplusStartupInput gdiplusStartupInput;
ULONG_PTR gdiplusToken;
GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
CLSID encoderClsid;
INT result;
WCHAR strGuid[39];
result = GetEncoderClsid(L"image/png", &encoderClsid);
if(result < 0)
{
printf("The PNG encoder is not installed.\n");
}
else
{
StringFromGUID2(encoderClsid, strGuid, 39);
printf("An ImageCodecInfo object representing the PNG encoder\n");
printf("was found at position %d in the array.\n", result);
wprintf(L"The CLSID of the PNG encoder is %s.\n", strGuid);
}
GdiplusShutdown(gdiplusToken);
return 0;
}
Al ejecutar la aplicación de consola anterior, obtendrá una salida similar a la siguiente:
An ImageCodecInfo object representing the PNG encoder
was found at position 4 in the array.
The CLSID of the PNG encoder is {557CF406-1A04-11D3-9A73-0000F81EF32E}.