File Coverage

blib/lib/PDF/API2/XS/ImagePNG.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package PDF::API2::XS::ImagePNG;
2              
3 1     1   7355 use strict;
  1         3  
  1         30  
4 1     1   6 use warnings;
  1         2  
  1         158  
5              
6             our $VERSION = '1.001'; # VERSION
7              
8             require XSLoader;
9             require Exporter;
10              
11             @ISA = qw(Exporter);
12             @EXPORT = qw(split_channels unfilter);
13              
14             XSLoader::load();
15              
16             1;