You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
527 B
C#

Use JpegBitmapDecoder
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Media.Imaging;
using System.IO;
class UseBitmapCodecs
{
static string GetCamera(string myJpegPath)
{
JpegBitmapDecoder decoder = new JpegBitmapDecoder(new Uri(myJpegPath),BitmapCreateOptions.None, BitmapCacheOption.None);
BitmapMetadata bmpData = (BitmapMetadata) decoder.Frames[0].Metadata;
return bmpData.CameraModel;
}
}