我想在使用之前检查我硬盘中的文件是否是图像。
我正在使用 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.
}
正如我在该行中评论的那样,如果文件不是会产生错误的图像,我该如何检查文件是否是图像?
提前致谢。