hcwanz 发表于 2022-3-3 05:58:47

DrawImage 函数 找不到标识符问题

本帖最后由 hcwanz 于 2022-3-3 06:00 编辑

https://docs.microsoft.com/en-us/windows/win32/api/gdiplusgraphics/nf-gdiplusgraphics-graphics-drawimage(image_constpointf_int_real_real_real_real_unit_constimageattributes_drawimageabort_void)
这个函数,

提示
错误:   error C3861: “GdipDrawImageRectRect”: 找不到标识符

错误:   error C3861: “DrawImage”: 找不到标识符

设置命名空间
@begin
#include "gdiplus.h"
using namespace Gdiplus;
#pragma comment(lib, "gdiplus.lib")
@end

(3条消息) error C2065: “Graphics”: 未声明的标识符解决办法_webe1234的博客-CSDN博客
还是找不到标识符

是这个函数不能这么用吗

Xelloss0618 发表于 2022-3-3 10:31:19

用 Graphics::DrawImage

hcwanz 发表于 2022-3-3 17:16:53

Xelloss0618 发表于 2022-3-3 10:31


原来是这样,我还奇怪为什么只有这函数名字这么特别

hcwanz 发表于 2022-3-5 19:44:11

Xelloss0618 发表于 2022-3-3 10:31

error C2352: “Gdiplus::Graphics::'D'rawImage”: 非静态成员函数的非法调用
...
页: [1]
查看完整版本: DrawImage 函数 找不到标识符问题