.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "PDF::Builder::Resource::XObject::Image::TIFF 3" .TH PDF::Builder::Resource::XObject::Image::TIFF 3 2023-12-21 "perl v5.38.1" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME PDF::Builder::Resource::XObject::Image::TIFF \- TIFF image support .SH METHODS .IX Header "METHODS" .SS new .IX Subsection "new" .Vb 1 \& $res = PDF::Builder::Resource::XObject::Image::TIFF\->new($pdf, $file, %opts) .Ve .Sp .RS 4 Returns a TIFF-image object. .Sp If the Graphics::TIFF package is installed, the TIFF_GT library will be used instead of the TIFF library. In such a case, use of the TIFF library may be forced via the \f(CW\*(C`nouseGT\*(C'\fR flag (see Builder documentation for \f(CWimage_tiff()\fR). .Sp Options: .IP "'name' => 'string'" 4 .IX Item "'name' => 'string'" This is the name you can give for the TIFF image object. The default is Ixnnnn. .RE .RS 4 .Sp Remember that you need to use the Builder.pm method image_tiff in order to display a TIFF file. .RE .SS usesLib .IX Subsection "usesLib" .Vb 1 \& $mode = $tif\->usesLib() .Ve .Sp .RS 4 Returns 1 if Graphics::TIFF installed and used, 0 if not installed, or \-1 if installed but not used (nouseGT option given to \f(CW\*(C`image_tiff\*(C'\fR). .Sp \&\fBCaution:\fR this method can only be used \fIafter\fR the image object has been created. It can't tell you whether Graphics::TIFF is available in advance of actually using it, in case you want to use some functionality available only in TIFF_GT. See the \fBLA_GT()\fR call if you need to know in advance. .RE .SS tiffTag .IX Subsection "tiffTag" .Vb 1 \& $value = $tif\->tiffTag($tag) .Ve .Sp .RS 4 returns the value of the internal tiff-tag. .Sp \&\fBUseful Tags:\fR .Sp .Vb 3 \& imageDescription, imageId (strings) \& xRes, yRes (dpi; pixel/cm if resUnit==3) \& resUnit .Ve .RE