Get bitmap file name
问题 I use this line below for create my Bitmap: Bitmap b = new Bitmap(@"C:\<file name>"); After I modify this bitmap and I want to save it as in line below: b.Save(@"C:\\<other file name>") My question is - how to get the file name bitmap from property. Simply put, I need to save the bitmap with the same name with whom I had initiated it. Thanks 回答1: Perhaps you can do this with Metadata - but I'm not familiar with this subject so I'm not completely sure it's possible, nor do I how to do it. What