Reputation: 655
I designed a rdlc report. In that I embedded one image, say logo. But I accidently deleted the orginal image in orginal location. Now I am trying to resave the Logo from rdlc report.
In which location this rdlc's embedded image is getting stored?
Upvotes: 2
Views: 3396
Reputation: 2533
The image is not stored in a physical location but in the rdl file itself. If you open the rdl file, you would find tag . It has been mentioned here.
There are a few ways of saving the image. It has already been answered in this question.
Hope this helps.
Upvotes: 2
Reputation: 142
I'm not sure if i understand your question. The embedded images are stored as Base64 strings in rdlc. when you try to insert a new image in your report you have a dropdown of those images right under "use this image" or you can insert it from code
Upvotes: 0