我正在尝试将wkhtmltoimage与Abram Adams image.cfc一起使用。我不断收到错误消息“找不到ColdFusion组件或接口库”。我的代码如下:
<cfscript>
wkhtmltoimage = new customdesigner.com.wkhtmltoimage(binaryPath = 'C:\Program Files\wkhtmltopdf\bin\wkhtmltoimage.exe');
image = wkhtmltoimage.create({
'html': '#trim(form.data)#',
'quality':'100',
'encoding': 'utf-8'
//writeToFile = true, // true will write the file and return a struct containing the path (and other info)
//destination = "#expandPath('..\media\client\images\L#session.locationcode#-#form.filename#-#session.uuid#.jpg')#"
});
</cfscript>
我知道可执行文件路径是正确的,因为我为htmltopdf使用相同的路径,并且可以正常工作。我想念什么?我称这个组件不对吗?