| CAM-PDF documentation | view source | Contained in the CAM-PDF distribution. |
CAM::PDF::Renderer::Images - Find all of the images in a page
See CAM::PDF.
use CAM::PDF;
my $pdf = CAM::PDF->new($filename);
my $contentTree = $pdf->getPageContentTree(4);
my $gs = $contentTree->findImages();
my @imageNodes = @{$gs->{images}};
This class is used to identify all image nodes in a page content tree.
Creates a new renderer.
Duplicates an instance. The new instance deliberately shares its
images property with the original instance.
Record an indirect image node.
Record an inline image node.
See CAM::PDF
| CAM-PDF documentation | view source | Contained in the CAM-PDF distribution. |