Answered
Adding dynamic QR code generator to ColdFusion program
When I took over the care of a CF intranet site, the Google chart API was being used to generate QR codes that are on employee badges; this won't be working for much longer and I need to find a replacement.
<cfimage source="#myImage#"
destination="c:/workgroups/webdata/badgecards/#BadgPhotoName#"
action="write"
overwrite="Yes">
result="qrcode"
getasbinary="yes">
<cfimage action="write"
destination="c:/workgroups/webdata/badgecards/qr/#Replace(BadgPhotoName,'.jpg','.png','All')#"
source="#qrcode.filecontent#"
overwrite="yes">
This is what the code looks like I found a new generator, but I haven't been able to get it to work correctly. The generator that I was looking at is goqr.me/api, but I was wondering if Adobe has something like that, that I could use?
