RE: Announcing ColdPDF

2006-06-16 Thread Turetsky, Seth
it in there as well. -seth -Original Message- From: Ali Awan [mailto:[EMAIL PROTECTED] Sent: Thursday, June 15, 2006 5:22 PM To: CF-Talk Subject: Re: Announcing ColdPDF Cool, so will this be like a replacement to ActivePDF? I did some research on iText, and found something I've been trying to do

Re: Announcing ColdPDF

2006-06-16 Thread Bryan Stevenson
Sent: Thursday, June 15, 2006 6:06 AM Subject: RE: Announcing ColdPDF If you are interested I have a function that takes a csv of tiff images and creates a .pdf from them using iText, blogged about it at http://www.cfcode.net/blog/index.cfm/2006/6/6/Using-iText-to-create-a-PD F-from-multiple

Re: Announcing ColdPDF

2006-06-16 Thread Dan Plesse
Message - From: Peterson, Chris [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, June 15, 2006 6:06 AM Subject: RE: Announcing ColdPDF If you are interested I have a function that takes a csv of tiff images and creates a .pdf from them using iText, blogged about

Re: Announcing ColdPDF

2006-06-16 Thread Robert Everland III
Dan, I don't understand what you mean by adding a classloader, the examples you gave me added a classviewer http://www.cfdev.com/mx/undocumentation/ to view undocumented features, but the examples expect the iText jar to already be loaded. Bob

Re: Announcing ColdPDF

2006-06-16 Thread Dan Plesse
Bob, Yes classloaders and a classviewers are different but I think they use the same reflection to load things dynamically. After iText I started looking into classloaders and found out they can be done in a two lines of code. FreeTTS example cfset DansArray[1] = createObject(java,

Re: Announcing ColdPDF

2006-06-16 Thread Paul Hastings
Dan Plesse wrote: Does anyone know why Calender needs getInstance() method? it's protected. use GregorianCalendar. or better yet use getInstance add locale timezone. timezone's kind of important. cfset c.set(c.YEAR, DateFormat(Now(), )) cfset c.set(c.MONTH, evaluate(DateFormat(Now(),

RE: Announcing ColdPDF

2006-06-15 Thread Peterson, Chris
If you are interested I have a function that takes a csv of tiff images and creates a .pdf from them using iText, blogged about it at http://www.cfcode.net/blog/index.cfm/2006/6/6/Using-iText-to-create-a-PD F-from-multiple-TIFF-images#comments - Chris -Original Message- From: Robert

RE: Announcing ColdPDF

2006-06-15 Thread Turetsky, Seth
Robert, This is a great idea. I did a report generator based off a query you specify and it's column list. Probably something cfdocument can do now, but I'll mention it anyways, for the people without cfmx 7. I did it so it can layout a horizontal table of rows or a vertical repeating

Re: Announcing ColdPDF

2006-06-15 Thread Robert Everland III
Seth can you reply to me offline and send me the function so I can add it to the CFC? Bob ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243600 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4

Re: Announcing ColdPDF

2006-06-15 Thread Gert Franz
Hi Robert, could you Imagine, that your CFC would be good for Railo too? (www.railo.ch) We are planning for the 1.1 release almost the complete 100% MX7 compatibility... Regards Gert Greetings / GrĂ¼sse Gert Franz Customer Care [EMAIL PROTECTED] www.railo.ch Join our Mailing List / Treten

Re: Announcing ColdPDF

2006-06-15 Thread Robert Everland III
I don't know much about your product to answer that, but if you've copied the majority of ColdFusion's funcitonality I don't see why not. I'm just initializing the iText jar to do the heavy work, the ColdPDF cfc is merely an easy way for anyone to take advantage of the power of iText. Bob

Re: Announcing ColdPDF

2006-06-15 Thread Ali Awan
Cool, so will this be like a replacement to ActivePDF? I did some research on iText, and found something I've been trying to do with CF and PDF's for a while now, which is generate 2D(pdf417) barcodes inside a pdf, dynamically from form data passed in. So if I'm able to access that iText