Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
[ikiwiki.git] / IkiWiki / Plugin / img.pm
blob103f6b2b3510067f10a5eddf86f8e657ba96fe29
1 #!/usr/bin/perl
2 # Ikiwiki enhanced image handling plugin
3 # Christian Mock cm@tahina.priv.at 20061002
4 package IkiWiki::Plugin::img;
6 use warnings;
7 use strict;
8 use IkiWiki 3.00;
10 my %imgdefaults;
12 sub import {
13 hook(type => "getsetup", id => "img", call => \&getsetup);
14 hook(type => "preprocess", id => "img", call => \&preprocess, scan => 1);
17 sub getsetup () {
18 return
19 plugin => {
20 safe => 1,
21 rebuild => undef,
22 section => "widget",
26 sub preprocess (@) {
27 my ($image) = $_[0] =~ /$config{wiki_file_regexp}/; # untaint
28 my %params=@_;
30 if (! defined $image) {
31 error("bad image filename");
34 if (exists $imgdefaults{$params{page}}) {
35 foreach my $key (keys %{$imgdefaults{$params{page}}}) {
36 if (! exists $params{$key}) {
37 $params{$key}=$imgdefaults{$params{page}}->{$key};
42 if (! exists $params{size} || ! length $params{size}) {
43 $params{size}='full';
46 if ($image eq 'defaults') {
47 $imgdefaults{$params{page}} = \%params;
48 return '';
51 add_link($params{page}, $image);
52 add_depends($params{page}, $image);
54 # optimisation: detect scan mode, and avoid generating the image
55 if (! defined wantarray) {
56 return;
59 my $file = bestlink($params{page}, $image);
60 my $srcfile = srcfile($file, 1);
61 if (! length $file || ! defined $srcfile) {
62 return htmllink($params{page}, $params{destpage}, $image);
65 my $dir = $params{page};
66 my $base = IkiWiki::basename($file);
68 eval q{use Image::Magick};
69 error gettext("Image::Magick is not installed") if $@;
70 my $im = Image::Magick->new;
71 my $imglink;
72 my $r = $im->Read($srcfile);
73 error sprintf(gettext("failed to read %s: %s"), $file, $r) if $r;
75 my ($dwidth, $dheight);
77 if ($params{size} ne 'full') {
78 my ($w, $h) = ($params{size} =~ /^(\d*)x(\d*)$/);
79 error sprintf(gettext('wrong size format "%s" (should be WxH)'), $params{size})
80 unless (defined $w && defined $h &&
81 (length $w || length $h));
83 if ((length $w && $w > $im->Get("width")) ||
84 (length $h && $h > $im->Get("height"))) {
85 # resizing larger
86 $imglink = $file;
88 # don't generate larger image, just set display size
89 if (length $w && length $h) {
90 ($dwidth, $dheight)=($w, $h);
92 # avoid division by zero on 0x0 image
93 elsif ($im->Get("width") == 0 || $im->Get("height") == 0) {
94 ($dwidth, $dheight)=(0, 0);
96 # calculate unspecified size from the other one, preserving
97 # aspect ratio
98 elsif (length $w) {
99 $dwidth=$w;
100 $dheight=$w / $im->Get("width") * $im->Get("height");
102 elsif (length $h) {
103 $dheight=$h;
104 $dwidth=$h / $im->Get("height") * $im->Get("width");
107 else {
108 # resizing smaller
109 my $outfile = "$config{destdir}/$dir/${w}x${h}-$base";
110 $imglink = "$dir/${w}x${h}-$base";
112 will_render($params{page}, $imglink);
114 if (-e $outfile && (-M $srcfile >= -M $outfile)) {
115 $im = Image::Magick->new;
116 $r = $im->Read($outfile);
117 error sprintf(gettext("failed to read %s: %s"), $outfile, $r) if $r;
119 else {
120 ($dwidth, $dheight)=($w, $h);
121 $r = $im->Resize(geometry => "${w}x${h}");
122 error sprintf(gettext("failed to resize: %s"), $r) if $r;
124 # don't actually write resized file in preview mode;
125 # rely on width and height settings
126 if (! $params{preview}) {
127 my @blob = $im->ImageToBlob();
128 writefile($imglink, $config{destdir}, $blob[0], 1);
130 else {
131 $imglink = $file;
135 $dwidth = $im->Get("width") unless defined $dwidth;
136 $dheight = $im->Get("height") unless defined $dheight;
139 else {
140 $imglink = $file;
141 $dwidth = $im->Get("width");
142 $dheight = $im->Get("height");
145 if (! defined($dwidth) || ! defined($dheight)) {
146 error sprintf(gettext("failed to determine size of image %s"), $file)
149 my ($fileurl, $imgurl);
150 if (! $params{preview}) {
151 $fileurl=urlto($file, $params{destpage});
152 $imgurl=urlto($imglink, $params{destpage});
154 else {
155 $fileurl=urlto($file);
156 $imgurl=urlto($imglink);
159 if (! exists $params{class}) {
160 $params{class}="img";
163 my $attrs='';
164 foreach my $attr (qw{alt title class id hspace vspace}) {
165 if (exists $params{$attr}) {
166 $attrs.=" $attr=\"$params{$attr}\"";
170 my $imgtag='<img src="'.$imgurl.
171 '" width="'.$dwidth.
172 '" height="'.$dheight.'"'.
173 $attrs.
174 (exists $params{align} && ! exists $params{caption} ? ' align="'.$params{align}.'"' : '').
175 ' />';
177 my $link;
178 if (! defined $params{link}) {
179 $link=$fileurl;
181 elsif ($params{link} =~ /^\w+:\/\//) {
182 $link=$params{link};
185 if (defined $link) {
186 $imgtag='<a href="'.$link.'">'.$imgtag.'</a>';
188 else {
189 my $b = bestlink($params{page}, $params{link});
191 if (length $b) {
192 add_depends($params{page}, $b, deptype("presence"));
193 $imgtag=htmllink($params{page}, $params{destpage},
194 $params{link}, linktext => $imgtag,
195 noimageinline => 1,
200 if (exists $params{caption}) {
201 return '<table class="img'.
202 (exists $params{align} ? " align-$params{align}" : "").
203 '">'.
204 '<caption>'.$params{caption}.'</caption>'.
205 '<tr><td>'.$imgtag.'</td></tr>'.
206 '</table>';
208 else {
209 return $imgtag;