QR Code in Progress

Cringer

ProgressTalk.com Moderator
Staff member
I believe this is something that's possible with the open source DocXFactory project.
 

Cecil

19+ years progress programming and still learning.
what format do you require? i.e. bmp, png , svg?
 

oli

Member
Hi Cecil,

I've tried this, several years ago: ThoughtWorks.QRCode

Code:
USING ThoughtWorks.QRCode.Codec.*.
USING System.Drawing.*.
 
DEFINE VARIABLE oEncoder AS ThoughtWorks.QRCode.Codec.QRCodeEncoder NO-UNDO.
DEFINE VARIABLE oImage  AS System.Drawing.Image  NO-UNDO.
 
oEncoder = NEW QRCodeEncoder().
oEncoder:QRCodeVersion = 0.
oImage = oEncoder:Encode("Progress Talk has always an answer").
oImage:Save("c:\temp\qrProgressTalk.gif",System.Drawing.Imaging.ImageFormat:Gif).
 
Top