- 博客(1)
- 资源 (7)
- 收藏
- 关注
原创 VC6.0 编译器BUG修正收集
1.Error spawning bscmake.exe 解决:project,setting,browse info,去掉选项build browse info file 2.fatal error LNK1210: exceeded internal ILK size limit; relink with /INCREMEN 处理方式 Setting - >Link -> Lin
2013-06-06 10:36:52
1485
VIIRS_SDR_Users_Guide.pdf
VIIRS DATA RECORDS
VIIRS 数据等级与波段介绍
The 22 VIIRS spectral bands are designed to support the generation of 22 Environmental
Data Records (EDRs) described later in this document.
As shown in Table 1, the M1-M7 bands are used primarily for ocean color and aerosol
applications; the M8, M9, M11, M14, I4, and I5 bands for clouds; M12, M13, M15 and
11
M16 primarily for sea surface temperature; I3 and M10 for snow; and I2 and I1 for NDVI
and imagery. The typical radiance Ltyp or brightness temperature Ttyp are provided in
the Table 1 for reference.
2020-04-08
vc6.0助手及破解
破解助手 已经测试过,可用 vc6.0
////////////////////////////////////
解压后安装,crack文件夹里有破解的DLL文件,把VA_X.dll拷贝至安装目录就行了。
VS 2008也支持的哦,十周年纪念版,重拳出击!弥补Visual Studio的不足。
//////////////////////////////////////////////////////////////////
2014-07-03
VC++调用C# DLL
c#开发的插件DLL,用C++来调用 。
折腾了几天终于找到的解决的方法
注意:C++中设置:Common Language Runtime support(/clr)
2013-05-15
VC++ GDI开发包
Visual C++6.0使用GDI+的一般方法
1. 载解压GDI+开发包;
2. 正确设置include & lib 目录;
3. stdafx.h 添加:
#ifndef ULONG_PTR
#define ULONG_PTR unsigned long*
#endif
#include <gdiplus.h>
4. 程序中添加GDI+的包含文件gdiplus.h以及附加的类库gdiplus.lib。
通常gdiplus.h包含文件添加在应用程序的stdafx.h文件中,而gdiplus.lib可用两种进行添加:
第一种是直接在stdafx.h文件中添加下列语句:
#pragma comment( lib, "gdiplus.lib" )
另一种方法是:
在VC.net中添加库文件在:项目菜单->属性->链接器->输入
举个例子:
(1)在应用程序项目的应用类中,添加一个成员变量,如下列代码:
ULONG_PTR m_gdiplusToken;
其中,ULONG_PTR是一个DWORD数据类型,该成员变量用来保存GDI+被初始化后在应用程序中的GDI+标识,以便能在应用程序退出后,引用该标识来调用Gdiplus:: GdiplusShutdown来关闭GDI+。
(2)在应用类中添加ExitInstance的重载,并添加下列代码用来关闭GDI+:
int CGDITestApp::ExitInstance()
{
Gdiplus::GdiplusShutdown(m_gdiplusToken);
return CWinApp::ExitInstance();
}
(3)在应用类的InitInstance函数中添加GDI+的初始化代码:
注意:下面这些GDI+的初始化代码必须放在m_pMainWnd->UpdateWindow();之前。
CWinApp::InitInstance();
Gdiplus::GdiplusStartupInput gdiplusStartupInput;
Gdiplus::GdiplusStartup(&m_gdiplusToken, &gdiplusStartupInput, NULL);
(4)在需要绘图的窗口或视图类中添加GDI+的绘制代码。
下面分别就单文档和基于对话框应用程序为例,说明使用GDI+的一般过程和方法。
1. 在单文档应用程序中使用GDI+
在上面的过程中,我们就是以一个单文档应用程序Ex_GDIPlus作为示例的。下面列出第4步所涉及的代码:
void CGDITestView::OnDraw(CDC* pDC)
{
CGDITestDoc* pDoc = GetDocument();
ASSERT_VALID(pDoc);
// TODO: add draw code for native data here
usingnamespace Gdiplus;
Graphics graphics(pDC->m_hDC);
Pen newPen(Color(255,0,0),3);
HatchBrush newBrush(HatchStyleCross,Color(255,0,255,0),Color(255,0,0,255));//创建一个填充画刷,前景色为绿色,背景色为蓝色
graphics.DrawRectangle(&newPen,50,50,100,60);// 在(50,50)处绘制一个长为100,高为60的矩形
graphics.FillRectangle(&newBrush,50,50,100,60); // 在(50,50)处填充一个长为100,高为60的矩形区域
}
编译并运行,结果如图:
2010-12-02
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人