Re: Can CF do this?

2005-09-15 Thread Rick Root
Claude Schneegans wrote: Most printers prefer 300dpi images for maximum quality... Printers don't give a dam about DPIs... Image do not have DPIs*, they just have pixels, the more pixels there are, the better the image looks on the printer, period. Not to nitpick, but having a degree in

Re: Can CF do this?

2005-09-15 Thread Claude Schneegans
If you send a 72 DPI photoshop document to the printer, it's gonna look like crap. If you send the image directly to the printer, it will take care of the DPI embeded in the image, personally I never send images direcly to the printer, I always use some soft to lay the image the way I want in

RE: Can CF do this?

2005-09-15 Thread Kevin Aebig
[mailto:[EMAIL PROTECTED] Sent: September 15, 2005 7:57 AM To: CF-Talk Subject: Re: Can CF do this? If you send a 72 DPI photoshop document to the printer, it's gonna look like crap. If you send the image directly to the printer, it will take care of the DPI embeded in the image, personally I

Re: Can CF do this?

2005-09-15 Thread Rick Root
Kevin Aebig wrote: You're talking about a desktop printer and we're talking about using a Print House... companies that do professional printing. Yeah I should've known better than to use the word printer to refer to a print house. Oh well, we all make mistakes ;) Rick

Re: Can CF do this?

2005-09-15 Thread Claude Schneegans
we're talking about using a Print House... companies that do professional printing. Then a fortiori: what counts is the number of pixels, they will print it at the resolution they need, depending on the printer they have, no matter what's in the image. This was my point. --

Re: Can CF do this?

2005-09-15 Thread Rick Root
Claude Schneegans wrote: we're talking about using a Print House... companies that do professional printing. Then a fortiori: what counts is the number of pixels, they will print it at the resolution they need, depending on the printer they have, no matter what's in the image. This was

Re: Can CF do this?

2005-09-15 Thread Claude Schneegans
If you scan your 3x5 photo at 72 dpi ... then you are in trouble, but note that in your example, 72 dpi is the resolution of the SCANNER, not the image. And if you want your 3x5 photo to appear in this coffee table book at a print size of 6x10, they're gonna tell you to scan it in at 600 dpi,

RE: Can CF do this?

2005-09-15 Thread Mark Fuqua
Can cf do this? shhh...relax. -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Thursday, September 15, 2005 4:49 PM To: CF-Talk Subject: Re: Can CF do this? If you scan your 3x5 photo at 72 dpi then you are in trouble, but note that in your example, 72

Re: Can CF do this?

2005-09-15 Thread Claude Schneegans
Can cf do this? A CFX_tag can do it, yes. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks.

RE: Can CF do this?

2005-09-14 Thread Ian Skinner
For what little I saw with a few moments of testing. There is nothing special here. Some well laid out forms and layers. What is it you think is special (maybe I didn't try it). -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA C code. C code run.

Re: Can CF do this?

2005-09-14 Thread S . Isaac Dealey
http://bluegelmedia.com.ecardbuilder.com/showcard.asp?Cust omerID=EN849411462013889.473u=P=1C=gs=f=5x=ac2y=1n =1card_side=FRONT Can CF do this? cfdocument and cfreport aren't that robust. Is this example using some sort of Microsoft Word object model? What exactly is this doing that

Re: Can CF do this?

2005-09-14 Thread Rick Root
Rick King wrote: http://bluegelmedia.com.ecardbuilder.com/showcard.asp?CustomerID=EN849411462013889.473u=P=1C=gs=f=5x=ac2y=1n=1card_side=FRONT Can CF do this? cfdocument and cfreport aren't that robust. Is this example using some sort of Microsoft Word object model? It's generating an

Re: Can CF do this?

2005-09-14 Thread Jerry Johnson
I've done this FROM cf, but using perl to create a ps file, convert that to a jpg and return them via cfcontent. I've also used cf to write the postscript directly, and used ghostscript to convert it to a pdf and to a tif (for printing and viewing respectively) I would think there are plenty of

Re: Can CF do this?

2005-09-14 Thread Douglas Knudsen
dunno exactly how this site is doing it, but I have played with something similar in PHP. Just use an image file as a template an doverlay it with teh user data...BAMM! Can do this in CF via Java or one of the custom tags around for image manipulation. DK On 9/14/05, Rick King [EMAIL PROTECTED]

Re: Can CF do this?

2005-09-14 Thread Bryan Stevenson
dunno exactly how this site is doing it, but I have played with something similar in PHP. Just use an image file as a template an doverlay it with teh user data...BAMM! Can do this in CF via Java or one of the custom tags around for image manipulation. FigLeaf software has this ability with

Re: Can CF do this?

2005-09-14 Thread S . Isaac Dealey
Boy everybody's throwing out complicated solutions... I figured this would work: cfdocument table background=image.jpg width=x height=y trtdstuff here/td/tr /table /cfdocument dunno exactly how this site is doing it, but I have played with something similar in

Re: Can CF do this?

2005-09-14 Thread Ken Ferguson
I worked on a bank check site one time where we used ASPImage from CF to genereate an image of a check with your personal information on it... It's simple and there are several utilities out there to do it. --Ferg Douglas Knudsen wrote: dunno exactly how this site is doing it, but I have

Re: Can CF do this?

2005-09-14 Thread Rick Root
S. Isaac Dealey wrote: Boy everybody's throwing out complicated solutions... I figured this would work: cfdocument table background=image.jpg width=x height=y trtdstuff here/td/tr /table /cfdocument Don't you mean div style=background-image: ... ;)

Re: Can CF do this?

2005-09-14 Thread Jerry Johnson
This would not give you the exact positioning of text, nor the color and fonts that will be on the final printed card. The idea is to output to the screen basically pixel exact representations of the print version of the product. The only sure way to do this is to create a single file that will

Re: Can CF do this?

2005-09-14 Thread S . Isaac Dealey
S. Isaac Dealey wrote: Boy everybody's throwing out complicated solutions... I figured this would work: cfdocument table background=image.jpg width=x height=y trtdstuff here/td/tr /table /cfdocument Don't you mean div style=background-image: ... ;) Bite me

Re: Can CF do this?

2005-09-14 Thread S . Isaac Dealey
This would not give you the exact positioning of text, nor the color and fonts that will be on the final printed card. The idea is to output to the screen basically pixel exact representations of the print version of the product. The only sure way to do this is to create a single file

Re: Can CF do this?

2005-09-14 Thread Ken Ferguson
Here's the link to ASPImage: http://www.reg.net/product.asp?ID=1072templateid=128 There you go. It's $69. Like I said, I used it and it was simple -- worked perfectly too. You can check it out in the checkout process at www.citm.com (please don't blame me for the nasty site please, it was like

Re: Can CF do this?

2005-09-14 Thread Jerry Johnson
Yes, PDF will work, and coldfusion is getting better all the time at manipulating them. As is Java. I was just pointing out that a background image with text over the top might not give enough fidelity. Although PDFs require additional plugins installed to view it in a browser, where a .jpg does

Re: Can CF do this?

2005-09-14 Thread Bryan Stevenson
Yes, PDF will work, and coldfusion is getting better all the time at manipulating them. As is Java. and guess how CF does itJava (iText on SourceForge) ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264

Re: Can CF do this?

2005-09-14 Thread S . Isaac Dealey
Ahh... gotcha... Yes, PDF will work, and coldfusion is getting better all the time at manipulating them. As is Java. I was just pointing out that a background image with text over the top might not give enough fidelity. Although PDFs require additional plugins installed to view it in a

Re: Can CF do this?

2005-09-14 Thread Rick King
Would the generated PDF with print ready? In other words, even if I am using a 300 dpi jpeg image as the background, use cfdocument to create a PDF, at what resolution is it distilled at? I had heard 96 dpi which is n't high enough for print...

RE: Can CF do this?

2005-09-14 Thread Kevin Aebig
: Re: Can CF do this? Ahh... gotcha... Yes, PDF will work, and coldfusion is getting better all the time at manipulating them. As is Java. I was just pointing out that a background image with text over the top might not give enough fidelity. Although PDFs require additional plugins

Re: Can CF do this?

2005-09-14 Thread Claude Schneegans
I figured this would work: It won't do exactly the same: First it will not generate an image file, second, if the fonts are not istalled on client side, results are unpredictable. With ColdFusion, a CFX tag using the TG library would do it.

Re: Can CF do this?

2005-09-14 Thread Bryan Stevenson
cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com - Original Message - From: Rick King [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, September 14, 2005 1:55 PM Subject: Re: Can CF do this? Would the generated PDF with print ready

Re: Can CF do this?

2005-09-14 Thread S . Isaac Dealey
Would the generated PDF with print ready? In other words, even if I am using a 300 dpi jpeg image as the background, use cfdocument to create a PDF, at what resolution is it distilled at? I had heard 96 dpi which is n't high enough for print... Why would we create a tool to distill print

Re: Can CF do this?

2005-09-14 Thread S . Isaac Dealey
I figured this would work: It won't do exactly the same: First it will not generate an image file, second, if the fonts are not istalled on client side, results are unpredictable. With ColdFusion, a CFX tag using the TG library would do it. I thought the cfdocument tag would import the

Re: Can CF do this?

2005-09-14 Thread dcooper
fyi, here's a simple little business card designer we ship this as a simple sample app with ColdFuison 7 (done with simple Flash Forms): http://www.macromedia.com/examples/cfgettingstarted/experience/snippets/Tags/cfform/examples/Business%20Card%20Wizard/index.cfm?locale=en (mind the wrap)

Re: Can CF do this?

2005-09-14 Thread Claude Schneegans
Most printers prefer 300dpi images for maximum quality... Printers don't give a dam about DPIs... Image do not have DPIs*, they just have pixels, the more pixels there are, the better the image looks on the printer, period. An image with 1000 pix at 75 dpi looks better than an image with 200

Re: Can CF do this?

2004-01-19 Thread Dave Carabetta
Again for security reasons, and maybe I don't need to do this... Can cold fusion capture a users ip adress and store it in a database on a given even like user login? If so, what code would I use? I'm sure I could find the answer myself, but a little help would be a big time saver! Not

RE: Can CF do this?

2004-01-19 Thread Shawn Grover
CGI.REMOTE_ADDRESS (I think - I'd have to look it up to be absolutely sure). However, do not expect this to be 100% reliable.The reported IP address can be a proxy server's address, or may not be reported at all (depending on the browser). Shawn -Original Message- From: NANCY SKAGER

Re: Can CF do this?

2004-01-19 Thread Matt Robertson
To add to the reasons given why this isn't particularly reliable, many ISPs now use rotating IPs during the same connection.AOL is the most often cited offender, with oftentimes each page request in a single session coming from a different IP, but they by no means are the only ones doing it. Then

Re: Can CF do this?

2004-01-19 Thread NANCY SKAGER
: Re: Can CF do this? Date: Mon, 19 Jan 2004 17:41:13 -0800 To add to the reasons given why this isn't particularly reliable, many ISPs now use rotating IPs during the same connection.AOL is the most often cited offender, with oftentimes each page request in a single session coming from

Re: can CF do multiple DB connection?

2001-11-04 Thread tom muck
It sounds like you are confused by why the application.cfm has the DSN connection defined -- the main reason is so that you don't have to define it on every page and can change it in one place if you need to change it for any reason. If you want to use more than one, simply define more than one

Re: can CF do multiple DB connection?

2001-11-04 Thread W Luke
Can Access support cross-database joins? Will - Original Message - From: Darryl Lyons [EMAIL PROTECTED] Newsgroups: gradwell.lists.cftalk Sent: Sunday, November 04, 2001 8:23 PM Subject: RE: can CF do multiple DB connection? If your using db like SQL Server you can do cross database

RE: can CF do multiple DB connection?

2001-11-04 Thread Darryl Lyons
Don't think so as you've generally got one datasource per access database.. I'm not really an Access-using person.. -Original Message- From: W Luke [mailto:[EMAIL PROTECTED]] Sent: Monday, 5 November 2001 10:05 AM To: CF-Talk Subject: Re: can CF do multiple DB connection? Can Access

Re: can CF do multiple DB connection?

2001-11-04 Thread han peng
PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, November 05, 2001 4:10 AM Subject: RE: can CF do multiple DB connection? If your using db like SQL Server you can do cross database joins by doing this: SELECT n.name FROM Dbname.dbo.tablename r, dbname2.dbo.tablename2 n WHERE r.id

Re: can CF do multiple DB connection? (Access)

2001-11-04 Thread Joseph Thompson
Yes, Access will support that. http://cfhub.com/forum/index.cfm?FuseAction=ThreadTopicID=1914Start=Last Datasource1=iether of your valid datasources t2 *the path to the second database *be sure to add the table name as SecondDBTable *SecondDbase is the

RE: can CF do multiple DB connection?

2001-11-04 Thread Dave Watts
ok... wat i need is to hav multiple DB connection in a query statement.. for example.. i need to hav a joint query from a oracle database and a ms sql database.. can i actually do this..? cfquery name =eg1 datasource=oracle.dsn, mssql.dsn . . /cfquery ?? or must it be query

Re: can CF do multiple DB connection?

2001-11-04 Thread Paul Hastings
cfquery name =eg1 datasource=oracle.dsn, mssql.dsn coming from the sql server end of things, look at the OPENROWSET OPENQUERY rowset functions though as other have indicated, you'll need just 1 dsn that has some sort of access to the other dsn you'll be talking to.