- 12
- 0
- 约2.65万字
- 约 18页
- 2019-07-03 发布于浙江
- 举报
// A BMP truecolor to JPEG encoder
// Copyright 1999 Cristian Cuturicu
#include stdio.h
#include stdlib.h
#include string.h
#include jtypes.h
#include jglobals.h
#include jtables.h
void write_APP0info()
//Nothing to overwrite for APP0info
{
writeword(APP0info.marker);
writeword(APP0info.length);
writebyte(J);
writebyte(F);
writebyte(I);
writebyte(F);
writebyte(0);
writebyte(APP0info.versionhi);
writebyte(APP0info.versionlo);
writebyte(APP0info.xyunits);
writeword(APP0info.xdensity);
writeword(APP0info.ydensity);
writebyte(APP0info.thumbnwidth);
writebyte(APP0info.thumbnheight);
}
原创力文档

文档评论(0)