web-dev-qa-db-ja.com

C#で画像ファイルを保存する

C#で画像ファイル(jpgやpngなどのタイプ)を保存するにはどうすればよいですか?

15
user268914

c#で、これらのパラメーターを使用したImage.Saveメソッド(文字列Filename、ImageFormat)

http://msdn.Microsoft.com/en-us/library/9t4syfhh.aspx

それで十分ですか?

// Construct a bitmap from the button image resource.
Bitmap bmp1 = new Bitmap(typeof(Button), "Button.bmp");

// Save the image as a GIF.
bmp1.Save("c:\\button.gif", System.Drawing.Imaging.ImageFormat.Gif);
22
Chris Jones
Image bitmap = Image.FromFile("C:\\MyFile.bmp");
bitmap.Save("C:\\MyFile2.bmp");  

Image MethodSave Method を使用でき、上記のように問題ないはずです。 Saveメソッドには5つの異なるオプションまたはオーバーロードがあります...

  //Saves this Image  to the specified file or stream.
  img.Save(filePath);

  //Saves this image to the specified stream in the specified format.
  img.Save(Stream, ImageFormat);

  //Saves this Image to the specified file in the specified format.
  img.Save(String, ImageFormat);

  //Saves this image to the specified stream, with the specified encoder and image encoder parameters.
  img.Save(Stream, ImageCodecInfo, EncoderParameters);

  //Saves this Image to the specified file, with the specified encoder and image-encoder parameters.
  img.Save(String, ImageCodecInfo, EncoderParameters);
18
RSolberg
            SaveFileDialog sv = new SaveFileDialog();
            sv.Filter = "Images|*.jpg ; *.png ; *.bmp";
            ImageFormat format = ImageFormat.Jpeg;

            if (sv.ShowDialog() == DialogResult.OK)
            {

                switch (sv.Filter )
                {
                    case ".jpg":

                        format = ImageFormat.Png;
                        break;

                    case ".bmp":

                        format = ImageFormat.Bmp;
                        break;
                }


                pictureBox.Image.Save(sv.FileName, format);
            }
0
A.Brit

.Net Frameworkがそのまま提供するよりも広範な画像処理が必要な場合は、 FreeImage プロジェクトをチェックしてください。

0
Eric J.