ハードディスクにあるファイルが画像かどうかを確認してから使用したいのですが。
私はC++/Cliを使用しています
OpenFileDialog^ openFileDialog1 = gcnew OpenFileDialog;
if ( openFileDialog1->ShowDialog() == System::Windows::Forms::DialogResult::OK ) {
Bitmap^ PreviewImage = gcnew Bitmap(openFileDialog1->FileName); //If File is not an image this will crash.
}
行でコメントしたように、ファイルがエラーを生成する画像ではない場合、ファイルが事前に画像であるかどうかを確認するにはどうすればよいですか?
前もって感謝します。