-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpbmtoimgv.c
169 lines (150 loc) · 4.3 KB
/
pbmtoimgv.c
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/*
* pbmtoimgv.c
* PBM to Pilot Image Viewer pdb converter.
*
* Copyright (C) 1997 Eric A. Howe
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Authors: Eric A. Howe ([email protected])
*/
#include <mine/slop.h>
MU_ID("$Mu: imgvtopgm/pbmtoimgv.c 1.12 1998/12/16 18:25:11 $")
#include <stdlib.h>
#include <sys/stat.h>
#include <mine/ipdb.h>
/*
* These tend to live in different places on different systems so I'll
* just do it by hand and assume you have a proper libc.
*/
extern int optind;
extern char *optarg;
extern int getopt(int, char *const *, const char *);
static int
version(const char *me)
{
printf("%s %s\n", me, VERSION);
return EXIT_SUCCESS;
}
#define OPTS "hvt:n:cmu"
static char *usefmt = "%s [-hv] [-n note] [-t title] [-{c|m|u}] [in [out]]\n";
static char *explain[] = {
"\tConvert a pbm file to a Pilot Image Viewer pdb file.",
"",
"\t-h Display this usage message and exit.",
"\t-v Display the version number and exit.",
"\t-c Produce a compressed image (default).",
"\t-m Produce a compressed only if it is smaller.",
"\t-u Produce an uncompressed image.",
"\t-t title Specify the pdb name, the default is unnamed.",
"\t-n note Read the image note from note.",
NULL
};
static int
usage(const char *me, int ret)
{
char **s;
printf(usefmt, me);
for(s = &explain[0]; *s != NULL; ++s)
printf("%s\n", *s);
return ret;
}
static int
readimg(IPDB *pdb, FILE *fp)
{
bit *b = NULL;
int w, h, fmt;
int status, i;
w = h = fmt = 0;
pbm_readpbminit(fp, &w, &h, &fmt);
if((b = calloc(1, w*h*sizeof(bit))) == NULL)
return ENOMEM;
for(i = 0; i < h; ++i)
pbm_readpbmrow(fp, &b[i*w], w, fmt);
status = ipdb_insert_mimage(pdb, w, h, b);
free(b);
return status;
}
static int
readtxt(IPDB *pdb, char *notefile)
{
struct stat st;
char *s;
FILE *fp;
int n;
if(notefile == NULL)
return 0;
memset((void *)&st, '\0', sizeof(st));
if(stat(notefile, &st) != 0)
return errno;
fp = pm_openr(notefile);
if((s = calloc(1, st.st_size + 1)) == NULL)
return ENOMEM;
if(fread(s, 1, st.st_size, fp) != (size_t)st.st_size)
return EIO;
pm_close(fp);
for(n = strlen(s) - 1; n >= 0 && s[n] == '\n'; --n)
s[n] = '\0';
ipdb_insert_text(pdb, s);
return 0;
}
int
main(int argc, char **argv)
{
char *me, *name, *notefile;
int i, status, comp;
IPDB *pdb;
FILE *in, *out;
if((me = strrchr(*argv, '/')) == NULL)
me = *argv;
else
++me;
comp = IPDB_COMPMAYBE;
name = NULL;
notefile = NULL;
pbm_init(&argc, argv);
while((i = getopt(argc, argv, OPTS)) != EOF) {
switch(i) {
case 'h': exit(usage(me, EXIT_SUCCESS)); break;
case 'v': exit(version(me)); break;
case 't': name = optarg; break;
case 'c': comp = IPDB_COMPRESS; break;
case 'u': comp = IPDB_NOCOMPRESS; break;
case 'm': comp = IPDB_COMPMAYBE; break;
case 'n': notefile = optarg; break;
default: exit(usage(me, EXIT_FAILURE)); break;
}
}
if(name == NULL)
name = argv[optind] == NULL ? "unnamed" : argv[optind];
in = argv[optind] == NULL ? stdin : pm_openr(argv[optind++]);
out = argv[optind] == NULL ? stdout : pm_openw(argv[optind]);
if((pdb = ipdb_alloc(name)) == NULL)
pm_error("%s.", ipdb_err(ENOMEM));
if((status = readimg(pdb, in)) != 0)
pm_error("PGM read error: %s.", ipdb_err(status));
if((status = readtxt(pdb, notefile)) != 0)
pm_error("Note read error: %s.", ipdb_err(status));
if((status = ipdb_write(pdb, comp, out)) != 0)
pm_error("PDB write error: %s.", ipdb_err(status));
if(comp == IPDB_COMPMAYBE && !ipdb_compressed(pdb))
pm_message("Image too complex to be compressed.");
pdb = ipdb_free(pdb);
if(in != stdin)
pm_close(in);
if(out != stdout)
pm_close(out);
return EXIT_SUCCESS;
}