detailed attributes of jpeg
-
Hi all I'm working with the FileInfo object. Is there a way to get hold of the detailed attributes of a jpeg using this object? Like if you right click on the jpeg in windows explorer - properties - summary: title, subject, author etc etc. If not, are there any other ways? Any ideas gratefully received :) Steven
-
Hi all I'm working with the FileInfo object. Is there a way to get hold of the detailed attributes of a jpeg using this object? Like if you right click on the jpeg in windows explorer - properties - summary: title, subject, author etc etc. If not, are there any other ways? Any ideas gratefully received :) Steven
steven shingler wrote: properties - summary: title, subject, author etc etc. Take a look at the FileVersionInfo[^] class. - Nick Parker
My Blog | My Articles -
Hi all I'm working with the FileInfo object. Is there a way to get hold of the detailed attributes of a jpeg using this object? Like if you right click on the jpeg in windows explorer - properties - summary: title, subject, author etc etc. If not, are there any other ways? Any ideas gratefully received :) Steven
Load the jpg into an
System.Drawing.Image
and use thePropertyItems
collection on that... (orGetPropertyItem
method)
Have a look at my latest article about Object Prevalence with Bamboo Prevalence.
-
Load the jpg into an
System.Drawing.Image
and use thePropertyItems
collection on that... (orGetPropertyItem
method)
Have a look at my latest article about Object Prevalence with Bamboo Prevalence.
Cheers guys The description property using the FileVersionInfo was returning an empty string for my jpgs, but the PropertyItems collection does the job great. Thanks very much! :)