// Create an instance of ImageSaveOptions
ImageSaveOptions options = new ImageSaveOptions();
options.Format = ImageFormat.Jpeg;

// Convert MHTML to JPEG or JPG image format 
Converter.ConvertMHTML("input.mhtml", options, "output.jpeg");