How to extract images from running .Net application?
I would ask about just ".net application" but my app is obfuscated, encrypted and compressed, and I cannot get anything from just a binary file on the disk.
This is my own app, and because of disk crash, I had to retrieve it from SVN. It appeared that I didn't include images, so I am figuring out how to get it back from installed .exe file.
So -- is there a tool开发者_Python百科 to extract images from running .Net application? I think this is my last chance.
You could use a tool like Cropper to take screenshots of the images within the app?
You can do Assembly.Load against a .NET EXE file; I'm wondering if you can then reflect into that image and extract the resources you need ?
My thinking is, is by that time, the OS/CLR will have done whatever processing is required to unpack your image.
Assuming that this is a .Net application, you can probably use Reflector to view all the embeded resources of the various assemblies.
精彩评论