shall2007 在 2007-02-07 09:38:25 上传
说明:利用BitBlt函数和ROP代码实现在Windows窗口中擦除位图背景
开发平台:Visual C++ | 大小:76KB | 下载13次
selami 在 2007-01-30 22:23:00 上传
说明:Binary image producer. Code is in C language. Binary thresholding is made.
开发平台:C/C++ | 大小:16KB | 下载132次
Murray Mu 在 2007-01-09 13:44:10 上传
说明:vc 编写的位图浏览器,可以浏览位图(bitmap),希望对你有帮助
开发平台:Visual C++ | 大小:52KB | 下载48次
zch.666 在 2007-01-04 11:04:22 上传
说明:一个基于对话框的位图显示浏览程序,可以用于图像处理开发的大框架,很有用哦
开发平台:Visual C++ | 大小:1928KB | 下载324次
program2006 在 2006-12-28 17:49:51 上传
说明:一个位图进度条的VC源码_
开发平台:Visual C++ | 大小:435KB | 下载209次
longdaqing 在 2006-12-21 17:17:18 上传
说明:图形图像处理技术,CHM格式,便于阅读。
开发平台:Visual C++ | 大小:548KB | 下载19次
旷野 在 2006-12-10 12:52:39 上传
说明:When I wrote this function my problem was to replace one color by an other on transparent bitmaps. My images were resources bitmaps, which I store in an ImageList for easy transparency. There is no easy way to directly access a Bitmap s pixel on Win32. If you re interested in, this article may help you to understand the usage of CreateDIBSection. If you have to load a bitmap from resource and made many color replacements, or if you have to change a color in a HBITMAP this function is for you. If you have a bitmap in resource and want to replace one or more color on load, it s better to use CreateMappedBitmap. You can found in the sample program a ReplaceColor function which use CreateMappedBitmap. I ve made the same code using only BitBlt. All BitBlt are really fast but the creation of the mask bitmap is so slow than the whole function is twice slower than the code using CreateDIBSection. ( sources are in the sample )
开发平台:Visual C++ | 大小:6KB | 下载38次
funnyboy1022 在 2006-11-28 00:23:32 上传
说明:一种向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) }
开发平台:Visual C++ | 大小:5KB | 下载51次
feelhuangfq 在 2006-11-24 19:58:05 上传
说明:程序画图和保存为BitMap的简单示例,因为简单,所以容易理解.
开发平台:Visual C++ | 大小:16KB | 下载13次
Dongdong163 在 2006-11-20 23:06:08 上传
说明:This program reads a 24bpp, 8bpp or 4bpp Microsoft Windows(TM) .BMP file and converts it into a C structure with the following information: the bitmap width, the bitmap height, the RGB color palette if the bitmap is 8bpp or 4bpp, an array of 32-bit values representing the scaled down (24bpp to 5:5:5 RGB) color values OR an array of 8-bit or 4-bit indices into the palette.
开发平台:C/C++ | 大小:45KB | 下载117次
chenhb_nj 在 2006-11-03 16:41:45 上传
说明:能比较全面的图像处理系统。主要内容包括:位图基础、图像的显示、图像的几何变换、图像灰度变换、图像的平滑处理、图像锐化处理及边缘检测、图像分割及测量、图像的形态学处理、图像的变换域处理及应用、图像的合成、24位彩色图像的处理、JPEG图像的压缩编码
开发平台:Visual C++ | 大小:323KB | 下载549次
yubuaa 在 2006-11-01 19:18:49 上传
说明:这是我替别人做的一个DSP图象处理的程序,可以实现读入256位位图,并导出数据
开发平台:Visual C++ | 大小:1935KB | 下载27次
AaronSheng 在 2006-09-04 23:36:54 上传
说明:对话框加位图bitmap_preview_dialog_source
开发平台:Visual C++ | 大小:11KB | 下载47次
YOUXI 在 2006-09-02 14:56:59 上传
说明:win32SDK用BITMAP贴图的扫雷游戏的源代码
开发平台:Visual C++ | 大小:379KB | 下载369次
YOUXI 在 2006-09-02 14:52:14 上传
说明:象素绘制 用Win32SDK编写的一个bitmap库
开发平台:Visual C++ | 大小:72KB | 下载173次
kuolei 在 2006-09-01 14:28:54 上传
说明:一个实现sprite的bitmap类。 1、可以实现遮照。 2、实现动画效果。
开发平台:Visual C++ | 大小:4KB | 下载13次
yuxiayizhi 在 2006-08-25 10:53:13 上传
说明:vc++学习之——基于对话框的应用程序 。
开发平台:Visual C++ | 大小:38KB | 下载20次
sankt 在 2006-08-17 21:22:19 上传
说明:一个华丽的界面 使用方法 方法一: 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) } }
开发平台:Visual C++ | 大小:145KB | 下载253次
charlizhang 在 2006-08-02 11:10:30 上传
说明:从CButton派生出类CImageButtonWithStyle,该类可以实现在按钮上显示图形包括icon,bitmap等
开发平台:Visual C++ | 大小:32KB | 下载43次
mayx565@163.com 在 2006-06-14 14:21:38 上传
说明:在VC++应用程序中的客户区如何绘制位图按钮
开发平台:Visual C++ | 大小:37KB | 下载9次
xiaoye208 在 2006-06-09 08:55:31 上传
说明:利用Visual C++实现AVI文件的图像截取 Visual C++中实现对图像数据的读取显示 Visual C++实现视频图像处理技术 VC编程中如何操作数据库中的图像字段 Visual C++实现数字图像增强处理 Visual C++6.0开发灰度位图处理 VC++开发腐蚀运算源程序 VC++开发膨胀运算源程序 VC++开发细化源程序 VC++开发Hough变换的源程序 VC++开发轮廓提取源程序 堆栈的数据结构和操作 VC++开发轮廓跟踪源程序 VC++开发差影法的源程序 VC++开发投影法的源程序 VC++开发直方图均衡化的源程序 VC++转置变换的原代码 VC++平移的源代码 VC++旋转的源代码 VC++镜象变换的原代码 VC++缩放变换的原代码 实现中值滤波的源程序 通用的3*3模板的函数程序 图案法源程序 Floyd-Steinberg算法的源代码 bmp2txt源程序 实现反色的源程序 彩色图到灰度图的转换的源程序 真彩图转256色图算法的源程序 显示一幅图的灰度直方图的程序
开发平台:Visual C++ | 大小:268KB | 下载296次
airzhm 在 2006-06-01 11:14:11 上传
说明:在程序状态栏显示动画BITMAP图标,增加程序界面的精彩程度。
开发平台:Visual C++ | 大小:15KB | 下载33次
songye0812 在 2006-05-27 14:03:47 上传
说明:vc++能打开bmp文件格式的图象。是利用mfc制作的。
开发平台:Visual C++ | 大小:3728KB | 下载144次
leonevo 在 2006-05-05 11:19:20 上传
说明:一个根据MSDN整理的GDI+简明教程,看过后就对GDI+有全局把握了。
开发平台:Visual C++ | 大小:679KB | 下载525次
沉默行走 在 2006-05-04 20:04:28 上传
说明:bitMAP文件格式的图像的读取、与保存的算法,可以作为图像处理的系统的前道,非常实用。
开发平台:Visual C++ | 大小:26KB | 下载19次
sarah_gj 在 2006-05-01 17:12:35 上传
说明:在对话框中显示图片并具有滚动条的实例,当图片为大尺寸时,可拖动滚动条显示完整图片,这个例子比较常用,但很少有介绍
开发平台:Visual C++ | 大小:3528KB | 下载998次
cobefan 在 2006-04-27 18:34:19 上传
说明:This BmpLib.h is a small library of functions written in C++ for Turbo C++ 3.0 and Borland C/C++ 3.1 Compilers that allow you to load a Monochrome or 16 color Bitmap in your programs or you can save your screen image as a Monochrome or 16 color Bitmap.
开发平台:Visual C++ | 大小:5KB | 下载14次
cobefan 在 2006-04-27 18:20:04 上传
说明:位图处理类及示例,实现了位图文件的读取、显示、保存等功能,可以作为位图处理的类加入工程
开发平台:Visual C++ | 大小:2097KB | 下载98次
energe 在 2006-04-26 23:10:30 上传
说明:计算了图像的位图信息,提供了两副位图的像素差
开发平台:Visual C++ | 大小:114KB | 下载10次
enger 在 2006-04-22 23:38:07 上传
说明:实时改变控件Picture Control内的图标或位图的方法。
开发平台:Visual C++ | 大小:3KB | 下载278次