⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 showpic.cpp

📁 vc实现绘图程序 用点击菜单栏
💻 CPP
字号:
#include "StdAfx.h"
#include "ShowPic.h"

CShowPic::CShowPic(void)
{
}

CShowPic::~CShowPic(void)
{
}
void  CShowPic::showPic2D(CDC *pDC, CString path)
{
	CImage m_image;
	if(!m_image.IsNull())
		m_image.Destroy();
	HRESULT hResult=m_image.Load(path);
	 iWidth=m_image.GetWidth();
	 iHeight=m_image.GetHeight();
	pDC->SetStretchBltMode(STRETCH_HALFTONE);
	m_image.Draw(pDC->m_hDC,0,0,iWidth,iHeight);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -