In a word, no, unless you wanted to convert the PDF to an image, greyscale it, and then convert it back to a PDF - losing all of your text selection in the process.
My suggestion would also be the stylesheet solution. If you use SASS (http://sass-lang.com/ ) you can declare your color variables in the master template and then just let sass automatically generate two different stylesheets with different colors: color stylesheet -------- $table_border: navy; @import includes/base_styles.scss; greyscale stylesheet -------- $table_border: #999999; @import includes/base_styles.scss; On Jan 31, 2014, at 12:57 PM, Dave Hatz <[email protected]> wrote: > > Anyone know how to create a PDF document in grayscale? We have a web page > that we give the user the ability to create a PDF of the page. The client > doesn't want any of the color that we have in our table columns to print in > color. > > I did a quick search on google, doesn't seem to be way to tell CFDocument to > create the PDF in grayscale. > > Anyone know of a way to do this without creating another web page without > colors? > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357556 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

