中国IT动力,最新最全的IT技术教程
最新100篇 | 推荐100篇 | 专题100篇 | 排行榜 | 搜索 | 在线API文档 | 网通镜像
首 页 | 程序开发 | 操作系统 | 软件应用 | 图形图象 | 网络应用 | 精文荟萃 | 教育认证 | 硬件维护 | 未整理篇 | 站长教程
ASP JS PHP工程 ASP.NET 网站建设 UML J2EESUN .NET VC VB VFP 网络维护 数据库 DB2 SQL2000 Oracle Mysql
服务器 Win2000 Office C DreamWeaver FireWorks Flash PhotoShop 上网宝典 CorelDraw 协议大全 网络安全 微软认证
硬件维护  CPU  主板  硬盘  内存  显卡  显示器  键盘鼠标  声卡音箱  打印机  机箱电源  BIOS  网卡  C#  Java  Delphi  vs.net2005
  当前位置:> 程序开发 > 编程语言 > Visual C++ > 位图操作
改变位图颜色深度
作者:rjren 时间:2001-10-04 09:55 出处:互联网 责编:chinaitpower
              摘要:改变位图颜色深度

Changing Bitmaps Color Depth


This article was contributed by Gerd Esser, Germany.

Environment: MSVC 6.0

The basic problem of this code was to decrease a color depth of great bitmaps (like 8000 x 8000 pixels) to - for example - 4 bits per pixel and solving nearly (! see below) the original color palette. The first attempt was to use the method as shown in DDBtoDIB. But such great bitmaps produce an error: They do nothing sencefull in functions like GetDIBits. So I handle the bitmap in bands of smaller bitmap data and make direct file reading/saving operations of the bitmaps.

Because of the internal mapping of the color palette to the system palette I got some strange results. Also, by realizing the whole number of really used colors, I ve got another problem with the previous banding of the bitmap, which show me only a small part of the overall used colors. This was the second problem. So I create a color palette by counting and adding the colors of each band to a global color palette of the bitmap.

A small problem still remains: By mapping the source bitmap into memory, the color palette cannot be solved exactly. If the color palette cannot be mapped into the system palette, the result color palette may differ by a view percent. But I didn't spend more time to this fact because the present solution was sufficient for me.

The result is a class BitmapLib with two (static) methods, ChangeColorDepth() and GetUsedColors().

BOOL CBitmapLib::ChangeColorDepth(CString const& stSrcBitmapFile,
                                  CString const& stDstBitmapFile,
                                  WORD const wDstBitCount,
                                  CProgressCtrl* pProgressCtrl=NULL);
ChangeColorDepth() changes a color depth of a file based bitmap and saves the result into a destination file. The operation is done by increasing or decreasing the bits per pixel through the whole range from 1 to 32 (thus converting also from device dependent into device independent or the way back). The progress control is only used if nescessary and showing the work progress (great bitmaps last a few seconds ...)

int CBitmapLib::GetUsedColors(CString const & stSrcBitmapFile,
                              RGBQUAD *       pColorTable,
                              WORD const      wMaxColorTableSize,
                              CProgressCtrl *pProgressCtrl = NULL);
int CBitmapLib::GetUsedColors(BITMAPINFO const * pBmi,
                              BYTE const *       pBits,
                              UINT const         nStartScanLine,
                              UINT const         nScanLines,
                              RGBQUAD *          pColorTable,
                              WORD const         wMaxColorTableSize,
                              WORD &             wUsedColors );
A byproduct of the operation ChangeColorDepth() is the method GetUsedColors(), which count the the really used colors and produces a color table of the used colors.

Both methods abort its operation, if the destination color depth is not sufficient enough for the number of used colors in the source bitmap.

Downloads

Download source - 6 Kb

History

Date Posted: February 6, 2001
关闭本页
 
首页 | 投资与合作 | 服务条款 | 隐私政策 | 收藏本站 | 设为首页 | 新用户注册 | 免责声明 | 使用帮助
Copyright ©2005-2008 chinaitpower.com All rights reserved. www.chinaitpower.com 版权所有