|
NAMEImage::MetaData::GQview - Perl extension for GQview image metadataSYNOPSISuse Image::MetaData::GQview; my $md = Image::MetaData::GQview->new("test.jpg"); my $md2 = Image::MetaData::GQview->new("test2.jpg", {fields => ['keywords', 'comment', 'picture info']}); my $md3 = Image::MetaData::GQview->new({file => "test2.jpg", fields => ['keywords', 'comment', 'picture info']}); $md->load("test.jpg"); my $comment = $md->comment; my @keywords = $md->keywords; my $raw = $md->raw; $md->comment("This is a comment"); $md->keywords(@keywords); $md->save("test.jpg"); DESCRIPTIONThis module is a abstraction to the image meta data of GQview.All internal errors will trow an error! METHODS
BUGSPlease report any bugs or feature requests to "bug-image-metadata-gqview at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Image-MetaData-GQview>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.INCOMPATIBILITIESThe module cannot be used under non unixoid systems like windows. But there is no need for this module anyway as the tool gqview is only available on unixoid systems.SUPPORTYou can find documentation for this module with the perldoc command.perldoc Image::MetaData::GQview You can also look for information at:
SEE ALSOman qview AUTHORKlaus Ethgen <Klaus@Ethgen.de>COPYRIGHTCopyright (c) 2006-2009 by Klaus Ethgen. All rights reserved.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Visit the GSP FreeBSD Man Page Interface. |