RE: [iText-questions] streaming jpeg into PdfContentByte

2004-03-24 Thread Paulo Soares
-questions] streaming jpeg into PdfContentByte --- Menke, John [EMAIL PROTECTED] wrote: MY QUESTION IS THIS. CAN I create a rendered image with a JPEGDecodeParam() instead of the TIFFDecodeParam and if so what do i use as params for the JAI.create method. I can't find a reference

RE: [iText-questions] streaming jpeg into PdfContentByte

2004-03-24 Thread Menke, John
Cc: itext-questions Subject: RE: [iText-questions] streaming jpeg into PdfContentByte Furthermore, if you are using jpeg what do you need tiff for? Best Regards, Paulo Soares -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matt Benson Sent: Tuesday

[iText-questions] streaming jpeg into PdfContentByte

2004-03-23 Thread Menke, John
I have a method that will print TIFF images to my pdf and my business requirements have changed and now i need to support JPG images also. currently the logic boils down to this: PdfContentByte cb = writer.getDirectContent(); k=1; ParameterBlock pb = new ParameterBlock(); pb.add(s);

RE: [iText-questions] streaming jpeg into PdfContentByte

2004-03-23 Thread Bill Ensley
-questions] streaming jpeg into PdfContentByte I have a method that will print TIFF images to my pdf and my business requirements have changed and now i need to support JPG images also. currently the logic boils down to this: PdfContentByte cb = writer.getDirectContent(); k=1; ParameterBlock pb = new

Re: [iText-questions] streaming jpeg into PdfContentByte

2004-03-23 Thread Matt Benson
--- Menke, John [EMAIL PROTECTED] wrote: MY QUESTION IS THIS. CAN I create a rendered image with a JPEGDecodeParam() instead of the TIFFDecodeParam and if so what do i use as params for the JAI.create method. I can't find a reference for valid operator names for the JAI.create method