summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/image/image.h
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2017-02-03 21:33:11 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2017-02-03 21:33:11 +0000
commit85a5ab00705446693e236ee78a0be10f53e86377 (patch)
treedcc942a92ffb98bbb2731f58fa069a46a18f9dcb /Build/source/texk/web2c/luatexdir/image/image.h
parentb14c66510e21d60854c376a6d8cdfb3c48f5e2b8 (diff)
luatexdir: sync with the upstream (1.0.3)
git-svn-id: svn://tug.org/texlive/trunk@43128 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/image/image.h')
-rw-r--r--Build/source/texk/web2c/luatexdir/image/image.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/luatexdir/image/image.h b/Build/source/texk/web2c/luatexdir/image/image.h
index 49996947e26..2ff07d448bd 100644
--- a/Build/source/texk/web2c/luatexdir/image/image.h
+++ b/Build/source/texk/web2c/luatexdir/image/image.h
@@ -105,6 +105,7 @@ typedef struct {
int x_res; /* pixel resolution as in JPG/PNG/JBIG2 file */
int y_res;
int rotation; /* rotation (multiples of 90 deg.) for PDF files */
+ int orientation; /* jpeg orientation, 0=unset, 1=ul, 2=ur, 3=lr, 4=ll, 5-8 flipped */
int colorspace; /* number of /ColorSpace object */
int group_ref; /* if it's <=0, the page has no group */
int total_pages;
@@ -149,6 +150,7 @@ typedef struct {
# define img_xres(N) ((N)->x_res)
# define img_yres(N) ((N)->y_res)
# define img_rotation(N) ((N)->rotation)
+# define img_orientation(N) ((N)->orientation)
# define img_colorspace(N) ((N)->colorspace)
# define img_group_ref(N) ((N)->group_ref)
# define img_totalpages(N) ((N)->total_pages)