VC2005 编译MSDN中的例子 出来一大堆错误~不明白啊

狂放之歌 2006-03-29 09:13:42
/*
错误都定位在 GdiplusHeaders.h
GdiplusFlat.h
GdiplusPath.h
GdiplusMetafile.h
这些 都是安装文件啊~~哪里出了毛病啊?
121个..error!!
有三个是 VC2005 取消了默认类型 而且将这个作为错误发出
*/
#include <windows.h>
#include <stdio.h>
#include <gdiplus.h>
using namespace Gdiplus;

INT GetEncoderClsid(const WCHAR* format, CLSID* pClsid); // helper function


int _tmain(int argc, _TCHAR* argv[])
{
// Initialize GDI+.
GdiplusStartupInput gdiplusStartupInput;
ULONG_PTR gdiplusToken;
GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);

CLSID encoderClsid;
EncoderParameters encoderParameters;
ULONG quality;
Status stat;

// Get an image from the disk.
Image* image = new Image( _T("SmartCUT.bmp") );

// Get the CLSID of the JPEG encoder.
GetEncoderClsid(L"image/jpeg", &encoderClsid);

// Before we call Image::Save, we must initialize an
// EncoderParameters object. The EncoderParameters object
// has an array of EncoderParameter objects. In this
// case, there is only one EncoderParameter object in the array.
// The one EncoderParameter object has an array of values.
// In this case, there is only one value (of type ULONG)
// in the array. We will let this value vary from 0 to 100.

encoderParameters.Count = 1;
encoderParameters.Parameter[0].Guid = EncoderQuality;
encoderParameters.Parameter[0].Type = EncoderParameterValueTypeLong;
encoderParameters.Parameter[0].NumberOfValues = 1;

// Save the image as a JPEG with quality level 0.
quality = 0;
encoderParameters.Parameter[0].Value = &quality;
stat = image->Save(L"Shapes001.jpg", &encoderClsid, &encoderParameters);

if(stat == Ok)
wprintf(L"%s saved successfully.\n", L"Shapes001.jpg");
else
wprintf(L"%d Attempt to save %s failed.\n", stat, L"Shapes001.jpg");

// Save the image as a JPEG with quality level 50.
quality = 50;
encoderParameters.Parameter[0].Value = &quality;
stat = image->Save(L"Shapes050.jpg", &encoderClsid, &encoderParameters);

if(stat == Ok)
wprintf(L"%s saved successfully.\n", L"Shapes050.jpg");
else
wprintf(L"%d Attempt to save %s failed.\n", stat, L"Shapes050.jpg");

// Save the image as a JPEG with quality level 100.
quality = 100;
encoderParameters.Parameter[0].Value = &quality;
stat = image->Save(L"Shapes100.jpg", &encoderClsid, &encoderParameters);

if(stat == Ok)
wprintf(L"%s saved successfully.\n", L"Shapes100.jpg");
else
wprintf(L"%d Attempt to save %s failed.\n", stat, L"Shapes100.jpg");

delete image;
GdiplusShutdown(gdiplusToken);

return 0;
}

...全文
210 11 打赏 收藏 转发到动态 举报
写回复
用AI写文章
11 条回复
切换为时间正序
请发表友善的回复…
发表回复
DrSmart 2006-03-30
  • 打赏
  • 举报
回复
呵呵
狂放之歌 2006-03-30
  • 打赏
  • 举报
回复
将这个注释掉 头文件包含没有错误了

//#define WIN32_LEAN_AND_MEAN // 从 Windows 头中排除极少使用的资料

另外xing_xing_xing(ζ未名ζ) 的方法也有效..针对MFC/SDK通杀

from msdn:

Visual C++ Concepts: Building a C/C++ Program
Faster Builds and Smaller Header Files

To speed the build process, Visual C++ provides the following definitions that reduce the size of the Win32 header files by excluding some of the less common APIs:

* VC_EXTRALEAN
* WIN32_LEAN_AND_MEAN

VC_EXTRALEAN defines WIN32_LEAN_AND_MEAN and a number of NOservice definitions, such as NOCOMM and NOSOUND. (For a list of NOservice definitions, see the header file Windows.h and the MFC header file afxv_w32.h.)

Applications created with the Visual C++ application wizards use VC_EXTRALEAN automatically. You can manually define VC_EXTRALEAN in legacy MFC applications to speed their build process.

Non-MFC applications can define WIN32_LEAN_AND_MEAN and applicable NOservice definitions to reduce build times.

Trying to use an API excluded by these definitions causes compiler errors. If a program that defines NOCOMM or VC_EXTRALEAN tries to use PurgeComm, for example, the following errors result:

error C2065: 'PurgeComm' : undeclared identifier
error C2064: term does not evaluate to a function

十分感谢大家~
yuanss71 2006-03-29
  • 打赏
  • 举报
回复
头文件包含了两个相同的

低版本的 在前面
先检测到的版本的就出现这样的问题

调整 include 中的路径次序 可以解决
rageliu 2006-03-29
  • 打赏
  • 举报
回复
应该是头文件的包含问题
DentistryDoctor 2006-03-29
  • 打赏
  • 举报
回复
不应该吧,头文件有问题?
xing_xing_xing 2006-03-29
  • 打赏
  • 举报
回复
After putting the following two lines before #include'ing <gdiplus.h>

#define _AFXDLL
#include <afxwin.h>

参考
http://groups.google.com/group/microsoft.public.dotnet.framework.drawing/browse_thread/thread/f0febf272a128235/9051da5d9b17210d%239051da5d9b17210d

狂放之歌 2006-03-29
  • 打赏
  • 举报
回复
...刚才又了一下~

main中 什么代码也不加,,只要 #include <gdiplus.h>
就是 121error 14 warning
DrSmart 2006-03-29
  • 打赏
  • 举报
回复
sdk版本问题?????????????
狂放之歌 2006-03-29
  • 打赏
  • 举报
回复
还有很多~~
狂放之歌 2006-03-29
  • 打赏
  • 举报
回复
------ 已启动生成: 项目: BMPtoJPEG, 配置: Release Win32 ------
正在编译...
stdafx.cpp
正在编译...
BMPtoJPEG.cpp
f:\program files\microsoft visual studio 8\vc\platformsdk\include\GdiplusImaging.h(67) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
f:\program files\microsoft visual studio 8\vc\platformsdk\include\GdiplusImaging.h(67) : error C2440: 'initializing' : cannot convert from 'const char [37]' to 'int'
There is no context in which this conversion is possible
f:\program files\microsoft visual studio 8\vc\platformsdk\include\GdiplusImaging.h(67) : error C2146: syntax error : missing ';' before identifier 'IImageBytes'
f:\program files\microsoft visual studio 8\vc\platformsdk\include\GdiplusImaging.h(67) : error C2470: 'IImageBytes' : looks like a function definition, but there is no parameter list; skipping apparent body
f:\program files\microsoft visual studio 8\vc\platformsdk\include\GdiplusImaging.h(67) : error C2059: syntax error : 'public'
f:\program files\microsoft visual studio 8\vc\platformsdk\include\GdiplusImaging.h(246) : error C2146: syntax error : missing ';' before identifier 'id'
f:\program files\microsoft visual studio 8\vc\platformsdk\include\GdiplusImaging.h(246) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
f:\program files\microsoft visual studio 8\vc\platformsdk\include\GdiplusImaging.h(246) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
f:\program files\microsoft visual studio 8\vc\platformsdk\include\GdiplusHeaders.h(384) : error C2143: syntax error : missing ')' before '*'
f:\program files\microsoft visual studio 8\vc\platformsdk\include\GdiplusHeaders.h(384) : error C2143: syntax error : missing ';' before '*'
f:\program files\microsoft visual studio 8\vc\platformsdk\include\GdiplusHeaders.h(384) : error C2460: 'Gdiplus::Image::IStream' : uses 'Gdiplus::Image', which is being defined
f:\program files\microsoft visual studio 8\vc\platformsdk\include\GdiplusHeaders.h(372) : see declaration of 'Gdiplus::Image'
菜牛 2006-03-29
  • 打赏
  • 举报
回复
把错误信息贴出来。
代码转载自:https://pan.quark.cn/s/8ce4326d996e 对于在 CentOS 7 系统修改网卡配置文件后无法使设置生效的情况,经过实践验证,可以通过使用 nmcli 命令来进行调整。完成修改之后,需要重新启动虚拟机以使更改生效,这样操作流程即告完成。如果设置仍然无法生效,则表明虚拟机在启动过程所获取的 IP 地址配置并非针对 eth0,此时可以对其它网卡的配置文件进行修改或将其移除。在 CentOS 7 系统,网络配置的管理机制与早期版本存在差异,主要体现为采用了 Network Manager 服务来负责网络接口的管理。在某些情形下,尽管修改了 `/etc/sysconfig/network-scripts` 目录下的 `ifcfg-eth0` 文件,但网络配置却未能即时生效。此类问题的发生通常源于 CentOS 7 采用了不同于以往的配置读取方法。接下来将具体阐述如何借助 nmcli 命令来处理这一挑战。 以 root 用户身份登录系统并打开终端界面。nmcli 是 Network Manager 提供的命令行界面工具,它支持在命令行环境下执行网络连接的建立、编辑、查询及管理任务。针对修改 eth0 网卡配置的需求,可以遵循以下步骤进行操作: 1. 导航至 `/etc/sysconfig/network-scripts` 目录: ``` cd /etc/sysconfig/network-scripts ``` 2. 检查该目录内是否存在 `ifcfg-eth0.bak` 文件,该备份文件可能是先前调整配置时遗留下来的,若存在可能造成冲突。若发现该文件,可以选择将其删除: ``` [root@localhost netw...
代码转载自:https://pan.quark.cn/s/46fd08fb879c 网管教程 从入门到精通软件篇 ★一。★详尽的xp修复控制台指令及其应用!!! 放入xp(2000)的光盘,安装时选择R,执行修复! Windows XP(涵盖 Windows 2000)的控制台指令是在系统遭遇某些意外状况时的一种极具效用的诊断、检测以及恢复系统功能的工具。笔者确实一直期望能够将这方面的指令进行归纳,此次由老范辛苦整理了这份极具价值的秘籍。 Bootcfg bootcfg 命令用于启动配置与故障恢复(对大多数计算机而言,即 boot.ini 文件)。 带有特定参数的 bootcfg 命令仅在运用故障恢复控制台时方可使用。能够在命令行界面下运用带有不同参数的 bootcfg 命令。 用法: bootcfg /default 设定默认引导选项。 bootcfg /add 向引导清单增添 Windows 安装。 bootcfg /rebuild 重复整个 Windows 安装流程并让用户选择需添加的项目。 注意:运用 bootcfg /rebuild 之前,应先借助 bootcfg /copy 命令备份 boot.ini 文件。 bootcfg /scan 探查用于 Windows 安装的全部磁盘并展示结果。 注意:这些结果被静态存储,并用于当前会话。若在当前会话期间磁盘配置发生变动,为获取更新的探查结果,必须先重启计算机,然后再次探查磁盘。 bootcfg /list 列示引导清单已有的项目。 bootcfg /disableredirect 在启动引导程序禁用重定向。 bootcfg /redirect [ PortBaudRrate] |[ useBio...

19,464

社区成员

发帖
与我相关
我的任务
社区描述
VC/MFC 图形处理/算法
社区管理员
  • 图形处理/算法社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧