字符图像
摘要:
字符图像 ——《C++沉思录》第9章 一个课堂练习的分析(上) 设计一个字符图像,用字符代替像素,实现的基本操作有加边框、将两个图像横排、竖排等。然后再对其进行一些扩展:横排下边对齐、竖排右边对齐、将重载运算符封装、去边框处理等。 具体细节详见代码和注释。// 字符图像#include #include using namespace std;// 图像类class Picture{private: int height; // 高 int width; // 宽 char* data; // 可用string代替 int isframe; // 标示... 阅读全文
posted @ 2013-12-07 15:22 unixfy 阅读(635) 评论(0) 推荐(0) 编辑