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

Yahoo! Groups Tips

Did you know...
You can search the group for older messages.

Messages

  Messages Help
Advanced
Messages 177 - 206 of 1513   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
177
OK, thanks a lot for your help Will, I'll try this way because my 'CodeWarrior static library of exiv2' still don't work... Guillaume ... ...
exiv2user
Offline Send Email
Dec 1, 2005
3:26 pm
178
... Ok, thanks. So I think this is due to exivsimple's lax file-access checking (we probably should have made it more robust before using it directly). If...
maciek9billion
Offline Send Email
Dec 3, 2005
1:08 am
179
... Update, for anyone who might be interested: This seems to be a straight invalid memory reference coming from JpegBase::readMetadata(). We're trying to...
maciek9billion
Offline Send Email
Dec 3, 2005
10:31 am
180
... I am... looks like you're almost there -ahu....
Andreas Huggel
zzzahu
Offline Send Email
Dec 3, 2005
1:43 pm
181
... Does this always happen with a specific image or sequence of images? -Brad...
Brad Schick
schickb
Offline Send Email
Dec 3, 2005
7:00 pm
182
... I don't think so. At least three of my team members have been able to consistently reproduce this on totally different picture sets. I haven't tracked my...
maciek9billion
Offline Send Email
Dec 4, 2005
12:20 am
183
... I've checked, and it happens on various images. I've tracked it down to this: int scanned = sscanf(buf, format, &t.hour, &t.minute, &t.second, &plusMinus,...
maciek9billion
Offline Send Email
Dec 4, 2005
9:49 am
184
Another update: a member of my team tried ripping out all of the relevant exiv-calling code and put it in a absolutely-definitely-single-threaded driver class....
maciek9billion
Offline Send Email
Dec 6, 2005
4:26 am
185
... Is this code something you could send me to along with the images? I would not keep the code or the images around after looking into this problem. Also did...
Brad Schick
schickb
Offline Send Email
Dec 6, 2005
7:18 am
186
... Can you strip this further to a plain C++ reproducer? Does it still happen? -ahu....
Andreas Huggel
zzzahu
Offline Send Email
Dec 6, 2005
2:56 pm
187
... happen? ... I should be able to, but not before this weekend at the earliest. Actually, the stripped .NET exposes some interesting determinism underlying...
maciek9billion
Offline Send Email
Dec 6, 2005
11:47 pm
188
... Can you share these two pictures? I'd like to have a closer look at them. You could upload them to the Files or Photos section here or send them to me...
Andreas Huggel
zzzahu
Offline Send Email
Dec 7, 2005
1:43 am
189
... +++ jpgimage.cpp (working copy) @@ -191,7 +191,7 @@ if (size < 16) throw Error(15); // Read the rest of the APP13 segment // needed if...
Andreas Huggel
zzzahu
Offline Send Email
Dec 7, 2005
4:27 pm
190
... BasicIo::cur); ... don't fully ... Nope. Hits the same error, unfortunately. I'll start on the C++ app to reproduce this tomorrow night--hopefully that...
maciek9billion
Offline Send Email
Dec 7, 2005
9:21 pm
191
... Ok, next try... Valgrind reports a problem at the same location that you found, within that sscanf call. This patch assumes sscanf reads beyond the end of...
Andreas Huggel
zzzahu
Offline Send Email
Dec 8, 2005
3:40 pm
192
Well I'll be a monkey's uncle. I think that's it. The test scanner does not crash anymore (and it used to crash consistenly on those two pics), and our app has...
maciek9billion
Offline Send Email
Dec 9, 2005
2:35 am
193
I was looking at a similar issue, but in the other Timevalue read method. I think we’ll want to make the change below since the docs I have say ...
Brad Schick
schickb
Offline Send Email
Dec 10, 2005
8:30 am
194
... Ok scratch that, I remembered after sending that these methods are used to read data out of the middle of buffers that won't have nulls in them. Maybe the...
Brad Schick
schickb
Offline Send Email
Dec 10, 2005
8:40 am
195
... Yes, the problem exists in a few places. See bug 447 / Rev. 656 (includes the c_str() change but not the asserts) ...
Andreas Huggel
zzzahu
Offline Send Email
Dec 10, 2005
10:49 am
196
... I added the v= parameter. This is a comma separated list that can also take ranges. For example: ...
Brad Schick
schickb
Offline Send Email
Dec 11, 2005
8:44 am
197
... Excellent, thanks! -ahu....
Andreas Huggel
zzzahu
Offline Send Email
Dec 11, 2005
9:15 am
198
I everyone! How can I use Exif2 library with Visual Basic 6? Is possible to compile a version compatible with VB 6?...
imalag
Offline Send Email
Dec 14, 2005
2:55 pm
199
... From earlier feedback I understand exiv2 doesn't compile with VB6. Unfortunately I don't have this version. Andreas...
Andreas Huggel
zzzahu
Offline Send Email
Dec 15, 2005
4:47 am
200
... Hash: SHA1 As a kimdaba-user (kde image database) I would love to see support for konica-minolta raw files (.mrw) in exiv2, as otherwise my rawfiles won't...
Markus Spring
mksspring
Offline Send Email
Jan 4, 2006
6:30 pm
201
Hi Markus, The good news is that I have more time again now to invest in exiv2 and I'm working on support for new file formats. However, the priority is to...
Andreas Huggel
zzzahu
Offline Send Email
Jan 5, 2006
2:58 pm
202
... Hash: SHA1 ... OK, this is at least no bad news :) Please let me know if I can be of any help. Regards - Markus ... Version: GnuPG v1.4.1 (GNU/Linux) ...
Markus Spring
mksspring
Offline Send Email
Jan 5, 2006
8:05 pm
203
How can I output just the timestamp without any other information? I am trying to incorporate exiv2 in a program I've written so I can get just the timestamp...
exiv2user
Offline Send Email
Jan 11, 2006
3:18 pm
204
Hi, The exiv2 utility will always output more than just one tag. Use grep to get what you need. Alternatively, since you're a programmer, look at the examples...
Andreas Huggel
zzzahu
Offline Send Email
Jan 11, 2006
3:33 pm
205
My program is actually written in LabView. Although I have had some experience with C (2 college courses), I am not extremely knowledgeable in the language. I...
exiv2user
Offline Send Email
Jan 11, 2006
4:03 pm
206
Ok, try this: 1. Make sure you can successfully compile the original source package 2. Look at exifprint.cpp, remove the for() {...} loop and replace it with...
Andreas Huggel
zzzahu
Offline Send Email
Jan 11, 2006
4:53 pm
Messages 177 - 206 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