Question
java.lang.NoClassDefFoundError: coldfusion/image/Image
I am reciveing the error
java.lang.NoClassDefFoundError: coldfusion/image/Image
when using the cfhtmltopdf tag
I have tried
<cfhtmltopdf>
#variableContainingCleanedHTML#
</cfhtmltopdf>
I tried writing the HTML to a file and trying to convert it to PDF that way, same error.
I tried writing the HTML to a file and trying to convert it to PDF that way, same error.
<cffile action="write" file="#expandpath('.')#/Certificate_#form.certNumber#.html" output="#variableContainingCleanedHTML#"> <!--- this worked --->
<!--- fails here --->
<cfhtmltopdf
source="#expandpath('.')#/Certificate_#form.certNumber#.html"
destination="#expandpath('.')#/Certificate_#form.certNumber#.pdf"
/>
