1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
/* ybmtopbm.c - read a file from Bennet Yee's 'xbm' program and write a pbm.
**
** Written by Jamie Zawinski based on code (C) 1988 by Jef Poskanzer.
**
** Permission to use, copy, modify, and distribute this software and its
** documentation for any purpose and without fee is hereby granted, provided
** that the above copyright notice appear in all copies and that both that
** copyright notice and this permission notice appear in supporting
** documentation. This software is provided "as is" without express or
** implied warranty.
*/
#include <stdio.h>
#include "pbm.h"
static void getinit ARGS(( FILE* file, short* colsP, short* rowsP, short* depthP, short* padrightP ));
static bit getbit ARGS(( FILE* file ));
#define YBM_MAGIC ( ( '!' << 8 ) | '!' )
int
main( argc, argv )
int argc;
char* argv[];
{
FILE* ifp;
bit* bitrow;
register bit* bP;
short rows, cols, padright, row, col;
short depth;
pbm_init( &argc, argv );
if ( argc > 2 )
pm_usage( "[ybmfile]" );
if ( argc == 2 )
ifp = pm_openr( argv[1] );
else
ifp = stdin;
getinit( ifp, &cols, &rows, &depth, &padright );
if ( depth != 1 )
pm_error(
"YBM file has depth of %d, must be 1",
(int) depth );
pbm_writepbminit( stdout, cols, rows, 0 );
bitrow = pbm_allocrow( cols );
for ( row = 0; row < rows; ++row )
{
/* Get data. */
for ( col = 0, bP = bitrow; col < cols; ++col, ++bP )
*bP = getbit( ifp );
/* Discard line padding */
for ( col = 0; col < padright; ++col )
(void) getbit( ifp );
pbm_writepbmrow( stdout, bitrow, cols, 0 );
}
pm_close( ifp );
pm_close( stdout );
exit( 0 );
}
static int item;
static int bitsperitem, bitshift;
static void
getinit( file, colsP, rowsP, depthP, padrightP )
FILE* file;
short* colsP;
short* rowsP;
short* depthP;
short* padrightP;
{
short magic;
if ( pm_readbigshort( file, &magic ) == -1 )
pm_error( "EOF / read error" );
if ( magic != YBM_MAGIC )
pm_error( "bad magic number in YBM file" );
if ( pm_readbigshort( file, colsP ) == -1 )
pm_error( "EOF / read error" );
if ( pm_readbigshort( file, rowsP ) == -1 )
pm_error( "EOF / read error" );
*depthP = 1;
*padrightP = ( ( *colsP + 15 ) / 16 ) * 16 - *colsP;
bitsperitem = 0;
}
static bit
getbit( file )
FILE* file;
{
bit b;
if ( bitsperitem == 0 )
{
item = getc(file) | getc(file)<<8;
if ( item == EOF )
pm_error( "EOF / read error" );
bitsperitem = 16;
bitshift = 0;
}
b = ( ( item >> bitshift) & 1 ) ? PBM_BLACK : PBM_WHITE;
--bitsperitem;
++bitshift;
return b;
}
|