2011-06-29から1日間の記事一覧

【C#】画像かどうかを判定する ~ ImageCodecInfo / Bitmap を使って ~

■ サンプル public bool IsImage(string imagePath) { ImageCodecInfo[] decoders = ImageCodecInfo.GetImageDecoders(); Bitmap bitmap; try { bitmap = new Bitmap(imagePath); } catch (Exception) { return false; } bool isImage = false; foreach (Ima…