File: ImagePNG.pm

package info (click to toggle)
libpdf-api2-xs-perl 1.002-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 160 kB
  • sloc: perl: 35; makefile: 3
file content (16 lines) | stat: -rw-r--r-- 216 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package PDF::API2::XS::ImagePNG;

use strict;
use warnings;

our $VERSION = '1.002'; # VERSION

require XSLoader;
require Exporter;

@ISA = qw(Exporter);
@EXPORT = qw(split_channels unfilter);

XSLoader::load();

1;