1T3XT info wrote:
> But you only generated the bytes of a PDF file. You need a PDF to RTF
> convertor to server RTF. Due to the nature of PDF, it will be hard to
> find software that allows you to do that.
> That's... the reason why you didn't get an answer earlier. Usually
> people don't ac
Stephan Trautmann wrote:
> Hello,
>
> I have created a pdf and saved it temporaily to memory into a
> bytearrayoutputstream.
This means that you have bytes like:
byte[] = { '%', 'P', 'D', 'F', '-', '1', '.', '4',... }
> Now
That byte stream is a PDF file; it contains PDF syntax.
> I woul
Hello,
I have created a pdf and saved it temporaily to memory into a
bytearrayoutputstream.
Now
I would to like to output this stream into a rtf file
Maybe you ask yourself now, "why the hell doesn't he directly output into a
document having a rtfwriter instance"... well..
I have cre