"Gdiplus::GdiplusBase::operator new 函数不接受3 个参数"问题的处理

最近开始使用VS别写MFC程序,遇到这样的问题令我极为郁闷,于是查找了一下,找到了解决方案:原来是微软的 DEBUG_NEW 和 GDI+ 不匹配造成的。
方法:
注释掉:
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
这就好了。
详细见:
Microsoft Foundation Classes DEBUG_NEW Does Not Work with GDI+
http://support.microsoft.com/kb/317799/
原文地址:https://www.cnblogs.com/AlexanderZhao/p/12878988.html