I am doing a photo editor, but I have a problem when creating a class, named MyImage, which I would like to put all the exif data. When I declare the inheritance in the code it falls.
public class MyImage : Image
{
private int iso;
private float focalLength;
private float shutterSpeed;
private string flash;
private float exposureTime;
private string dataTime;
private string cammeraModel;
private string artist;
private string copyright;
private string geotag;
private int rank;
private string climate;
private bool animal;
private string path;
public MyImage(string path)
{
Image file = Image.FromFile(path);
}
}
Which is the error?