How to use Windows Imaging Framework

Started by leandrojardim, April 25, 2012, 11:04:34 PM

Previous topic - Next topic

leandrojardim

I have this code as seen in MSDN:


#include <windows.h>
#include <wincodec.h>

void foobar (void) {
HRESULT Result = 0;
IWICImagingFactory *Factory = NULL;

CoInitialize(NULL);
Result = CoCreateInstance(CLSID_WICImagingFactory, NULL, CLSCTX_INPROC_SERVER, IID_IWICImagingFactory, IID_PPV_ARGS(&Factory));


D:\Documentos do Leandro\Pelles C Projects\Alien - Cópia\ball.c(255): error #2140: Type error in argument 1 to 'CoCreateInstance'; expected 'LPCGUID const' but found 'UOW'.
D:\Documentos do Leandro\Pelles C Projects\Alien - Cópia\ball.c(255): error #2140: Type error in argument 4 to 'CoCreateInstance'; expected 'LPCGUID const' but found 'UOW'.
D:\Documentos do Leandro\Pelles C Projects\Alien - Cópia\ball.c(255): warning #2018: Undeclared function 'IID_PPV_ARGS'; assuming 'extern' returning 'int'.
D:\Documentos do Leandro\Pelles C Projects\Alien - Cópia\ball.c(255): error #2140: Type error in argument 5 to 'CoCreateInstance'; expected 'void * *' but found 'int'.

But it doesnt compile. What do I need to modify to make it work as expected?

Thanks!

TimoVJL

You example was for C++.
So
#define IID_PPV_ARGS(ppType) ((void**)(ppType))
Result = CoCreateInstance(&CLSID_WICImagingFactory, NULL, CLSCTX_INPROC_SERVER, &IID_IWICImagingFactory, IID_PPV_ARGS(&Factory));

orResult = CoCreateInstance(&CLSID_WICImagingFactory, NULL, CLSCTX_INPROC_SERVER, &IID_IWICImagingFactory, (void**)&Factory);
May the source be with you

leandrojardim


_SIL_

Is there a way to use IWICImagingFactory or  IImagingFactory on WinCe???
In winmobile SDK no wincodec.h. Need help!

TimoVJL

QuoteIImagingFactory on WinCe???
Requirements

OS Versions: Windows CE 5.0 and later.
Header: Imaging.h
Link Library: Imaging.lib

It is COM based and Imaging.h is for C++ only.

http://msdn.microsoft.com/en-us/library/aa452202
http://www.microsoft.com/en-us/download/details.aspx?id=17310
May the source be with you

_SIL_

Thanks, timovjl.
I need only draw several *png with transparency on my form. In evc4 i have worked sample, but i like pelles more than evc.
Maybe you can suggest me easy way to do that in pelles с ? ???
Target prog is very simple so i would't want to overload by libpng or cximage librarys....


Stefan Pendl

How about using GDI+ instead, if that is available on WinCE?
---
Stefan

Proud member of the UltraDefrag Development Team

TimoVJL

#7
Here is simple example with partially converted header file.
May the source be with you

_SIL_

Quote from: timovjl on August 07, 2012, 10:12:31 PM
Here is simple example with partially converted header file.
Wow! You Great! Compilled sample work fine!

Can you show your ImgTest.h? Please!!!

TimoVJL

May the source be with you

_SIL_

#10
Many, many thanks!!!
Work fine with CreateImageFromStream() too.

For using GetImageInfo() ImgTest.h also need that
typedef INT PixelFormat;

struct ImageInfo{
    GUID RawDataFormat;
    PixelFormat PixelFormat;
    UINT Width, Height;
    UINT TileWidth, TileHeight;
    double Xdpi, Ydpi;
    UINT Flags;
};

Thanks!

-----
screen from my prog: http://lostpic.net/images/ccca17b85f423d928e4bcd61626f03dc.png