Gtk3 imager viewer widget modelled after the GtkImageView C widget by Björn Lindqvist bjourne@gmail.com
To discuss Gtk3::ImageView or gtk3-perl, ask questions and flame/praise the authors, join gtk-perl-list@gnome.org at lists.gnome.org.
This module is available from CPAN.
To install it from source instead install Dist::Zilla, then type the following:
dzil install
To avoid installing to a system directory, you can change the installation prefix at Makefile.PL time with
dzil install --install-command='cpanm -l /tmp/foo .'
Or you can use dzil build
to get the directory of the release in current dir, cd there, and build/install it with via generated Makefile.PL manually.
dzil help
, dzil.org and Dist::Zilla::Tutorial have more details.
This will install the module to the subdirectory lib/perl5 under the given prefix. If this is not already in perl's include path, you'll need to tell perl how to get to this library directory so you can use it; there are three ways:
- in your environment (the easiest):
PERL5LIB=/some/other/place/lib/perl5/site_perl
export PERL5LIB
- on the perl command line:
perl -I /some/other/place/lib/perl5/site_perl yourscript
- in the code of your perl script:
use lib '/some/other/place/lib/perl5/site_perl';
This module requires these other modules and libraries:
- perl >= 5.8.0
- Glib >= 1.163 (Perl module)
- GTK+ 3.x (C library)
- Gtk3 (Perl module)
- Readonly (Perl module)
Please submit bug reports here
Copyright (C) 2018--2020 by Jeffrey Ratcliffe Copyright (C) 2020 Google LLC, contributed by Alexey Sokolov
Modelled after the GtkImageView C widget by Björn Lindqvist bjourne@gmail.com
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.5 or, at your option, any later version of Perl 5 you may have available.