私は Aforge.net サンプルを使用しており、リソースに配置されている画像の名前を取得したいと考えていました。image.tag でエラーが発生しているため、実行できません。
助けてください
私は Aforge.net サンプルを使用しており、リソースに配置されている画像の名前を取得したいと考えていました。image.tag でエラーが発生しているため、実行できません。
助けてください
You can using the Uri Class to load the path and pull the Image name from Segments collection:
Uri uri = new Uri("http://www.XXXX.com/imageName.jpg");
string fileName = uri.Segments.Last();
Edit
Let see this answers: if you like it ?
C# how to get a bitmap from a picturebox
New Edit
System.IO.FileInfo info = new System.IO.FileInfo(Properties.Resources.Stop);
string fileName = info.Name;