-
Notifications
You must be signed in to change notification settings - Fork 33
/
image2png.pl
140 lines (111 loc) · 3.88 KB
/
image2png.pl
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
#!/usr/bin/perl
# Author: Trizen
# Date: 19 December 2021
# Edit: 31 July 2022
# https://github.com/trizen
# Convert any images to PNG, using the Gtk3::Gdk::Pixbuf library.
# It can convert SVG, WEBP, JPEG, and more...
use 5.020;
use strict;
use warnings;
use experimental qw(signatures);
use Gtk3 qw(-init);
use File::Spec::Functions qw(catfile);
use File::Basename qw(dirname basename);
use Getopt::Long qw(GetOptions);
my %CONFIG = (
output_dir => undef,
width => undef,
height => undef,
scale_factor => undef,
flipx => undef,
flipy => undef,
remove => 0,
);
sub help ($exit_code = 0) {
print <<"EOT";
Usage: $0 [OPTIONS] [<images>]
-w, --width=WIDTH Width of output image in pixels
-h, --height=HEIGHT Height of output image in pixels
-s, --scale=FACTOR Scale image by FACTOR
-d, --dir=DIRECTORY Output directory
--flipx Flip X coordinates of image
--flipy Flip Y coordinates of image
--remove! Remove original files
--help Give this help list
EOT
exit($exit_code);
}
GetOptions(
"d|directory=s" => \$CONFIG{output_dir},
"w|width=i" => \$CONFIG{width},
"h|height=i" => \$CONFIG{height},
"s|scale=f" => \$CONFIG{scale_factor},
"flipx" => \$CONFIG{flipx},
"flipy" => \$CONFIG{flipy},
"remove!" => \$CONFIG{remove},
'help' => sub { help(0) },
)
or help(1);
@ARGV || help(2);
sub image2png ($input_file, $output_file = undef) {
my $pixbuf;
if (defined($CONFIG{width}) or defined($CONFIG{height})) {
my $width = $CONFIG{width} // do {
my (undef, $x, $y) = Gtk3::Gdk::Pixbuf::get_file_info($input_file);
int($x / ($y / $CONFIG{height}));
};
my $height = $CONFIG{height} // $CONFIG{width};
my $keep_aspect_ratio = ($CONFIG{width} && $CONFIG{height}) ? 0 : 1;
$pixbuf = "Gtk3::Gdk::Pixbuf"->new_from_file_at_scale($input_file, $width, $height, $keep_aspect_ratio);
}
elsif (defined($CONFIG{scale_factor})) {
my (undef, $width, $height) = Gtk3::Gdk::Pixbuf::get_file_info($input_file);
my $scale = $CONFIG{scale_factor};
$pixbuf = "Gtk3::Gdk::Pixbuf"->new_from_file_at_scale($input_file, $width * $scale, $height * $scale, 0);
}
else {
$pixbuf = "Gtk3::Gdk::Pixbuf"->new_from_file($input_file);
}
if ($CONFIG{flipx}) {
$pixbuf = $pixbuf->flip(1);
}
if ($CONFIG{flipy}) {
$pixbuf = $pixbuf->flip(0);
}
if (defined($pixbuf)) {
if (!defined($output_file)) {
my $output_dir = $CONFIG{output_dir} // dirname($input_file);
my $basename = basename($input_file);
if (not $basename =~ s/\.(svg|jpe?g|webp|gif|avif|jfif|pjpeg|pjp|bmp|ico|tiff?|xpm)\z/.png/i) {
$basename .= '.png';
}
if (not -d $output_dir) {
require File::Path;
File::Path::make_path($output_dir)
|| warn "Cannot create output directory <<$output_dir>>: $!\n";
}
$output_file = catfile($output_dir, $basename);
}
$pixbuf->save($output_file, 'png');
return 1;
}
return undef;
}
foreach my $file (@ARGV) {
say ":: Processing: $file";
if (-e $file) {
if (image2png($file)) {
if ($CONFIG{remove}) {
say ":: Removing original file...";
unlink($file) or warn "Cannot remove file <<$file>>: $!\n";
}
}
else {
warn "Cannot convert file <<$file>>! Skipping...\n";
}
}
else {
warn "File <<$file>> does not exist! Skipping...\n";
}
}