モバイルデバイスを使用して写真を撮り、Web サービスを使用して送信するアプリケーションを開発しています。しかし、4枚の写真を撮った後OutOfMemoryException
、以下のコードを取得しています。電話をかけてみGC.Collect()
ましたが、どちらも役に立ちませんでした。ここにいる誰かが、この問題を処理する方法についてアドバイスをくれるかもしれません。
public static Bitmap TakePicture()
{
var dialog = new CameraCaptureDialog
{
Resolution = new Size(1600, 1200),
StillQuality = CameraCaptureStillQuality.Default
};
dialog.ShowDialog();
// If the filename is empty the user took no picture
if (string.IsNullOrEmpty(dialog.FileName))
return null;
// (!) The OutOfMemoryException is thrown here (!)
var bitmap = new Bitmap(dialog.FileName);
File.Delete(dialog.FileName);
return bitmap;
}
この関数は、イベント ハンドラーによって呼び出されます。
private void _pictureBox_Click(object sender, EventArgs e)
{
_takePictureLinkLabel.Visible = false;
var image = Camera.TakePicture();
if (image == null)
return;
image = Camera.CutBitmap(image, 2.5);
_pictureBox.Image = image;
_image = Camera.ImageToByteArray(image);
}