-
Notifications
You must be signed in to change notification settings - Fork 7
/
GfxConvert.pm
559 lines (501 loc) · 15.1 KB
/
GfxConvert.pm
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
# -*- perl -*-
#
# $Id: GfxConvert.pm,v 1.20 2008/08/17 20:29:22 eserte Exp $
# Author: Slaven Rezic
#
# Copyright (C) 1998,2003,2004,2005 Slaven Rezic. All rights reserved.
# This package is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.
#
# Mail: slaven@rezic.de
# WWW: http://bbbike.de
#
package GfxConvert;
use BBBikeUtil;
use strict;
use vars qw(%tmpfiles $VERBOSE %devices $pscap_called %convsub %checksub);
init();
sub init {
no strict 'refs';
%convsub = ();
%checksub = ();
for my $src (qw(ps xwd)) {
for my $dest (qw(ppm gif jpeg png ps pdf)) {
my $convsub = $src."2".$dest;
if (defined &{$convsub}) {
$convsub{$src}->{$dest} = \&{$convsub};
}
my $checksub = $convsub . "_check";
if (defined &{$checksub}) {
$checksub{$src}->{$dest} = \&{$checksub};
}
}
}
}
sub check {
my($infmt, $outfmt, $infile, $outfile, %args) = @_;
my $checksub = $checksub{$infmt}->{$outfmt};
local $ENV{PATH} = $ENV{PATH}; _before_exec();
if (defined $checksub) {
$checksub->($infile, $outfile, %args);
} else {
1;
}
}
sub convert {
my($infmt, $outfmt, $infile, $outfile, %args) = @_;
my $convsub = $convsub{$infmt}->{$outfmt};
local $ENV{PATH} = $ENV{PATH}; _before_exec();
if (defined $convsub) {
$convsub->($infile, $outfile, %args);
} else {
die "Konversion von $infmt nach $outfmt kann nicht durchgeführt werden.";
}
}
# assumes localized $ENV{PATH}
sub _before_exec {
if ($^O eq 'MSWin32') {
# some path candidates for gfx programs
$ENV{PATH} .= ";C:/Programme/gs/gs8.14/lib;C:/Programme/GnuWin32/bin";
}
}
######################################################################
# Postscript to anything
#
my $ppm_error_preamble = "Die PPM-Datei kann nicht erstellt werden. Grund: ";
sub ps2ppm_check {
if (!is_in_path("gs")) {
die $ppm_error_preamble . "Ghostscript wird benötigt.";
}
}
sub ps2ppm {
my($infile, $outfile, %args) = @_;
my(@cmd) = (qw(gs -q -sDEVICE=ppmraw -DNOPAUSE));
if ($args{-res}) {
push @cmd, "-r$args{-res}";
}
push @cmd, ("-sOutputFile=$outfile",
qw(--),
$infile);
warn "Executing @cmd ..." if $VERBOSE;
if (system(@cmd) != 0) {
die $ppm_error_preamble .
"Die Konvertierung mit gs fehlgeschlagen (exit: $?)";
}
return _ppm_post_transform($outfile, $outfile, %args);
}
sub _ppm_post_transform {
my($infile, $outfile, %args) = @_;
if (defined $args{'-autocrop'}) {
if (!is_in_path("pnmcrop")) {
warn "Warnung: pnmcrop ist nicht vorhanden, kein Autocrop möglich.";
} else {
my $tmpfile = "/tmp/GfxConvert-ps2ppm.$$.ppm";
$tmpfiles{$tmpfile}++;
# Zweimal pnmcrop aufrufen... beim ersten Mal wird der
# schwarze Streifen am linken Rand entfernt (Bug in gs?),
# beim zweiten Mal wird der eigentliche Schnitt durchgeführt.
my @cmd = (["pnmcrop", "-left", $outfile], "|",
["pnmcrop"], ">", $tmpfile);
if (!run_command(@cmd)) {
warn "Warnung: Fehler beim Aufruf von pnmrotate.";
} else {
warn "Mv from $tmpfile to $outfile ..." if $VERBOSE;
require File::Copy;
File::Copy::mv($tmpfile, $outfile);
}
}
}
if (defined $args{'-rotate'}) {
if (!is_in_path("pnmrotate")) {
warn "Warnung: pnmrotate ist nicht vorhanden, keine Umwandlung nach Landscape.";
} else {
my $tmpfile = "/tmp/GfxConvert-ps2ppm.$$.ppm";
$tmpfiles{$tmpfile}++;
my @cmd = (["pnmrotate", $args{'-rotate'}, $outfile],
">", $tmpfile);
if (!run_command(@cmd)) {
warn "Warnung: Fehler beim Aufruf von pnmrotate.";
} else {
warn "Mv from $tmpfile to $outfile ..." if $VERBOSE;
require File::Copy;
File::Copy::mv($tmpfile, $outfile);
}
}
}
if (defined $args{'-mapcolor'}) {
if (!is_in_path("ppmchange")) {
warn "Warnung: ppmchange ist nicht vorhanden, keine Anpassung der Farben.";
} else {
my $tmpfile = "/tmp/GfxConvert-ps2ppm.$$.ppm";
$tmpfiles{$tmpfile}++;
my @arg = %{ $args{'-mapcolor'} };
my @cmd = (["ppmchange", @arg, $outfile], ">", $tmpfile);
if (!run_command(@cmd)) {
warn "Warnung: Fehler beim Aufruf von ppmchange.";
} else {
warn "Mv from $tmpfile to $outfile ..." if $VERBOSE;
require File::Copy;
File::Copy::mv($tmpfile, $outfile);
}
}
}
1;
}
my $gif_error_preamble = "Die GIF-Datei kann nicht erstellt werden. Grund: ";
sub ps2gif_check {
my($infile, $outfile, %args) = @_;
if (!is_in_path("ppmtogif") || !is_in_path("ppmquant")) {
die $gif_error_preamble .
"ppmtogif und ppmquant aus der netpbm-Distribution wird benötigt.\n";
}
}
sub ps2gif {
my($infile, $outfile, %args) = @_;
my $ppmfile = "/tmp/GfxConvert.$$.ppm";
$tmpfiles{$ppmfile}++;
ps2ppm($infile, $ppmfile, %args);
my @cmd = ( ["ppmquant", 256, $ppmfile], "|", ["ppmtogif"], ">", $outfile );
if (!run_command(@cmd)) {
die $gif_error_preamble .
"Konvertierung mit ppmtogif fehlgeschlagen (exit: $?)";
}
1;
}
my $jpeg_error_preamble = "Die JPEG-Datei kann nicht erstellt werden. Grund: ";
sub ps2jpeg_check {
my($infile, $outfile, %args) = @_;
if (!is_in_path("cjpeg")) {
die $jpeg_error_preamble . "cjpeg aus der JPEG-Distribution wird benötigt.";
}
}
sub ps2jpeg {
my($infile, $outfile, %args) = @_;
my $quality = $args{-quality} || 70;
my $ppmfile = "/tmp/GfxConvert.$$.ppm";
$tmpfiles{$ppmfile}++;
ps2ppm($infile, $ppmfile, %args);
my @cmd = (["cjpeg", "-quality", $quality, "$ppmfile"], ">", $outfile);
if (!run_command(@cmd)) {
die $jpeg_error_preamble .
"Konvertierung mit cjpeg fehlgeschlagen (exit: $?)";
}
1;
}
my $png_error_preamble = "Die PNG-Datei kann nicht erstellt werden. Grund: ";
sub ps2png_check {
my($infile, $outfile, %args) = @_;
if (!is_in_path("pnmtopng") && # XXX pnmtopng ist buggy????
!is_in_path("gs")) {
die $png_error_preamble . "Ghostscript oder pnmtopng wird benötigt.";
}
}
sub ps2png {
my($infile, $outfile, %args) = @_;
my $colormode = $args{-colormode} || 'color';
my $depth = $args{-depth} || 24;
if (is_in_path("pnmtopng")) { # XXX pnmtopng ist buggy????
my $ppmfile = "/tmp/GfxConvert.$$.ppm";
$tmpfiles{$ppmfile}++;
ps2ppm($infile, $ppmfile, %args);
my $cmd = "pnmtopng $ppmfile > $outfile";
warn "Executing $cmd ..." if $VERBOSE;
if (system($cmd) != 0) {
die $png_error_preamble .
"Konvertierung mit pnmtopng fehlgeschlagen (exit: $?)";
}
return 1;
}
# Wenn nicht, dann mit ghostscript versuchen. Allerdings werden hier
# nicht die ganzen schönen Features wie crop etc. verwendet.
# XXX überprüfen, ob gs png kann. und welches png.
my $dev;
if ($colormode eq 'mono') {
$dev = 'pngmono';
} elsif ($colormode eq 'gray') {
$dev = 'pnggray';
} else {
if ($depth == 4) {
$dev = 'png16';
} elsif ($depth == 8) {
$dev = 'png256';
} else {
$dev = 'png16m';
}
}
my(@cmd) = (qw(gs -q -DNOPAUSE), "-sDEVICE=$dev");
if ($args{-res}) {
push @cmd, "-r$args{-res}";
}
push @cmd, ("-sOutputFile=$outfile",
qw(--),
$infile);
warn "Executing @cmd ..." if $VERBOSE;
if (system(@cmd) != 0) {
die $png_error_preamble .
"Die Konvertierung mit gs fehlgeschlagen (exit: $?)";
}
# XXX der ganze andere Wust aus ps2ppm fehlt hier...
1;
}
my $pdf_error_preamble = "Die PDF-Datei kann nicht erstellt werden. Grund: ";
sub ps2pdf_check {
my($infile, $outfile, %args) = @_;
if (!is_in_path("ps2pdf")) {
die $pdf_error_preamble .
"ps2pdf aus der Ghostscript-Distribution wird benötigt.\n";
}
}
sub ps2pdf {
my($infile, $outfile, %args) = @_;
my @cmd = ( "ps2pdf", $infile, $outfile );
if (!run_command(@cmd)) {
die $pdf_error_preamble .
"Konvertierung mit ps2pdf fehlgeschlagen (exit: $?)";
}
1;
}
# Füllt das Hash %devices mit den eingebauten Devices von Ghostscript zurück.
# Die Device-Namen sind in den Keys des Hashs enthalten.
# XXX Wird noch nicht verwendet.
# XXX Wie sieht die entsprechende check-Funktion aus?
sub pscap {
return if $pscap_called;
$pscap_called++;
if (!is_in_path("gs")) {
die "Ghostscript wird benötigt.";
}
%devices = ();
open(GS, "gs -h|");
my $in_avail_dev;
while(<GS>) {
if ($in_avail_dev) {
if (/^\s/) {
s/^\s+//;
my(@dev) = split;
foreach (@dev) {
$devices{$_}++;
}
} else {
last;
}
} elsif (/Available devices/i) {
$in_avail_dev++;
}
}
close GS;
}
sub transform_image {
my($in_file, $out_file, %args) = @_;
my $in_mime = $args{'-in_mime'} || "image/gif"; #die "Missing mime type for in file";
my $out_mime = $args{'-out_mime'} || "image/gif"; #die "Missing mime type for out file";
# my $colormode = $args{-colormode} || 'color';
require GD;
if ($GD::VERSION >= 2) {
GD->VERSION(2.13); # older versions may coredump on invalid image files --- note that 2.13 is not out yet as of 2004-05-16 (but there's a patch at rt.cpan.org)
}
open(GIF, $in_file)
or die "Die Datei $in_file konnte nicht geöffnet werden: $!";
binmode GIF;
my $in_img;
if ($in_mime eq 'image/jpeg') {
$in_img = GD::Image->newFromJpeg(\*GIF);
} elsif ($in_mime eq 'image/png') {
$in_img = GD::Image->newFromPng(\*GIF);
} else {
$in_img = GD::Image->newFromGif(\*GIF);
}
my($orig_width, $orig_height) = $in_img->getBounds;
close GIF;
my $width = $args{-width} || $orig_width;
my $height = $args{-height} || $orig_height;
my $out_img = new GD::Image($width, $height);
$out_img->copyResized($in_img, 0, 0, 0, 0,
$width, $height, $orig_width, $orig_height);
open(OUT, ">$out_file") or
die "Auf die Datei $out_file kann nicht geschrieben werden: $!";
binmode OUT;
print OUT ($in_mime eq 'image/jpeg' ? $out_img->jpeg :
($in_mime eq 'image/png' ? $out_img->png :
$out_img->gif ));
close OUT;
}
######################################################################
# XWD to anything
#
sub xwd2ppm_check {
my($infile, $outfile, %args) = @_;
if (!is_in_path("xwdtopnm")) {
die $ppm_error_preamble . "xwdtopnm wird benötigt.";
}
}
sub xwd2ppm {
my($infile, $outfile, %args) = @_;
my $cmd = "xwdtopnm < $infile > $outfile";
warn "Executing $cmd ..." if $VERBOSE;
if (system($cmd) != 0) {
die $ppm_error_preamble .
"Die Konvertierung mit xwdtopnm fehlgeschlagen (exit: $?)";
}
return _ppm_post_transform($outfile, $outfile, %args);
}
sub xwd2gif_check {
my($infile, $outfile, %args) = @_;
if (!is_in_path("ppmtogif") || !is_in_path("ppmquant")) {
die $gif_error_preamble .
"ppmtogif und ppmquant aus der netpbm-Distribution wird benötigt.\n";
}
}
sub xwd2gif {
my($infile, $outfile, %args) = @_;
my $ppmfile = "/tmp/GfxConvert.$$.ppm";
$tmpfiles{$ppmfile}++;
xwd2ppm($infile, $ppmfile, %args);
my @cmd = (["ppmquant", 256, $ppmfile], "|", ["ppmtogif"], ">", $outfile);
if (!run_command(@cmd)) {
die $gif_error_preamble .
"Konvertierung mit ppmtogif fehlgeschlagen (exit: $?)";
}
1;
}
sub xwd2jpeg_check {
my($infile, $outfile, %args) = @_;
if (!is_in_path("cjpeg")) {
die $jpeg_error_preamble . "cjpeg aus der JPEG-Distribution wird benötigt.";
}
}
sub xwd2jpeg {
my($infile, $outfile, %args) = @_;
my $quality = $args{-quality} || 70;
my $error_preamble = "Die JPEG-Datei kann nicht erstellt werden. Grund: ";
my $ppmfile = "/tmp/GfxConvert.$$.ppm";
$tmpfiles{$ppmfile}++;
xwd2ppm($infile, $ppmfile, %args);
my @cmd = (["cjpeg", "-quality", $quality, "$ppmfile"],
">", $outfile);
if (!run_command(@cmd)) {
die $jpeg_error_preamble .
"Konvertierung mit cjpeg fehlgeschlagen (exit: $?)";
}
1;
}
sub xwd2png_check {
my($infile, $outfile, %args) = @_;
if (!is_in_path("pnmtopng") && # XXX pnmtopng ist buggy????
!is_in_path("gs")) {
die $png_error_preamble . "Ghostscript oder pnmtopng wird benötigt.";
}
}
sub xwd2png {
my($infile, $outfile, %args) = @_;
my $colormode = $args{-colormode} || 'color';
my $depth = $args{-depth} || 24;
my $error_preamble = "Die PNG-Datei kann nicht erstellt werden. Grund: ";
if (1 && is_in_path("pnmtopng")) { # XXX pnmtopng ist buggy???? oder nicht?
my $ppmfile = "/tmp/GfxConvert.$$.ppm";
$tmpfiles{$ppmfile}++;
xwd2ppm($infile, $ppmfile, %args);
my $cmd = "pnmtopng $ppmfile > $outfile";
warn "Executing $cmd ..." if $VERBOSE;
if (system($cmd) != 0) {
die $png_error_preamble .
"Konvertierung mit pnmtopng fehlgeschlagen (exit: $?)";
}
return 1;
}
# XXX do not duplicate, see ppm2png
# Wenn nicht, dann mit ghostscript versuchen. Allerdings werden hier
# nicht die ganzen schönen Features wie crop etc. verwendet.
# XXX überprüfen, ob gs png kann. und welches png.
my $dev;
if ($colormode eq 'mono') {
$dev = 'pngmono';
} elsif ($colormode eq 'gray') {
$dev = 'pnggray';
} else {
if ($depth == 4) {
$dev = 'png16';
} elsif ($depth == 8) {
$dev = 'png256';
} else {
$dev = 'png16m';
}
}
my(@cmd) = (qw(gs -q -DNOPAUSE), "-sDEVICE=$dev");
if ($args{-res}) {
push @cmd, "-r$args{-res}";
}
push @cmd, ("-sOutputFile=$outfile",
qw(--),
$infile);
warn "Executing @cmd ..." if $VERBOSE;
if (system(@cmd) != 0) {
die $png_error_preamble .
"Die Konvertierung mit gs fehlgeschlagen (exit: $?)";
}
# XXX der ganze andere Wust aus ps2ppm fehlt hier...
1;
}
my $ps_error_preamble = "Die Postscript-Datei kann nicht erstellt werden. Grund: ";
sub xwd2ps_check {
my($infile, $outfile, %args) = @_;
if (!is_in_path("pnmtops") ||
!is_in_path("gs")) {
die $ps_error_preamble . "Ghostscript und pnmtops werden benötigt.";
}
}
sub xwd2ps {
my($infile, $outfile, %args) = @_;
my $ppmfile = "/tmp/GfxConvert.$$.ppm";
$tmpfiles{$ppmfile}++;
xwd2ppm($infile, $ppmfile, %args);
my $cmd = "pnmtops $ppmfile > $outfile";
warn "Executing $cmd ..." if $VERBOSE;
if (system($cmd) != 0) {
die $ps_error_preamble .
"Konvertierung mit pnmtops fehlgeschlagen (exit: $?)";
}
return 1;
}
sub xwd2pdf_check {
my($infile, $outfile, %args) = @_;
xwd2ps_check($infile, $outfile, %args);
if (!is_in_path("ps2pdf")) {
die $pdf_error_preamble . "ps2pdf wird benötigt.";
}
}
sub xwd2pdf {
my($infile, $outfile, %args) = @_;
my $psfile = "/tmp/GfxConvert.$$.ps";
$tmpfiles{$psfile}++;
xwd2ps($infile, $psfile, %args);
my $cmd = "ps2pdf $psfile $outfile";
warn "Executing $cmd ..." if $VERBOSE;
if (system($cmd) != 0) {
die $pdf_error_preamble .
"Konvertierung mit ps2pdf fehlgeschlagen (exit: $?)";
}
return 1;
}
# Maybe move to BBBikeUtil
sub run_command {
my @cmd = @_;
my $cmd = join(" ",
map { s/\#/\\\#/g; $_ } # escape comments
map { (ref $_ eq 'ARRAY' ?
@$_ :
$_
) }
@cmd
);
print STDERR "Executing $cmd " if $VERBOSE;
if (eval { require IPC::Run; defined &IPC::Run::run }) {
print STDERR " using IPC::Run...\n" if $VERBOSE;
IPC::Run::run(@cmd);
} else {
print STDERR " using system()...\n" if $VERBOSE;
my $ret = system $cmd;
!$ret;
}
}
1;