搜索资源列表
CBitmap对象操作
- 这是关于CBitmap的类操作,包括BMP位图的打开、保存、图像处理等各项操作,是位图编程的基础-CBitmap This is the type of operation, including BMP bitmap open, preservation, image processing and other operations, bitmap based programming
BmpProc定义
- BMP位图处理类定义头文件,注意:类CBmpProc是从CBitmap类公有继承而来的,但最好不要使用类CBitmap中的函数!如果使用了(尤其是读入或创建型的函数),则就不要再使用CBmpProc类中的函数,以免混乱。-from Bitmap class definition files, Note : Class CBmpProc from CBitmap category inherited from the public, it is best not to use the catego
CISBitmap通过指定一种颜色把一幅位图变透明
- 通过指定一种颜色把一幅位图变透明,这个从Cbitmap派生的位图类使你可以通过指定一种颜色把一幅位图变透明,而它的使用差不多同Cbitamp一样简单。-through a designated colors of a bitmap transparent change, this Cbitmap derived from the bitmap type so you can designate an colors of a bitmap transparent change, while its
2006022006413831087
- 在VC中操作图形文件,并对所读取的图形实现常规的处理是件很头痛的事。CBmpProc类提供了对图形文件的读取操作,并且对已经读入的图形进行处理,包括:取某区域的内容、将区域的内容复制到剪粘板、将剪粘板的内容复制出来……。 CBmpProc类由BmpProc.cpp和BmpProc.h两个文件组成。继承与CBitmap类。 这里同时提供了使用该类的演示程序及CBmpProc类的使用说明。-in VC operation graphics files, as well as read by
transparentdib
- 本程序实现了画出一个透明位图的功能。它把透明技术包含进了CBitmap类。而且它可以显示和画几种格式,包括PNG和GIF。-this program achieved paint a transparent bitmap functions. Put it transparent technology for inclusion in the category CBitmap. It can display and painting several formats, including GIF
CBitmap
- CBitmap类(位图类)-CBitmap type (bitmap)
BeautifulFace
- 一个华丽的界面 使用方法 方法一: ModifyStyle( WS_CAPTION, WS_MINIMIZEBOX, SWP_DRAWFRAME ) //设置图标 方法二: 不用上面的,但是要去掉对话框的title属性 void CPageDlg::OnPaint() { if (IsIconic()) { ... } else { // CDialog::On
bitmapEx_source
- 一种向CBitmap对象读取“*.bmp”文件的快捷方式。 1、建立自己的CBitmap派生类。 2、增加一个“Load from bitmap”的函数: BOOL CMyBitmap::LoadBitmap(LPCTSTR szFileName) { DeleteObject() HBITMAP hBitmap=NULL hBitmap=(HBITMAP)LoadImage(NULL,szFileName,IMAGE_BITMAP,0,0,L
convert_graphics
- 该源码用于把输出的文本和图形保存到位图文件.关键是创建内存设备环境,并与CBitmap对象相连-the source code for the integration of the output text and graphics document preservation plans in place. The key is to create memory equipment, and objects connected with CBitmap
CBitmap.rar
- 自己整理的一个关于CBitmap位图操作大集合,CBitmap bitmap operations Collection
DirectoryList
- class CMyTreeCtrl : public CTreeCtrl { // Construction public: CMyTreeCtrl() // Attributes public: // Operations public: // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CMyTreeCtrl)
chat
- class CMyTreeCtrl : public CTreeCtrl { // Construction public: CMyTreeCtrl() // Attributes public: // Operations public: // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CMyTreeCtrl)
bmp
- 在用vc做程序时候,经常需要把输出的文本和图形保存到位图文件,当然可以有现成的控件来实现,但总不能如自己所愿,还是自己动手写吧!如下图: 一、实现方法 要把文本和图形保存到位图文件,只要对掌握位图结构有一定的了解,一切都ok呢。先必须要创建内存设备环境,然后内存设备环境创建的DIB区域,别忘了还要创建个CBitmap对象,CBitmap对象必须和DIB区域关联起来,把CBitmap对象选择到当前设备环境,然后在当前设备环境输出文本和图形就可以了。 -Vc
SectionDIB
- It s a new class that makes using DIB Sections as simple as using a CBitmap and it provids a programm for you.
CBitMap
- 利用底层代码实现图像的显示,能够很真切的揭示了bmp图像的特点-The realization of the underlying code to use the display image, can reveal the real features of bmp images
ReadBMP
- 用VC++实现对BMP位图的读取。使用CBitmap类中的LoadBitmap()函数成员。-Using VC++ implementation of the BMP bitmap reading. Use CBitmap class LoadBitmap () function member.
Hello
- CDC *pMemDC = new CDC() pMemDC->CreateCompatibleDC(pScreenDC) //然后创建位图: CBitmap *pBitmap = new CBitmap() pBitmap->CreateCompatibleBitmap(pScreenDC, pRect->Width(), pRect->Height()) # pRect为用户选取的范围 CBitmap *pOldBitmap
SystemBitmap
- MFC的CBitmap不支持直接从文件读取BMP,且不支持拷贝构造和赋值,CSystemBitmap继承自CBitmap添加如下功能: LoadBitmapFromFile: 从文件读取BMP GetBitmapSize: 获取BMP大小拷贝构造与赋值= -MFC-CBitmap does not support directly from the file to read BMP, and does not support the copy constructor and assignment
DDB2
- 在MFC对话框中显示一幅图片,CBitmap类的使用,也就是设备无关位图的使用-show a picture using MFC dialog.It s about the application of class CBitmap,or we can say it s about the application of DDB