おでんはじめました。

required ちくわぶ and 巾着,optional はんぺん.

2016-04-22から1日間の記事一覧

Bitmapとbyte[]の変換

C#

いざ書くといつも忘れてしまうので。 画像ファイル(Bitmap)からbyte[]に変換 Bitmap bmp = new Bitmap(画像のPATH); //using System.Drawing MemoryStream ms = new MemoryStream(); bmp.Save(ms,ImageFormat.Png); //using System.Drawing.Imaging; byte[]…