代码搜索:图像压缩系统
找到约 10,000 项符合「图像压缩系统」的源代码
代码结果 10,000
www.eeworm.com/read/243130/12959600
txt 抓屏幕图像.txt
{抓屏幕图像,保存为内存流--BMP流,压缩BMP流,JPG流,以及使用流}
{在网络中传送BMP流和JPG流的速度没测试过}
{BMP流的压缩是无损压缩}
{
全局变量
memoryStream:TMemoryStream;
memoryStream:=TMemoryStream.create;
}
var
image:Timage;
jpgstream:TJPEGIma
www.eeworm.com/read/142155/12960354
bmp 原始lena图像.bmp
www.eeworm.com/read/243009/12968868
bmp 原始lena图像.bmp
www.eeworm.com/read/243009/12968938
bmp 彩色lena图像.bmp
www.eeworm.com/read/243009/12969022
bmp 原始lena图像.bmp
www.eeworm.com/read/243009/12969113
bmp 原始lena图像.bmp
www.eeworm.com/read/328050/13050121
ppt vc图像基础.ppt
www.eeworm.com/read/138826/13209213
bmp 新建 bmp 图像.bmp
www.eeworm.com/read/138714/13221322
txt 图像转置.txt
//参数说明 lpDIB 是指向以图像文件信息头开始的一段数据
//函数说明:该函数实现图像的转置功能
BOOL WINAPI TransposeDIB(LPSTR lpDIB)
{
// 图像的宽度和高度
LONG lWidth;
LONG lHeight;
// 指向源图像的指针
LPSTR lpDIBBits;
// 指向源象素的指针
LPSTR lpSrc
www.eeworm.com/read/138714/13221360
txt 图像增强技术.txt
//参数说明:
//hDIB 图像数据句柄
//n 对比增强的强度值
//函数说明:该函数实现图像对比度增强的功能
HDIB DIB::ContrastEnhance(HANDLE hDIB,int n)
{
//用来保存数据
HDIB hNewDIB;
LPBITMAPINFOHEADER lpbi;
//源数据区和新数据去指针
LPBYTE lpSDIBBits