Originally posted by: Galahad
Hi y'all. Can anyone tell me how to implement a GDI+ in Windows CE? Obviously the libraries used are not supported in Windows CE. Your help is greatly appreciated. Thanks
Originally posted by: TruBic
Hi Every Body
I want to use the features provided by GdiPlus, but the Microsoft Platform SDK too big to download. Can any one send me a copy of GdiPlus header files and the .lib file (I'm using Window98)
Thanks
ReplyOriginally posted by: Tyrone Lee
GDI+ as well as the entire .NET platform seems to be a great disappointment for application developers. VB.NET is no VB at all, but an OOP hybrid language. Basically the .NET platfom is a waste.
There is no reason for both WinXP, and the .NET platform to have such *EXTREME* system requirements and perform slowly.
In short:
Stay away from .NET.
Tyrone Lee
Lead DP Software Developer
DNR, MD
Reply
Originally posted by: Lionel
Hi folks, I'm trying to use Intel Image processing library with GDI+. I'm loading images and creating cached bitmaps ala microsoft's example. I'll include it here for reference:
Bitmap bitmap(L"Some image.jpg");
UINT width = bitmap.GetWidth();
UINT height = bitmap.GetHeight();
CachedBitmap cBitmap(&bitmap, &graphics);
For the image processing functions, Intel needs "a pointer to the image source buffer." How do I get a pointer to the source buffer if, for example, I'm using the above code? Thank you very much in advance. -Lionel
ReplyOriginally posted by: Dolly
I met a problem when I was using GDI+.
Linking...
Starting GDIPlus.obj : error LNK2001: unresolved external symbol _GdiplusShutdown@8
Who can help me?
ReplyOriginally posted by: Ahmar Waqas
I read about GDI+ in MSDN 2002 for the first time and was pleased to see the cool things GDI+ can do (transparancy is example). At that time I was wishing to get some help about it from somewhere, now i've got it.
Thank!
Reply
Originally posted by: Trevor Johnson
Linking...
Why do some people seem to have an easy time getting this to work and not others. I have W2KPRO, VC++6.0 and downloaded the SDK.
----------------
int GetEncoderClsid(const WCHAR* format, CLSID* pClsid); // Helper Function
return 0;
I have been able to download, compile and run a couple of the sample apps but I can't seem to get one of my own to work. I am adding things a step at a time to try and figure out where I am having trouble. When I try to compile the code below it fails with a link error:
gdiplus.dll : fatal error LNK1136: invalid or corrupt file
Error executing link.exe.
#include "stdafx.h"
#include <windows.h>
#include <gdiplus.h>
#include <stdio.h>
using namespace Gdiplus;
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
// TODO: Place code here.
}
Originally posted by: Florian Patzke
I try to load a bitmap resource in a Bitmap.
the bitmap construcor expects Bitmap(HINSTANCE,int) , where HINSTACNE should be the handle to the instance.
when I use AfxGetInstanceHandle() i get an error messege that HINSTANCE has to be const unsigned short*
how do I cast HINSTANCE to const unsigned short* ?
GDI+ is a little strange sometimes...
CU
Florian
Originally posted by: Pritesh Sidhdhapura
I tried to use GDI+ functions in my application (created in Doc/View archi.). It seems Mapping mode for, GDI+ differs from that of normal application.
I'm still not able to figreout the problem.
Originally posted by: Ende
SetROP2
--------------------------------------------------------------------------------
I can't find a substitute for SetROP2.
I want to draw in inverted color but I don't know how to.
With GDI I can use SetROP2 function to set how colors are
combined with the background, but I don't see something like that in GDI+.
Anyone can help me?
Reply