V10/libpicfile/pic.bit.c
/*
* Type-specific code for TYPE=bitmap
*/
#include <picfile.h>
#include <libc.h>
int PRD_bit(f, buf)
PICFILE *f;
char *buf;
{
register char *bufp, *ebuf, *bitp;
register int bit;
int n, bwid=(f->width+15)/16*2;
if(f->line==0){
f->buf=malloc(bwid);
if(f->buf==0){
PIC_error="Can't allocate buffer";
return 0;
}
}
if(f->line==f->height){
PIC_error="Read past end of picture";
return 0;
}
bitp=f->buf;
n=read(f->fd, bitp, bwid);
if(n!=bwid){
if(n==0) PIC_error="End of file reading picture";
return 0;
}
ebuf=buf+f->width;
bit=128;
for(bufp=buf;bufp!=ebuf;){
*bufp++=*bitp&bit?0:255;
bit>>=1;
if(bit==0){
bitp++;
bit=128;
}
}
f->line++;
return 1;
}
int PWR_bit(f, buf)
PICFILE *f;
char *buf;
{
register char *bufp, *ebuf, *bitp;
register int bit, byte;
int n, bwid=(f->width+15)/16*2;
if(f->line==0){
f->buf=malloc(bwid);
f->buf[bwid-1]=0; /* might be a slack byte */
if(f->buf==0){
PIC_error="Can't allocate buffer";
return 0;
}
PWR_header(f);
}
if(f->line==f->height){
PIC_error="Write past end of picture";
return 0;
}
bitp=f->buf;
ebuf=buf+f->width;
byte=0;
bit=128;
for(bufp=buf;bufp!=ebuf;){
if((*bufp++&255)<128)
byte|=bit;
bit>>=1;
if(bit==0){
*bitp++=byte;
bit=128;
byte=0;
}
}
if(bit!=128) *bitp=byte;
f->line++;
n=write(f->fd, f->buf, bwid);
if(n!=bwid) return 0;
return 1;
}
int PCL_bit(f)
PICFILE *f;
{
free(f->buf);
}