#include <stdio.h>
#include <stdlib.h>
//#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <ctype.h>
/* since we're emitting C source, the comments containing the
ASCII dump better not contain C comment markers! */
void fixasc(char *asc, int len) {
int j;
for(j=0; j<(len-1); j++) {
/* slash-star or slash-slash become slash-dot */
if(asc[j] == '/' && (asc[j+1] == '*' || asc[j+1] == '/'))
asc[j+1] = '.';
/* star-slash becomes dot-slash */
else if(asc[j] == '*' && asc[j+1] == '/')
asc[j] = '.';
}
}
int main(int argc, char **argv) {
int i, j, count = 0;
char *p, asc[9];
FILE *in;
if(argc != 2) {
fprintf(stderr,
"#error usage: %s blobfile >blobfile.c 2>blobfile.h\n", argv[0]);
exit(1);
}
if( !(in = fopen(argv[1], "rb")) ) {
fprintf(stderr, "/* %s: %s */\n", argv[1], strerror(errno));
exit(1);
}
printf("/* C source created by blob2c from input file %s */\n\n", argv[1]);
fprintf(stderr,
"/* C header created by blob2c from input file %s */\n\n", argv[1]);
for(p = argv[1]; *p; p++)
if(!isalnum(*p)) *p = '_';
fprintf(stderr,
"#ifndef %s_H\n"
"#define %s_H\n\n",
argv[1], argv[1]);
/* start array definition */
printf("unsigned char %s[] = {", argv[1]);
asc[8] = '\0';
/* read/process each input byte in loop, until EOF */
while( (i = getc(in)) != EOF ) {
if(count) putchar(',');
if(count % 8 == 0) {
if(count) {
/* fix & print ASCII dump */
fixasc(asc, 8);
printf(" /* %s */", asc);
}
/* start next line */
printf("\n\t/* %6d */ ", count);
}
/* store this byte of ASCII dump */
asc[count % 8] = isprint(i) ? i : '.';
/* print this byte of hex data */
printf("0x%02x", i);
count++;
}
/* fix ASCII dump for last line */
i = count % 8;
if(!i) i = 8;
fixasc(asc, i);
asc[i] = '\0';
/* line it up with the previous lines */
j = (8 - i) * 5;
for(i=0; i<j; i++)
putchar(' ');
/* print it */
printf(" /* %s */", asc);
/* end of array definition */
printf("\n}; /* %s */\n\n", argv[1]);
/* array_len definition */
printf("int %s_len = %d;\n", argv[1], count);
/* check for read errors */
i = 0;
if(ferror(in)) {
fprintf(stderr, "#error %s: %s\n", argv[1], strerror(errno));
i = 1;
}
fclose(in);
/* extern declarations to stderr */
fprintf(stderr,
"extern unsigned char %s[];\nextern int %s_len;\n",
argv[1], argv[1]);
fprintf(stderr, "\n#endif /* %s_H */\n", argv[1]);
return i;
}
没有合适的资源?快使用搜索试试~ 我知道了~
BMP-ARRAY.rar_Want It_bmp_bmp load LCD
共15个文件
pdb:2个
idb:1个
opt:1个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 178 浏览量
2022-09-21
08:43:37
上传
评论
收藏 160KB RAR 举报
温馨提示
Can use it to run on MS-DOS or VC++, it converts you Bitmap image to C style Arrays for sprites or pictures you want to load on LCD using embedded systems.
资源推荐
资源详情
资源评论
收起资源包目录
BMP-ARRAY.rar (15个子文件)
BMP-ARRAY
bmp2arr
bmp2arr.dsp 4KB
bmp2arr.opt 48KB
bmp2arr.dsw 539B
bmp2arr.plg 1KB
Debug
bmp2arr.pch 198KB
logo-seyerwide_64x55.bmp 2KB
bmp2arr.exe 160KB
bmp2arr.ilk 179KB
img.h 17KB
bmp2arr.pdb 345KB
vc60.idb 33KB
vc60.pdb 44KB
blob2c.obj 8KB
bmp2arr.ncb 33KB
blob2c.c 2KB
共 15 条
- 1
资源评论
小波思基
- 粉丝: 84
- 资源: 1万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功