You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It sounds more like Windows related but I cannot pinpoint, the following is what happens.
In my VFP application I generate a QR code using the following code
`*** generate QR Code image
lcQRImageFileName = FORCEEXT(goApp.AppTempFolder() + SYS(2015), "bmp")
I convert the BMP into base64 for using VFP command STRCONV(FILETOSTR(lcQRImageFileName), 13) for use with ReportMan report format (it is text based report meta data)
The generated ReportMan file runs well on my Win11 laptop
When the same process is done on a client PC we get a JPEG Error #53
I bring over the same ReportMan file back to my laptop it works well without any changes and the QR Code appears well
The client has tested the same on WinXP and W10 Pro, but this error keeps coming.
Please advise on what is good in Win11 that is not on Win10 or WinXP for such generated QR codes?
Kind regards
Bhavbhuti
The text was updated successfully, but these errors were encountered:
Hi there
It sounds more like Windows related but I cannot pinpoint, the following is what happens.
`*** generate QR Code image
lcQRImageFileName = FORCEEXT(goApp.AppTempFolder() + SYS(2015), "bmp")
loFBC = CREATEOBJECT("FoxBarcodeQR")
loFBC.lAutoConfigurate = .T.
loFBC.nBarColor = RGB(0, 0, 0)
loFBC.nCorrectionLevel = 2
loFBC.nMarginPixels = 5
loFBC.FullQRCodeImage(lmIRNSignedQRCode, lcQRImageFileName, 230)`
I convert the BMP into base64 for using VFP command
STRCONV(FILETOSTR(lcQRImageFileName), 13)
for use with ReportMan report format (it is text based report meta data)The generated ReportMan file runs well on my Win11 laptop
When the same process is done on a client PC we get a JPEG Error #53
I bring over the same ReportMan file back to my laptop it works well without any changes and the QR Code appears well
The client has tested the same on WinXP and W10 Pro, but this error keeps coming.
Please advise on what is good in Win11 that is not on Win10 or WinXP for such generated QR codes?
Kind regards
Bhavbhuti
The text was updated successfully, but these errors were encountered: