资源简介
位图可以节省内存资源,而C语言又是高效的编程语言

代码片段和文件信息
/* bitmap.c
*
* Copyright (C) 2013 2013 chashen. All Rights Reserved.
* Written by chashen
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version
* 2 of the License or (at your option) any later version.
*/
#include
#include
#include “bitmap.h“
/********************************************************************
Function Name: Bitmap_Create
Date Created: 2013-11-07
Author: chashen
Description: 创建指定最大有效位的位图
Input: unsigned int uiMaxBitID 最大有效位
Output: none
Return: BITMAP_S * 创建成功
NULL 创建失败
Caution:
----------------------------------------------------------------
Modifiction History
DATE NAME DEscriptION
------------------------------------------------------------
YYYY-MM-DD
----------------------------------------------------------------
********************************************************************/
BITMAP_S *Bitmap_Create(unsigned int uiMaxBitID)
{
BITMAP_S *pstBitmap = NULL;
unsigned int uiLen = sizeof(BITMAP_S);
unsigned int uiMemSize = (uiMaxBitID + 1) / 8;
unsigned int uiRemainder = (uiMaxBitID + 1) % 8;
if (uiRemainder != 0)
{
uiMemSize++;
}
uiLen += uiMemSize;
pstBitmap = malloc(uiLen);
if (pstBitmap != NULL)
{
memset(pstBitmap 0 uiLen);
pstBitmap->uiMemSize = uiMemSize;
pstBitmap->uiMaxBitID = uiMaxBitID;
}
return pstBitmap;
}
/********************************************************************
Function Name: Bitmap_Destroy
Date Created: 2013-11-07
Author: chashen
Description: 销毁位图
Input: none
Output: none
Return: void
Caution:
----------------------------------------------------------------
Modifiction History
DATE NAME DEscriptION
------------------------------------------------------------
YYYY-MM-DD
----------------------------------------------------------------
********************************************************************/
void Bitmap_Destroy(BITMAP_S *pstBitmap)
{
free(pstBitmap);
pstBitmap = NULL;
}
/********************************************************************
Function Name: Bitmap_Set
Date Created: 2013-11-07
Author: chashen
Description: 设置位图的指定位
Input: BITMAP_S *pstBitmap 位图指针
unsigned int uiPos 指定的设置位
Output: none
Return: void
Caution:
----------------------------------------------------------------
Modifiction History
DATE NAME DEscriptION
------------------------------------------------------------
YYYY-MM-DD
----------------------------------------------------------------
**************************
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-09-13 09:20 bitmap\
文件 5001 2013-11-08 20:45 bitmap\bitmap.c
文件 904 2013-11-08 20:45 bitmap\bitmap.h
文件 1274 2013-11-08 20:45 bitmap\main.c
文件 268 2013-11-08 20:45 bitmap\makefile
- 上一篇:Windows下Socket文件数据传输
- 下一篇:图像处理 验证码识别C++
相关资源
- 操作系统c语言模拟文件管理系统844
- C语言开发实战宝典
- C++中头文件与源文件的作用详解
- C语言代码高亮html输出工具
- 猜数字游戏 c语言代码
- C语言课程设计
- 数字电位器C语言程序
- CCS FFT c语言算法
- 使用C语言编写的病房管理系统
- 通信过程中的RS编译码程序(c语言)
- 计算机二级C语言上机填空,改错,编
- 用回溯法解决八皇后问题C语言实现
- 简易教务管理系统c语言开发文档
- 操作系统课设 读写者问题 c语言实现
- 小波变换算法 c语言版
- C流程图生成器,用C语言代码 生成C语
- 3des加密算法C语言实现
- 简单的C语言点对点聊天程序
- 单片机c语言源程序(51定时器 八个按
- 个人日常财务管理系统(C语言)
- c语言电子商务系统
- 小甲鱼C语言课件 源代码
- 将图片转换为C语言数组的程序
- C语言实现的一个内存泄漏检测程序
- DES加密算法C语言实现
- LINUX下命令行界面的C语言细胞游戏
- 用单片机控制蜂鸣器播放旋律程序(
- 学校超市选址问题(数据结构C语言版
- 电子时钟 有C语言程序,PROTEUS仿真图
- 尚观培训linux许巍老师关于c语言的课
评论
共有 条评论