登山者的仰望

不仅要走好脚下的每一步,也要仰望山顶

2008年6月9日

c++ int to string(整型到字符串)

摘要: 1. int sprintf( char *buffer, const char *format [, argument] ... ); 例如: int ss; char temp[64]; string str; ss = 1000; sprintf(temp, "%d", ss); string s(te... 阅读全文

posted @ 2008-06-09 19:41 光光GG 阅读(21649) 评论(0) 推荐(0)

2008年6月8日

c语言处理BMP--锐化,柔化,浮雕,灰度图(二)效果图

摘要: 原图 柔化 锐化 浮雕 灰度 阅读全文

posted @ 2008-06-08 20:54 光光GG 阅读(1744) 评论(0) 推荐(0)
c语言处理BMP--锐化,柔化,浮雕,灰度图(一)

摘要: #include"stdio.h" //#include"alloc.h" #include"dos.h" //#include"graphics.h" #include"math.h" typedef struct { int bfType;/**//* 类型标志,总是BM*/ long bfSize;/**//* 文件大小*/ int bf... 阅读全文

posted @ 2008-06-08 00:12 光光GG 阅读(4097) 评论(4) 推荐(1)

2008年6月7日

BMP文件格式

摘要: 简介 BMP(Bitmap-File)图形文件是Windows采用的图形文件格式,在Windows环境下运行的所有图象处理软件都支持BMP图象文件格式。Windows系统内部各图像绘制操作都是以BMP为基础的。Windows 3.0以前的BMP图文件格式与显示设备有关,因此把这种BMP图象文件格式称为设备相关位图DDB(device-dependent bitmap)文件格式。Windows ... 阅读全文

posted @ 2008-06-07 17:41 光光GG 阅读(776) 评论(0) 推荐(1)

2008年6月3日

C#设计的一个向导程序(Wizard)框架 --VS2008版(三)

摘要: MailConfigureStep4.cs using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace Us... 阅读全文

posted @ 2008-06-03 23:41 光光GG 阅读(838) 评论(0) 推荐(0)