~ubuntu-branches/ubuntu/lucid/perl-tk/lucid

« back to all changes in this revision

Viewing changes to JPEG/JPEG.pm

  • Committer: Bazaar Package Importer
  • Author(s): Colin Tuckley
  • Date: 2008-02-15 13:56:59 UTC
  • mfrom: (1.1.3 upstream) (4.1.1 hardy)
  • Revision ID: james.westby@ubuntu.com-20080215135659-ru2oqlykuju20fav
Tags: 1:804.028-1
* New Upstream Release (Closes: #463080).
* Update to Debhelper v5.
* Build with XFT=1 (Closes: #411129).

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
require DynaLoader;
3
3
 
4
4
use vars qw($VERSION);
5
 
$VERSION = sprintf '4.%03d', q$Revision: #2$ =~ /\D(\d+)\s*$/;
 
5
$VERSION = '4.003'; # was: sprintf '4.%03d', q$Revision: #2$ =~ /\D(\d+)\s*$/;
6
6
use Tk 800.015;
7
7
require Tk::Image;
8
8
require Tk::Photo;
33
33
 
34
34
=head1 DESCRIPTION
35
35
 
36
 
This is an extension for Tk800.015 and later which supplies
 
36
This is an extension for Tk which supplies
37
37
JPEG format loader for Photo image type.
38
38
 
39
 
This version also works with Tk804 series.
40
 
 
41
39
JPEG access is via release 5 of the The Independent JPEG Group's (IJG)
42
40
free JPEG software.
43
41
 
 
42
=head1 HISTORY
 
43
 
 
44
This extension works for Tk800.015 and later and is by default bundled
 
45
with Perl/Tk since Tk804.
 
46
 
44
47
=head1 AUTHOR
45
48
 
46
49
Nick Ing-Simmons E<lt>nick@ing-simmons.netE<gt>
47
50
 
 
51
=head1 SEE ALSO
 
52
 
 
53
L<Tk::Photo>.
 
54
 
48
55
=cut
49
56
 
50
57