TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Forcasual Things
NA
14
7.5k
Using ExifReader to find tags property in Jpeg Image
Aug 12 2015 4:14 PM
I am trying to get tags property from my jpeg image as shown in picture.It's value is
<tx time=Tue Jul 21 10:20:04 2015> <ocrtime=Fri Jul 31 11:26:09 2015> <plate=4ARS123> <state=CA> <conf=873> <handle=4ARS123> <plateloc=906,744,1326,855>
I am trying to get plateloc tag from it and have tried following so far.I understand its one of properties of exiftags which will get me there.which one ? Please help
using (ExifReader reader = new ExifReader( Server.MapPath( testimage.ImageUrl )) ){
// Extract the tag data using the ExifTags enumeration
string plateloc;
if (reader.GetTagValue<string>(ExifTags.ExifVersion,
out plateloc))
{
}
}
Reply
Answers (
1
)
insert Image(picture) Windows Form(C#) Using WCF Service
Input Validate: How to accept only one or two digit integer?