-
Notifications
You must be signed in to change notification settings - Fork 137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JpegView does not show the Exif information completely. #72
Comments
I plopped this into Google Translate... and yes, not all EXIF is showing at the moment. It only shows a few basic things that are crucial in the EXIF display box. I'll see if it's easy to add or configure this as an option |
Hi Sylikc, glad to get your reply and see that you're continuously making development on this project. |
@valuex can you give me a sample image where the exif comment isn't showing properly. I went through the code, and in theory, it should display the UserComment field in EXIF... As for copying and dumping exif to a file, I maintain a Python project PyExifTool which allows you to do this pretty easily. It's well documented and pretty easy to use. I, myself, use a UserCmd# in JPEGView to do advanced reads of the EXIF for fields which JPEGView doesn't parse. |
Sorry for late reply. I am not familar with C++. But I think it's related to the definition of comment. using Microsoft.WindowsAPICodePack.Shell;
using Microsoft.WindowsAPICodePack.Shell.PropertySystem;
//get commment from image file
var so = ShellObject.FromParsingName(FilePath);
var _usercomment = so.Properties.GetProperty(SystemProperties.System.Comment);
string usercommentValue = _usercomment.ValueAsObject.ToString(); |
@sylikc |
@huaqic adding more detailed exif is currently backlog behind some other issues... I would suggest doing renames using |
I've identified the XPComment tag that is used, and found it in IFD0, but i'm not sure how to decode the UCS2 decoding that Windows uses... so I'm putting this in backlog for now |
@sylikc Thank you for your reply! I am looking forward to solving this problem one day. |
JpegView does not show the Exif information completely. For example, they commented of the current temperature is not shown. Could you have to fix it? Thanks.
The text was updated successfully, but these errors were encountered: