CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - Bitmap DC
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - Bitmap DC - List
[
Dialog_Window
]
BeautifulFace
DL : 0
一个华丽的界面 使用方法 方法一: 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 (
Update
: 2008-10-13
Size
: 145.03kb
Publisher
:
黄景天
[
Other resource
]
TransparentBmp
DL : 0
透明的显示位图,并用内存dc解决屏幕闪烁问题-transparent bitmap display, and memory use dc screen flicker problem solving
Update
: 2008-10-13
Size
: 408.38kb
Publisher
:
fuhan
[
GDI-Bitmap
]
DCtest
DL : 0
一个学习DC和位图的例子,可以修改内存来变化图像,本例子使用黑白位图进行内存操作。彩色位图的与此类似。-a study DC and bitmap example, memory can be amended to change images, The examples use black-and-white bitmap memory for operation. Color bitmap similar to this.
Update
: 2008-10-13
Size
: 29.72kb
Publisher
:
Nikker
[
GDI-Bitmap
]
MyDCtest
DL : 0
学习DC与位图数据的例子,可以通过直接修改内存来修改图片。本例子使用黑白位图,彩色类似。-learning DC and bitmap data example, can directly alter the memory to modify photographs. The examples use black-and-white bitmap, color similar.
Update
: 2008-10-13
Size
: 31.5kb
Publisher
:
郝宇
[
Other resource
]
gybdraw
DL : 0
普通的vc绘图程序,重画内存dc位图,还没有保存功能。-ordinary vc mapping procedures, re-drawing of memory dc bitmap, no retention.
Update
: 2008-10-13
Size
: 78.84kb
Publisher
:
顾英博
[
Windows Develop
]
MyGdi
DL : 0
当初为了调试内存和资源泄漏编写的关于GDI使用的工具,可以显示当前所有进程所使用的DC、Region、Bitmap、Palette、Font、Brush等对象的个数。-had to debug memory leakage and resources on the preparation of the tools used GDI can show all current process used by the DC, Region, Bitmap, Palette, Font, Brush number of other objects.
Update
: 2008-10-13
Size
: 39.94kb
Publisher
:
施文彪
[
Graph Drawing
]
gybdraw
DL : 0
普通的vc绘图程序,重画内存dc位图,还没有保存功能。-ordinary vc mapping procedures, re-drawing of memory dc bitmap, no retention.
Update
: 2025-02-19
Size
: 3.55mb
Publisher
:
顾英博
[
Windows Develop
]
MyGdi
DL : 0
当初为了调试内存和资源泄漏编写的关于GDI使用的工具,可以显示当前所有进程所使用的DC、Region、Bitmap、Palette、Font、Brush等对象的个数。-had to debug memory leakage and resources on the preparation of the tools used GDI can show all current process used by the DC, Region, Bitmap, Palette, Font, Brush number of other objects.
Update
: 2025-02-19
Size
: 40kb
Publisher
:
石心
[
GDI-Bitmap
]
SaveWindowsDC
DL : 0
在VC中将客户区图像保存到BMP位图文件 程序名称:MainFrm.c-customers in VC Lieutenant General District BMP images stored procedures bitmap file name : MainFrm.c
Update
: 2025-02-19
Size
: 383kb
Publisher
:
远风
[
Dialog_Window
]
BeautifulFace
DL : 0
一个华丽的界面 使用方法 方法一: 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 (
Update
: 2025-02-19
Size
: 145kb
Publisher
:
黄景天
[
Picture Viewer
]
TransparentBmp
DL : 0
透明的显示位图,并用内存dc解决屏幕闪烁问题-transparent bitmap display, and memory use dc screen flicker problem solving
Update
: 2025-02-19
Size
: 408kb
Publisher
:
fuhan
[
GDI-Bitmap
]
DCtest
DL : 0
一个学习DC和位图的例子,可以修改内存来变化图像,本例子使用黑白位图进行内存操作。彩色位图的与此类似。-a study DC and bitmap example, memory can be amended to change images, The examples use black-and-white bitmap memory for operation. Color bitmap similar to this.
Update
: 2025-02-19
Size
: 29kb
Publisher
:
[
GDI-Bitmap
]
MyDCtest
DL : 0
学习DC与位图数据的例子,可以通过直接修改内存来修改图片。本例子使用黑白位图,彩色类似。-learning DC and bitmap data example, can directly alter the memory to modify photographs. The examples use black-and-white bitmap, color similar.
Update
: 2025-02-19
Size
: 31kb
Publisher
:
郝宇
[
GDI-Bitmap
]
BitmapDC_src
DL : 0
怎么用Memory DC对位图进行操作的源码。-Memory DC on how to use bitmaps to operate the source.
Update
: 2025-02-19
Size
: 5kb
Publisher
:
Depp Su
[
GDI-Bitmap
]
Bitmap_Manipulation_Class
DL : 0
这是一个位图操作的类,不依赖于MFC,可以实现位图的旋转、镜像、透明、扭曲等等非常绚丽的特效,非常值得推荐。This a bitmap manipulation class that would not be MFC dependent, and would offer some extended features not present in the original MFC implementation. This class can load any 8, 16, 24 or 32bit bitmap, but internally works with 32bit bitmaps. The results can be saved as the 24bit bitmap on the hard disk, or it can be drawn on the device context (DC).-This is a bitmap type of operation, not dependent on MFC, can be achieved bitmap rotation, mirror, transparent, distortion effects, etc. is very brilliant, very worthy of recommendation. This a bitmap manipulation class that would not be MFC dependent, and would offer some extended features not present in the original MFC implementation. This class can load any 8, 16, 24 or 32bit bitmap, but internally works with 32bit bitmaps. The results can be saved as the 24bit bitmap on the hard disk, or it can be drawn on the device context (DC).
Update
: 2025-02-19
Size
: 2.23mb
Publisher
:
赵越
[
GUI Develop
]
Visual_C++_6_ATL_Component
DL : 0
This sample is Bitmap DC Usage.
Update
: 2025-02-19
Size
: 2.69mb
Publisher
:
redstarnim
[
GUI Develop
]
screenshot
DL : 0
Example of how to take screenshot in windows. Uses CreateDC("DISPLAY", ...) to create DC to blit from and blits to new bitmap DC.
Update
: 2025-02-19
Size
: 1kb
Publisher
:
fuxx
[
GDI-Bitmap
]
Bitmap
DL : 0
Small and handy bitmap wrapper. Allow to create and work with bitmap with automatically DC creation
Update
: 2025-02-19
Size
: 1kb
Publisher
:
brain-ripper
[
Other
]
appFeb24thChangeColor2
DL : 0
源创的代码,颜色渐变 + 漂亮字体 + 使用内存dc建立位图 + 窗口背景位图拉伸时不闪屏的方法-The source code to create, color, font+ gradient+ nice using memory dc to establish the background bitmap+ windows bitmap drawing method without splash screen
Update
: 2025-02-19
Size
: 1.64mb
Publisher
:
HeLingPing
[
GDI-Bitmap
]
dc
DL : 0
图形的绘制,如何使用自定义画笔(颜色,线宽,线形)。如何为程序中添加选项菜单和选项设置对话框,如何使用标准颜色对话框,如何使用字体对话框,在选项对话框中实现预览功能。实现选项对话框和窗口类中的数据交换。如何改变对话框和控件的背景色,如何改变控件的文本颜色,对按钮控件的特殊处理。如何在窗口中显示一幅位图。-Graphics rendering, and how to use a custom brush (color, line width, line). How to add the options menu and option settings dialog box for the program, and how to use the standard color dialog, how to use the Font dialog box, the preview function in the Options dialog box. Data exchange in the Options dialog box and window class. How to change the background color of the dialog box and control, how to change the text color of the control, the special treatment of the button control. How to display a bitmap in a window.
Update
: 2025-02-19
Size
: 5.63mb
Publisher
:
张三
«
1
2
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.