|
分類:[C#]
c#のwpfでボタンを押したときにimageの画像を保存するプログラムを作りたいのですが、エラーが出てしまいます。どうしたらうまく作動するでしょうか?教えてください。
以下ソースコード
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace yabai
{
/// <summary>
/// MainWindow.xaml の相互作用ロジック
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void button1_Click(object sender, RoutedEventArgs e)
{
RenderTargetBitmap bitmap = new RenderTargetBitmap((int)image1.ActualWidth, (int)image1.ActualHeight, 96, 96, PixelFormats.Pbgra32);
bitmap.Render(image1);
JpegBitmapEncoder encoder = new JpegBitmapEncoder();
encoder.Frames.Add(BitmapFrame.Create(bitmap));
var dlg = new Microsoft.Win32.SaveFileDialog();
dlg.Filter = "JPEG(*.jpg)|*.jpg";
}
}
}
エラーの際にでる文章
'System.ArgumentOutOfRangeException' のハンドルされていない例外が PresentationCore.dll で発生しました。
よろしくお願いします。
|