• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Image/MetaData/H28-Mar-2009-432191

t/H28-Mar-2009-13079

ChangesH A D28-Mar-2009971 4525

MANIFESTH A D28-Mar-2009254 1312

META.ymlH A D28-Mar-2009576 1817

Makefile.PLH A D28-Mar-2009636 2321

READMEH A D28-Mar-20092.5 KiB9263

README

1Image::MetaData::GQview
2=======================
3
4SYNOPSIS
5
6         use Image::MetaData::GQview;
7         my $md = Image::MetaData::GQview->new("test.jpg");
8         $md->load("test.jpg");
9         my $comment = $md->comment;
10         my @keywords = $md->keywords;
11         my $raw = $md->raw;
12         $md->comment("This is a comment");
13         $md->keywords(@keywords);
14         $md->save("test.jpg");
15
16DESCRIPTION
17
18This module is a abstraction to the image meta data of GQview.
19
20METHODS
21
22   new
23      This is a class method and the only one. It is used to get a object
24      of Image::MetaData::GQview. It can be called without parameter or
25      with the image as only option in witch case it try to load the meta
26      data.
27
28   load
29      If you didn't load the data with new you can do that with this
30      method. If the parameter is left out the one setted before is used.
31
32   comment
33      Get or set the comment.
34
35   keywords
36      Get or set the keywords.
37
38   raw
39      Get the raw data
40
41   save
42      Save the data to disk. This will read the location from the gqview
43      configuration. If there is none, the info will be saved in local
44      directory.
45
46INSTALLATION
47
48To install this module, run the following commands:
49
50   perl Makefile.PL
51   make
52   make test
53   make install
54
55
56SUPPORT AND DOCUMENTATION
57
58After installing, you can find documentation for this module with the perldoc command.
59
60    perldoc Image::MetaData::GQview
61
62You can also look for information at:
63
64    Search CPAN
65        http://search.cpan.org/dist/Image-MetaData-GQview
66
67    CPAN Request Tracker:
68        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Image-MetaData-GQview
69
70    AnnoCPAN, annotated CPAN documentation:
71        http://annocpan.org/dist/Image-MetaData-GQview
72
73    CPAN Ratings:
74        http://cpanratings.perl.org/d/Image-MetaData-GQview
75
76COPYRIGHT AND LICENCE
77
78Copyright (c) 2006 by Klaus Ethgen. All rights reserved.
79
80This program is free software; you can redistribute it and/or modify it under
81the terms of the GNU General Public License as published by the Free Software
82Foundation; either version 2 of the License, or (at your option) any later
83version.
84
85This program is distributed in the hope that it will be useful, but WITHOUT ANY
86WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
87PARTICULAR PURPOSE.  See the GNU General Public License for more details.
88
89You should have received a copy of the GNU General Public License along with
90this program; if not, write to the Free Software Foundation, Inc., 675 Mass
91Ave, Cambridge, MA 02139, USA.
92