Question
Can you use ColdFusion to convert .AI files to PNG?
Is it possible in any way to convert an .AI file to a .PNG via ColdFusion. I've used the <cfimage> tag in the past to convert from PNG to JPG (example below). However, an AI file is a whole nother beast.
<!---Convert Image--->
<cfimage source="Image1.png" action="convert" destination="newImage1.jpg" name="newImage" overwrite="yes">
Does anyone know how to tackle this problem programmatically? Is it possible?
