]> git.sur5r.net Git - pdfstitch/commitdiff
Fix x/y typo
authorJakob Haufe <sur5r@sur5r.net>
Thu, 6 Jul 2017 13:18:10 +0000 (13:18 +0000)
committerJakob Haufe <sur5r@sur5r.net>
Thu, 6 Jul 2017 13:18:57 +0000 (13:18 +0000)
Page offsets for x were applied to both directions while the values for
y were ignored.

pdfstitch

index e60a2b17466c7a1a765997f2989a575eddccf37b..2a46d0e9c71b3a903ceafd9059e3d79c98f5a06b 100755 (executable)
--- a/pdfstitch
+++ b/pdfstitch
@@ -134,7 +134,7 @@ else
             next if $pagenr eq "blank";
 
             my $llx = $meta->{x} + $meta->{pageoffsets}->{$pagenr}->{x};
-            my $lly = $meta->{y} + $meta->{pageoffsets}->{$pagenr}->{x};
+            my $lly = $meta->{y} + $meta->{pageoffsets}->{$pagenr}->{y};
             my $urx = $meta->{width};
             my $ury = $meta->{height};