tags:

views:

19

answers:

1

HI, I am developing an application which has following requirements.I have been searching nearly 2 days without a solution.

In my application I am using WPF FlowDocumentReader.We are going to create file consisting of images.The created file then will be distributed to clients through download.

1.The FlowDocumentReader Should Load and read multiple images from disc (say C:\Books).

2.FlowDocumentReader should be able to save the loaded images as a single file in disc. (say E:\ CreatedBooks)

3.When we import the saved file from E:\NewBooks ,FlowDocument should be able to read it.

I have nearly 200 images.

When I use xamlreader.write() methode,it is saving the image but with link to physical file.something like bitmapImage source to "C:\Books" which is not suited for the application since the saved file will be used by lients in different computer.

Please help me ..I need to build this application very veryy urgently.

A: 

Are you using XamlWriter.Save? Can you paste some of your code here so that we can help you better?

Mamta Dalal
xamlwrite.save(flowdocumentReader)
Subhash
Use Save with the Stream parameter.
Mamta Dalal