I have problem with add Image
, I can add one time, if i add two or more add it error:
The process cannot access the file 'C:\Users\Administrator\AppData\Roaming\afinos\CaptureImage\CapImage.Jpg' because it is being used by another process.I use following:
public static void SaveImageCapture(string imgPath, BitmapSource bitmap)
{
JpegBitmapEncoder encoder = new JpegBitmapEncoder();
encoder.Frames.Add(BitmapFrame.Create(bitmap));
encoder.QualityLevel = 100;
using (FileStream fstream = new FileStream(imgPath, FileMode.Create))
{
encoder.Save(fstream);
fstream.Close();
fstream.Dispose();
}
}
//Call to use SaveImageCpture
private void btnCapture_Click(object sender, RoutedEventArgs e)
{
Dispatcher.Invoke(new Action(delegate()
{
string path = "afinos\\" + "CaptureImage\\" + "CapImage.Jpg";
if (Directory.Exists(path) == false)
{
Directory.CreateDirectory(path);
}
Capture_Helper.SaveImageCapture(pathapp + "\\" + path, (BitmapSource)PicCapture.Source);
ChangeAvatar_vcard.Source = PicCapture.Source;
txtPath.Text = pathapp + "\\" + path;
}));
}