File: xpmtops.c

package info (click to toggle)
libforms 1.0.93sp1-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 11,548 kB
  • ctags: 9,107
  • sloc: ansic: 97,227; sh: 9,236; makefile: 858
file content (299 lines) | stat: -rw-r--r-- 7,284 bytes parent folder | download | duplicates (2)
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
/*
 * This file is part of XForms.
 *
 * XForms is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1, or
 * (at your option) any later version.
 *
 * XForms 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with XForms. If not, see <http://www.gnu.org/licenses/>.
 */


/**
 * \file xpmtops.c
 *
 *  This file is part of XForms package
 *  Copyright (c) 1997-2000  by T.C. Zhao
 *  All rights reserved.
 *
 *  Turn an xpm file into PostScript.
 *  Two methods are provided: one is to read the xpm file
 *  and convert directly. The other one is to use pbm+ package.
 *  The direct method suffers from the fact that it only handles
 *  xpm3 (not a big problem as xpm1 is very rare these days).
 *  The pbm+ has the drawback that it does not handle the
 *  grayscale colormap in the xpm file.
 *
 *  The default is to use the direct translation.
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "include/forms.h"
#include "fd2ps.h"
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>     /* unlink */
#include <signal.h>


/***************************************
 * Get the dimension of the xpm file for alignment
 ***************************************/

static int
get_xpm_size( const char * file,
              int        * w,
              int        *h )
{
    FILE *fp = fopen( file, "r" );
    int c, j;

    *w = *h = -1;

    if ( ! fp )
    {
        fprintf( stderr, "Can't open xpm file %s\n", file );
        return -1;
    }

    while ( ( c = getc( fp ) ) != '"' && c != EOF )
        /* empty */ ;

    if ( c == EOF )
    {
        fprintf( stderr, "error reading xpm file\n" );
        fclose( fp );
        return -1;
    }

    if ( fscanf( fp, "%d %d %d %d", w, h, &j, &j ) != 4 )
    {
        fprintf( stderr, "Failed to get the size of the xpm\n" );
        fclose( fp );
        *w = *h = 25;
        return -1;
    }

    fclose( fp );
    return 0;
}


/***************************************
 ***************************************/

void
draw_xpm( FL_OBJECT * ob )
{
    SPEC *sp = ob->spec;
    int xx, yy, w, h;

    if ( get_xpm_size( sp->file, &w, &h ) >= 0 )
    {
        fl_get_align_xy( sp->align, ob->x, ob->y, ob->w, ob->h, w, h,
                         FL_abs( ob->bw ) + sp->dx, FL_abs( ob->bw ) + sp->dy,
                         &xx, &yy );

#if 0
        if ( ! flps->xpmtops_direct )
            xpmtops_via_ppm( sp->file, xx, yy, ob->col1 );
        else
#endif
        xpmtops_direct( sp->file, xx, yy, ob->col1 );
    }

}


#if 0
/***************************************
 * Convert using pbmplus+ package
 ***************************************/

static char *bgn_eps =
    "/BeginEPSF { /inc_state save def /dict_count countdictstack def\n"
    "/op_count count 1 sub def userdict begin /showpage {} def\n"
    "0 setgray 0 setlinecap 1 setlinewidth 0 setlinejoin \n"
    "10 setmiterlimit [] 0 setdash newpath\n"
    "/languagelevel where {pop languagelevel 1 ne\n"
    "{false setstrokeadjust false setoverprint } if } if} BD\n";

static char *end_eps =
    "/EndEPSF { count op_count sub {pop} repeat\n"
    "countdictstack dict_count sub{end} repeat inc_state restore } BD\n";

void
emit_epsf_import_command( void )
{
    static int emitted;

    if ( ! emitted )
    {
        ps_output( bgn_eps );
        ps_output( end_eps );
        emitted = 1;
    }
}


/***************************************
 ***************************************/

static int
get_bounding_box( const char * file,
                  int        * x,
                  int        * y,
                  int        * w,
                  int        * h )
{
    FILE *fp;
    char buf[ 1024 ];

    if ( ! ( fp = fopen( file, "r" ) ) )
        return -1;

    while ( fgets(buf, sizeof buf, fp ) )
    {
        if ( strstr( buf, "BoundingBox:" ) )
        {
            sscanf( buf, "%*s %d %d %d %d\n", x, y, w, h );
            fclose( fp );
            return 0;
        }
    }

    fclose( fp );
    return -1;
}


/***************************************
 ***************************************/

static char *logfile = "xpmtops.log";

static void
convert_to_ps( const char * file,
               long         trans )
{
    FILE *fpr, *fpw;
    char *prefix = "/tmp/xpmtops.eps";
    char tempfile[ 128 ];
    char *cmd, buf[ 1024 ], tmpbuf[ 1024 ], *p, rgbstr[ 32 ];
    int r, g, b, xo, yo, w, h;

    if ( ! file || ! *file )
    {
        fprintf( stderr, "null xpm filename\n" );
        return;
    }

    sprintf( tempfile, "%s.%s", prefix, whoami( ) );

    if ( ! ( fpr = fopen( file, "r" ) ) )
    {
        fprintf( stderr, "Can't open %s\n", file );
        return;
    }

    if ( psinfo.colorps )
        cmd = "(xpmtoppm | pnmdepth 255 | pnmtops >%s) >%s 2>&1";
    else
        cmd = "(xpmtoppm | pnmdepth 255 | ppmtopgm | pnmtops >%s) >%s 2>%1";

    signal( SIGPIPE, SIG_IGN );
    sprintf( buf, cmd, tempfile, logfile );

    if ( ! ( fpw = popen(buf, "w" ) ) )
    {
        fprintf( stderr, "failed to convert xpm to PS. See %s file details\n",
                 logfile );
        return;
    }

    /* fix None attributes on the fly */

    fl_query_imap( trans, &r, &g, &b );
    sprintf( rgbstr, "#%2x%2x%2x", r, g, b );

    while ( fgets( buf, sizeof buf - 1, fpr ) )
    {
        while ( ( p = strstr( buf, "None" ) ) )
        {
            *p = '\0';
            strcat( strcpy( tmpbuf, buf ), rgbstr );
            strcat( tmpbuf, p + 4 );
            strcpy( buf, tmpbuf );
        }
        fputs( buf, fpw );
    }
    pclose( fpw );

    /* find the bounding box of the EPS */

    if ( get_bounding_box( tempfile, &xo, &yo, &w, &h ) < 0 )
    {
        fprintf( stderr, "Failed to convert xpm to EPS. " );
        fprintf( stderr, "See %s for details\n", logfile );
        fprintf( stderr, "Rest of the files converted\n" );
        return;
    }

    ps_output( "-%d -%d translate\n", xo, yo );
    fpr = fopen( tempfile, "r" );
    while ( fgets( buf, sizeof buf - 1, fpr ) )
        ps_output( buf );
    fclose( fpr );
    unlink( tempfile );
    unlink( logfile );
}


/***************************************
 ***************************************/

static int
xpmtops_via_ppm( const char * file,
                 int          xx,
                 int          yy,
                 long         tran )
{
    emit_epsf_import_command( );
    ps_verbatim( "\n%% pixmap goes here\n" );
    ps_output( "BeginEPSF %d %d translate 1 1 scale\n", xx, yy );
    ps_verbatim( "\n%%%%BeginDocument: %s\n", ps_literal( file ) );
    convert_to_ps( file, tran );
    ps_verbatim( "\n%%%%EndDocument\n" );
    ps_verbatim( "EndEPSF\n" );
    return 0;
}


/* End of convert using pbmplus package } */
#endif


/*
 * Local variables:
 * tab-width: 4
 * indent-tabs-mode: nil
 * End:
 */


/*
 * Local variables:
 * tab-width: 4
 * indent-tabs-mode: nil
 * End:
 */