Welcome![Sign In][Sign Up]
Location:
Search - Cbitmap bmp

Search list

[GDI-BitmapCBitmap对象操作

Description: 这是关于CBitmap的类操作,包括BMP位图的打开、保存、图像处理等各项操作,是位图编程的基础-CBitmap This is the type of operation, including BMP bitmap open, preservation, image processing and other operations, bitmap based programming
Platform: | Size: 140627 | Author: 邵文坤 | Hits:

[Graph programBmpProc定义

Description: 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 category CBitmap function! If you use (especially read or create the type function), then not again use CBmpProc type of function, in order to avoid confusion.
Platform: | Size: 21781 | Author: 峰云 | Hits:

[Special EffectsbitmapEx_source

Description: 一种向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,LR_LOADFROMFILE|LR_CREATEDIBSECTION|LR_DEFAULTSIZE) return Attach(hBitmap) }-CBitmap object to a reading of "*. bmp" file shortcuts. One, to build their own CBitmap derived class. 2, add a "Load from bitmap" function : BOOL CMyBitmap : : LoadBitmap (LPCTSTR szFileName) (DeleteObje ct () HBITMAP hBitmap = NULL hBitmap = (HBITMAP) LoadImage (NULL, szFileName, IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE | LR_CREATEDIBSECTION | LR_D EFAULTSIZE) return Attach (hBitmap);)
Platform: | Size: 5411 | Author: 李明 | Hits:

[OtherCBitmap_To_Bmp

Description: 这是一个将CBitmap写到Bmp文件里的函数 首先,这个函数只能针对24色的bitmap.
Platform: | Size: 1156 | Author: 高一 | Hits:

[Picture ViewerCBitmapPicture

Description: 源代码,利用IPICTURE接口读取GIF,JPEG等格式的图像文件,能够读取设备独立位图DIB和BMP文件-source code, the use of interface IPICTURE read GIF, JPEG and other image file format, equipment can read independent bitmap BMP and DIB documents
Platform: | Size: 527360 | Author: 吴鸣世 | Hits:

[GDI-BitmapCBitmap对象操作

Description: 这是关于CBitmap的类操作,包括BMP位图的打开、保存、图像处理等各项操作,是位图编程的基础-CBitmap This is the type of operation, including BMP bitmap open, preservation, image processing and other operations, bitmap based programming
Platform: | Size: 1375232 | Author: 邵文坤 | Hits:

[Graph programBmpProc定义

Description: 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 category CBitmap function! If you use (especially read or create the type function), then not again use CBmpProc type of function, in order to avoid confusion.
Platform: | Size: 21504 | Author: 峰云 | Hits:

[Graph program2006022006413831087

Description: 在VC中操作图形文件,并对所读取的图形实现常规的处理是件很头痛的事。CBmpProc类提供了对图形文件的读取操作,并且对已经读入的图形进行处理,包括:取某区域的内容、将区域的内容复制到剪粘板、将剪粘板的内容复制出来……。 CBmpProc类由BmpProc.cpp和BmpProc.h两个文件组成。继承与CBitmap类。 这里同时提供了使用该类的演示程序及CBmpProc类的使用说明。-in VC operation graphics files, as well as read by the graphics conventional treatment is a very troublesome thing. CBmpProc category provides graphic documentation of the read operations, and to have read the graphics processing, including : from a certain region, the contents of the region to copy the sticky scissors, scissors sticky content duplicated .... CBmpProc BmpProc.cpp by category and BmpProc.h two documents. Inheritance and CBitmap category. Here to provide a demonstration of the use of such procedures and CBmpProc category of use.
Platform: | Size: 165888 | Author: 嘎嘎 | Hits:

[Dialog_WindowBeautifulFace

Description: 一个华丽的界面 使用方法 方法一: ModifyStyle( WS_CAPTION, WS_MINIMIZEBOX, SWP_DRAWFRAME ) //设置图标 方法二: 不用上面的,但是要去掉对话框的title属性 void CPageDlg::OnPaint() { if (IsIconic()) { ... } else { // CDialog::OnPaint() //一定要去掉该句 CPaintDC dc(this) //对话框的dc CDC dcMem dcMem.CreateCompatibleDC(&dc) //创建与对话框dc兼容的内存dc CRect rect GetClientRect(&rect) BITMAP bitMap m_bmpBackground.GetBitmap(&bitMap) CBitmap *pbmpOld=dcMem.SelectObject(&m_bmpBackground) //将背景位图选入内存dc中 dc.StretchBlt(0,0,rect.Width(),rect.Height(),&dcMem,0,0,bitMap.bmWidth,bitMap.bmHeight,SRCCOPY) //将内存dc中的位图拉伸显示在对话框的dc中 //dc.BitBlt(0,0,rect.Width(),rect.Height(),&dcMem,0,0,SRCCOPY) } } -a gorgeous interface to use a method : ModifyStyle (WS_CAPTION, WS_MINIMIZEBOX. SWP_DRAWFRAME)// Settings icon two ways : not above, However, to remove the title attribute dialog void CPageDlg : : OnPaint () (if (IsIconic ()) (...) else (//CDia log : : OnPaint ()// must remove the sentence CPaintDC dc (this)// Dialog dc CDC dcMem dcMem.CreateCompatibleDC (
Platform: | Size: 148480 | Author: 黄景天 | Hits:

[Special EffectsbitmapEx_source

Description: 一种向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,LR_LOADFROMFILE|LR_CREATEDIBSECTION|LR_DEFAULTSIZE) return Attach(hBitmap) }-CBitmap object to a reading of "*. bmp" file shortcuts. One, to build their own CBitmap derived class. 2, add a "Load from bitmap" function : BOOL CMyBitmap : : LoadBitmap (LPCTSTR szFileName) (DeleteObje ct () HBITMAP hBitmap = NULL hBitmap = (HBITMAP) LoadImage (NULL, szFileName, IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE | LR_CREATEDIBSECTION | LR_D EFAULTSIZE) return Attach (hBitmap);)
Platform: | Size: 5120 | Author: 李明 | Hits:

[OtherCBitmap_To_Bmp

Description: 这是一个将CBitmap写到Bmp文件里的函数 首先,这个函数只能针对24色的bitmap.-This is a CBitmap wrote to document a function of Bmp First of all, this function can be made only for 24-color bitmap.
Platform: | Size: 1024 | Author: 高一 | Hits:

[Windows Developtzdtq

Description: 特征点提取程序,实现对2张BMP图像的特征点提取,提取结果很号-err
Platform: | Size: 86016 | Author: jxdeth | Hits:

[Compress-Decompress algrithmsbmp

Description: 在用vc做程序时候,经常需要把输出的文本和图形保存到位图文件,当然可以有现成的控件来实现,但总不能如自己所愿,还是自己动手写吧!如下图: 一、实现方法   要把文本和图形保存到位图文件,只要对掌握位图结构有一定的了解,一切都ok呢。先必须要创建内存设备环境,然后内存设备环境创建的DIB区域,别忘了还要创建个CBitmap对象,CBitmap对象必须和DIB区域关联起来,把CBitmap对象选择到当前设备环境,然后在当前设备环境输出文本和图形就可以了。 -Vc procedures used to do often need to output text and graphics preservation plan in place, and of course, can have ready-made controls to achieve, but not as his own wish, or write your own hands! The following graph: First, the realization method of text and graphics to put in place plans to preserve documents, as long as the structure of the master bitmap have a certain understanding, everything is ok then. First need to create a memory device environment, and then memory devices DIB created regional environment, do not forget to also create a CBitmap object, CBitmap object must be associated with DIB region to choose CBitmap object to the current equipment, the environment, and then in the current environment equipment output text and graphics on it.
Platform: | Size: 5120 | Author: | Hits:

[Picture ViewerCBitMap

Description: 利用底层代码实现图像的显示,能够很真切的揭示了bmp图像的特点-The realization of the underlying code to use the display image, can reveal the real features of bmp images
Platform: | Size: 35840 | Author: 凯文 | Hits:

[Special EffectsReadBMP

Description: 用VC++实现对BMP位图的读取。使用CBitmap类中的LoadBitmap()函数成员。-Using VC++ implementation of the BMP bitmap reading. Use CBitmap class LoadBitmap () function member.
Platform: | Size: 317440 | Author: 清风斜阳 | Hits:

[Windows DevelopSystemBitmap

Description: 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, CSystemBitmap inherited from the CBitmap to add the following functions: LoadBitmapFromFile: read from the file BMP GetBitmapSize: Get BMP size of the copy constructor and assignment =
Platform: | Size: 2048 | Author: yanmeiling | Hits:

[GDI-BitmapCImage

Description:  我们知道,Visual C++的CBitmap类和静态图片控件的功能是比较弱的,它只能显示出在资源中的图标、位图、光标以及图元文件的内容,而不像VB中的Image控件可以显示出绝大多数的外部图像文件(BMP、GIF、JPEG等)。因此,想要在对话框或其他窗口中显示外部图像文件则只能借助于第三方提供的控件或代码。现在,MFC和ATL共享的新类CImage为图像处理提供了许多相应的方法,这使得Visual C++在图像方面的缺憾一去不复返了。-We know that the Visual C++ the CBitmap class and static picture control function is relatively weak, it only shows the icon resources, bitmaps, cursors, as well as the contents of the metafile, rather than the Image control in VB show the vast majority of external image files (BMP, GIF,, JPEG, etc.). Therefore, I want to display external image files in a dialog or other window only by means of third party controls or code. Now, new class CImage MFC and ATL shared many of the corresponding method for image processing, which makes the Visual C++ of defects in the image is gone forever.
Platform: | Size: 233472 | Author: terry | Hits:

[Picture ViewerLoadShowImage

Description: 将磁盘的.bmp文件转换到Cbitmap对象指针中,再显示出来-Disk. Bmp file is converted to Cbitmap object pointer, and then displayed
Platform: | Size: 322560 | Author: zhang | Hits:

[Graph programCBitmap_To_Bmp

Description: 这是一个将CBitmap写到Bmp文件里的函数 首先,这个函数只能针对24色的bitmap.-This is a CBitmap wrote to document a function of Bmp First of all, this function can be made only for 24-color bitmap.
Platform: | Size: 1024 | Author: 机动车 | Hits:

[GDI-BitmapCImage--Class

Description: Visual C++的CBitmap类和静态图片控件的功能是比较弱的,它只能显示出在资源中的图标、位图、光标以及图元文件的内容,而不像VB中的Image控件可以显示出绝大多数的外部图像文件(BMP、GIF、JPEG等)。因此,想要在对话框或其他窗口中显示外部图像文件则只能借助于第三方提供的控件或代码。 现在,MFC和ATL共享的新类CImage为图像处理提供了许多相应的方法.-The Visual C++ class CBitmap and static picture control function is weak, it can only show in a resource, bitmap, cursor and icon metafile contents, rather than VB in Image control can display the external image files most (BMP, GIF, JPEG etc.). Therefore, to show the external image files only with control or code provided to the third party in the dialog box or other window. Now, a new class of CImage MFC and ATL sharing provides a number of the corresponding method for image processing.
Platform: | Size: 13312 | Author: 赵聪 | Hits:
« 12 »

CodeBus www.codebus.net