From 05fb5662ce9d1b76ddade7ce7b666852e952123c Mon Sep 17 00:00:00 2001 From: Andrey Kiselev Date: Fri, 11 Mar 2005 10:11:53 +0000 Subject: [PATCH] Improvements in page layout. --- html/man/TIFFReadRGBAImage.3tiff.html | 67 ++------------ html/man/TIFFReadRGBAStrip.3tiff.html | 67 ++------------ html/man/index.html | 125 +++++++++++++------------- 3 files changed, 76 insertions(+), 183 deletions(-) diff --git a/html/man/TIFFReadRGBAImage.3tiff.html b/html/man/TIFFReadRGBAImage.3tiff.html index ddefaa8b..7166ce6f 100644 --- a/html/man/TIFFReadRGBAImage.3tiff.html +++ b/html/man/TIFFReadRGBAImage.3tiff.html @@ -1,5 +1,5 @@ - + @@ -39,66 +39,13 @@ and decode an image into a fixed-format raster

#include <tiffio.h>

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -

#define TIFFGetR(abgr)

-
- -

((abgr) & 0xff)

-
- -

#define TIFFGetG(abgr)

-
- -

(((abgr) >> 8) & 0xff)

-
- -

#define TIFFGetB(abgr)

-
- -

(((abgr) >> 16) & 0xff)

-
- -

#define TIFFGetA(abgr)

-
- -

(((abgr) >> 24) & 0xff)

-
- - - - -
+

#define TIFFGetR(abgr) ((abgr) & 0xff)
+#define TIFFGetG(abgr) (((abgr) >> 8) & 0xff)
+#define TIFFGetB(abgr) (((abgr) >> 16) & 0xff)
+#define TIFFGetA(abgr) (((abgr) >> 24) & +0xff)

+

int TIFFReadRGBAImage(TIFF *tif, u_long width, u_long height, u_long *raster, int diff --git a/html/man/TIFFReadRGBAStrip.3tiff.html b/html/man/TIFFReadRGBAStrip.3tiff.html index 3beb4b11..68f5c63d 100644 --- a/html/man/TIFFReadRGBAStrip.3tiff.html +++ b/html/man/TIFFReadRGBAStrip.3tiff.html @@ -1,5 +1,5 @@ - + @@ -39,66 +39,13 @@ into a fixed-format raster

#include <tiffio.h>

-
- - - - - - - - - - - - - - - - - - - - - - - - - - -
- -

#define TIFFGetR(abgr)

-
- -

((abgr) & 0xff)

-
- -

#define TIFFGetG(abgr)

-
- -

(((abgr) >> 8) & 0xff)

-
- -

#define TIFFGetB(abgr)

-
- -

(((abgr) >> 16) & 0xff)

-
- -

#define TIFFGetA(abgr)

-
- -

(((abgr) >> 24) & 0xff)

-
- - - -
+

#define TIFFGetR(abgr) ((abgr) & 0xff)
+#define TIFFGetG(abgr) (((abgr) >> 8) & 0xff)
+#define TIFFGetB(abgr) (((abgr) >> 16) & 0xff)
+#define TIFFGetA(abgr) (((abgr) >> 24) & +0xff)

+

int TIFFReadRGBAStrip(TIFF *tif, uint32 row, uint32 *raster)

diff --git a/html/man/index.html b/html/man/index.html index 06106662..9fdba2e1 100644 --- a/html/man/index.html +++ b/html/man/index.html @@ -1,65 +1,64 @@ Libtiff HTML manpage index