Sign In
New User? Sign Up
exiv2
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
You can set the sort order of messages? Just click on the link in the date column. Your preferences will be remembered, so you don't have to do it again when you return.

Messages

  Messages Help
Advanced
Messages 337 - 366 of 1513   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
337
Hello. I wonder if it is possible to change the file comments, which are outside of the EXIF information. It is not Exif.Image.ImageDescription, nor...
exiv2user
Offline Send Email
Jul 3, 2006
8:25 pm
338
Hello again. Sorry for the previous question, I have found the answer myself: It can be done with the '-c' option, followed by the text in double- quotes, and...
exiv2user
Offline Send Email
Jul 3, 2006
8:43 pm
339
Hi, what is the commandline to get all IPTC keywords? I'd like a script retrieving all my tags of all my photos. exiv2 -pi *.jpg is the best I got for now. But...
jhwashere
Offline Send Email
Jul 4, 2006
11:23 am
340
All of this needs to be done via the shell right now. On Linux, something like this will list all unique IPTC keywords from all JPEGs in the images/ directory...
Andreas Huggel
zzzahu
Offline Send Email
Jul 4, 2006
3:45 pm
341
Thanks Andreas, I'm not really familiar with regular expressions. For now I tried: find . -name '*.jpg' | xargs ./exiv2 -pi 2>/dev/null | grep Keywords | sed...
jhwashere
Offline Send Email
Jul 5, 2006
11:34 pm
342
Hi all, I would like to do something like this: /*...get exif data from an image */ Exiv2::ExifData &exifData = image->exifData(); ...
exiv2user
Offline Send Email
Jul 6, 2006
1:59 pm
343
Hi all, I would like to do something like this: /*...get exif data from an image */ Exiv2::ExifData &exifData = image->exifData(); ...
exiv2user
Offline Send Email
Jul 6, 2006
1:59 pm
344
Hi all, I would like to do something like this: /*...get exif data from an image */ Exiv2::ExifData &exifData = image->exifData(); ...
exiv2user
Offline Send Email
Jul 6, 2006
2:16 pm
345
On Thursday 06 July 2006 07:20, jhwashere wrote: [snip] ... Try adding a * after [0-9] so that numbers with more than one digit match too ... That should be...
Andreas Huggel
zzzahu
Offline Send Email
Jul 6, 2006
3:20 pm
346
... Yes this array is not accessible. What exactly are you trying to do? -ahu....
Andreas Huggel
zzzahu
Offline Send Email
Jul 6, 2006
5:22 pm
347
I know that it is possible to test the presence of a particular tag in an image by using findkey method in Exiv. But I would like to this for all tags in...
exiv2user
Offline Send Email
Jul 7, 2006
7:39 am
348
I know that it is possible to test the presence of a particular tag in an image by using findkey method in Exiv. But I would like to this for all tags in...
exiv2user
Offline Send Email
Jul 7, 2006
7:40 am
349
I know that it is possible to test the presence of a particular tag in an image by using findkey method in Exiv. But I would like to this for all tags in...
exiv2user
Offline Send Email
Jul 7, 2006
7:53 am
350
... Datum: Fri, 07 Jul 2006 07:39:42 -0000 Von: exiv2user <exiv2user@...> An: exiv2@... Betreff: [exiv2] Re: possibility to test the...
Andreas Huggel
zzzahu
Offline Send Email
Jul 7, 2006
10:51 am
351
... tags in ifdTagInfo[] ... tag in ... other ... test ... needed? ... through a taglist function. But still, why do you need to check if all tags are present...
exiv2user
Offline Send Email
Jul 7, 2006
12:13 pm
352
... tags in ifdTagInfo[] ... tag in ... other ... test ... needed? ... through a taglist function. But still, why do you need to check if all tags are present...
exiv2user
Offline Send Email
Jul 7, 2006
12:13 pm
353
... tags in ifdTagInfo[] ... tag in ... other ... test ... needed? ... through a taglist function. But still, why do you need to check if all tags are present...
exiv2user
Offline Send Email
Jul 7, 2006
12:26 pm
354
Okay, I tracked this to a time parsing error. It's taking me a while to wrap my head around the parsing itself, but the basic problem seems to be here: void...
maciek9billion
Offline Send Email
Jul 10, 2006
4:56 am
355
... Intended behaviour: if image contains the Exif tag if the Exif time string can be converted to a UNIX timestamp set the corresponding CRW tag to the...
Andreas Huggel
zzzahu
Offline Send Email
Jul 10, 2006
5:42 pm
356
Hello. Ii am seeking how to print out only one tag from the print command. I didn't find any information on that. I would like to be able to specify what tag I...
exiv2user
Offline Send Email
Jul 10, 2006
7:40 pm
357
Thanks, Andreas. I actually made another post to the group, but either it's really slow to show up (8+ hours now, I think), or it simply disappeared. Anyway,...
maciek9billion
Offline Send Email
Jul 10, 2006
7:49 pm
358
hi there, I am one of the maintainers of panotools (panotools.sourceforge.net), a library and applications to create photo panoramas. We are currently...
dmgalpha
Online Now Send Email
Jul 10, 2006
9:03 pm
359
... I don't think you can do this directly, Daniel. If you're on a *nix system (including the Mac or running MSYS on Windows), you can pipe the output to grep...
maciek9billion
Offline Send Email
Jul 10, 2006
9:08 pm
360
Err, just to be clear, in case you've never seen grep before or something... ... This would be the output...
maciek9billion
Offline Send Email
Jul 10, 2006
9:11 pm
361
... According to this post ( http://uk.groups.yahoo.com/group/exiv2/message/330 ), this shouldn't be a problem. Unfortunately, my C experience is rather...
maciek9billion
Offline Send Email
Jul 10, 2006
9:15 pm
362
... Good, that sounds like you are there. Have you tried to set the define only in localtime.c (or one of the headers it includes, whichever is appropriate) so...
Andreas Huggel
zzzahu
Offline Send Email
Jul 11, 2006
2:25 am
363
... That did it, thanks. The diff is just this: $ diff localtime.c.old localtime.c 7a8,10 ... I'll move on to exiv2-test.sh. That also seems to be...
maciek9billion
Offline Send Email
Jul 11, 2006
4:30 am
364
... Err, make that timegm(). Sorry about that. -Maciek...
maciek9billion
Offline Send Email
Jul 11, 2006
4:53 pm
365
Making a similar change in actions.cpp fixes exiv2-test.sh. There might be a better place to put the define, but I can't really think of one (unless, I guess,...
maciek9billion
Offline Send Email
Jul 11, 2006
6:29 pm
366
Everything passes now *except* path-test.sh (there is no path-test executable in the src folder, or anywhere else, as far as I can tell). bugfixes-test.sh also...
maciek9billion
Offline Send Email
Jul 11, 2006
10:02 pm
Messages 337 - 366 of 1513   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! UK. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help