When I save images using ListView, the images get smaller than the actual size. Can you please tell me how to avoid this? Here's the code I use
int i = 1;
foreach (Image image in lvPtMedicalRecord.LargeImageList.Images)
{
string filename = @"filepath" + i.ToString() + ".jpg";
lblFilePath.Text = filename;
image.Save(filename, ImageFormat.Jpeg);
i++;
}

New Topic/Question
Reply




MultiQuote





|