Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

image::exif(3pm) [suse man page]

Image::EXIF(3pm)                                        User Contributed Perl Documentation                                       Image::EXIF(3pm)

NAME
Image::EXIF - Perl extension for exif library SYNOPSIS
use Image::EXIF; use Data::Dumper; my $exif = Image::EXIF->new($file_name); # or: my $exif = Image::EXIF->new; $exif->file_name($file_name); my $image_info = $exif->get_image_info(); # hash reference my $camera_info = $exif->get_camera_info(); # hash reference my $other_info = $exif->get_other_info(); # hash reference my $point_shoot_info = $exif->get_point_shoot_info(); # hash reference my $unknown_info = $exif->get_unknown_info(); # hash reference my $all_info = $exif->get_all_info(); # hash reference print Dumper($all_info); DESCRIPTION
Perl package Image::EXIF based on exiftags by Eric M. Johnston: <http://johnst.org/sw/exiftags/>. AUTHORS
o Aaron Crane <arc@cpan.org> (current maintainer) o sergey s prozhogin <ccpro@rrelaxo.org.ru> REPORTING BUGS
Please report bugs at either of the following locations: o https://rt.cpan.org/Public/Dist/Display.html?Name=Image-EXIF <https://rt.cpan.org/Public/Dist/Display.html?Name=Image-EXIF> o https://github.com/arc/p5-image-exif <https://github.com/arc/p5-image-exif> SEE ALSO
exiftags. perl v5.14.2 2012-05-11 Image::EXIF(3pm)

Check Out this Related Man Page

Image::ExifTool::CanonCustom(3) 			User Contributed Perl Documentation			   Image::ExifTool::CanonCustom(3)

NAME
Image::ExifTool::CanonCustom - Read and Write Canon custom functions SYNOPSIS
This module is loaded automatically by Image::ExifTool when required. DESCRIPTION
The Canon custom functions meta information is very specific to the camera model, and is found in both the EXIF maker notes and in the Canon RAW files. This module contains the definitions necessary for Image::ExifTool to read this information. AUTHOR
Copyright 2003-2010, Phil Harvey (phil at owl.phy.queensu.ca) This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. REFERENCES
http://park2.wakwak.com/~tsuruzoh/Computer/Digicams/exif-e.html <http://park2.wakwak.com/~tsuruzoh/Computer/Digicams/exif-e.html> ACKNOWLEDGEMENTS
Thanks to Christian Koller for his work in decoding the 20D custom functions, Rainer Honle for decoding the 5D custom functions and David Pitcher for adding a few undocumented 1DmkIII settings. SEE ALSO
"Canon Tags" in Image::ExifTool::TagNames, Image::ExifTool(3pm) perl v5.12.1 2010-02-18 Image::ExifTool::CanonCustom(3)
Man Page

9 More Discussions You Might Find Interesting

1. Programming

syntax error while compiling in gcc

hello, i have a structure defined as follows struct Image { int lenght; int height; }; and i have another structure where i declare a array of the above structure struct ShapeImage { Image image; }; when i compile this code with gcc it shows me the following error : ... (3 Replies)
Discussion started by: svh
3 Replies

2. Shell Programming and Scripting

Perl hash definition problem

I am trying to generate a report based on an input file with the following layout: COMPANY1--SITE1--PROGRAM1--PRODUCT1--PRICE1 COMPANY1--SITE1--PROGRAM2--PRODUCT1--PRICE1 COMPANY1--SITE1--PROGRAM1--PRODUCT2--PRICE3 COMPANY2--SITE1--PROGRAM1--PRODUCT1--PRICE2 etc.... I am facing some... (2 Replies)
Discussion started by: jgfcoimbra
2 Replies

3. UNIX for Advanced & Expert Users

System Image of Unix

Hi, Is there any inbuild tool or software through which we can take system image of any unix system? Please suggest. Regards, Ravi D (9 Replies)
Discussion started by: dwiravi
9 Replies

4. UNIX for Dummies Questions & Answers

Image software

Hi!!! Does anyone know a unix program called "image"? If yes can you tell me if and from where I can get it? Thnx a lot!!! (1 Reply)
Discussion started by: JimmyC530
1 Replies

5. Hardware

Image a hd

Could I please get recommendations on how to image a hd. What software is best and what methods are best? After a lot of googling these programs are the most talked about that I saw. Is one better than other? Or is one better for certain file systems? I plan on doing this to a ntfs hd. ... (4 Replies)
Discussion started by: cokedude
4 Replies

6. Shell Programming and Scripting

perl Image::size function

Hi, How to use Image::size function ? because I want to list all image thatare less than size pixels in horizontal resolution. so here is my code : #!/usr/bin/perl -w use Image::Size; use constant GIVEN_WIDTH = '100'; my @filtered_images = grep { my @d = imgsize( $_ ); $d < GIVEN_WIDTH }... (8 Replies)
Discussion started by: guidely
8 Replies

7. Programming

SDL Image Filtering

Solved thanks for info!! (8 Replies)
Discussion started by: aLHaNz
8 Replies

8. Shell Programming and Scripting

Grep exif data

I would like to search for regex in the exif data of a large collection of files (mostly jpg, some nef). For instance "grep_exif Tokyo *.jpg" should return the file names of all files which have "Tokyo" in their exif data. Exiftool could be used to extract the data. I don't really need to grep... (6 Replies)
Discussion started by: bamse
6 Replies

9. UNIX for Beginners Questions & Answers

Grep output

Hi. I have a command line that will generate exif data from .jpg files... So to get the Camera Model I use: find -iname "*.jpg" -print0 | xargs -0 exiftool -a | grep "Camera Model" But I want the file name AND the camera model... How to I get the grep to give me TWO bits of information from... (2 Replies)
Discussion started by: TuftyDave
2 Replies