summaryrefslogtreecommitdiff
path: root/src/page.c
diff options
context:
space:
mode:
authorAlessio Treglia <alessio@debian.org>2010-10-26 17:12:56 +0200
committerAlessio Treglia <alessio@debian.org>2010-10-26 17:12:56 +0200
commitfafc0daa6bd26ad254943315f253b1b218e71080 (patch)
tree2d09b07a68c0236fe5b0b7a4ebdb630c96610b4d /src/page.c
parent516b7d5c6b94b4496609a4a758c21d0cdc2bbfa2 (diff)
Imported Upstream version 2.32.0.1upstream/2.32.0.1
Diffstat (limited to 'src/page.c')
-rw-r--r--src/page.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/page.c b/src/page.c
index e70f103..ec21088 100644
--- a/src/page.c
+++ b/src/page.c
@@ -651,18 +651,18 @@ get_pixel (Page *page, gint x, gint y, guchar *pixel)
case TOP_TO_BOTTOM:
break;
case BOTTOM_TO_TOP:
- x = page_get_scan_width (page) - x;
- y = page_get_scan_height (page) - y;
+ x = page_get_scan_width (page) - x - 1;
+ y = page_get_scan_height (page) - y - 1;
break;
case LEFT_TO_RIGHT:
t = x;
- x = page_get_scan_width (page) - y;
+ x = page_get_scan_width (page) - y - 1;
y = t;
break;
case RIGHT_TO_LEFT:
t = x;
x = y;
- y = page_get_scan_height (page) - t;
+ y = page_get_scan_height (page) - t - 1;
break;
}
@@ -721,7 +721,7 @@ page_get_image (Page *page, gboolean apply_crop)
l = page->priv->crop_x;
r = l + page->priv->crop_width;
t = page->priv->crop_y;
- b = l + page->priv->crop_height;
+ b = t + page->priv->crop_height;
if (l < 0)
l = 0;