I'm not sure when it has happened, but I am trying to update my BestQR app and it seems that the EncodeQRCode() command no longer works.
Regardless of what text or error correction mode I use, it simply returns a blank image with a single white line at the top.
Here a simple example code, which I have tested on windows, iOS and Android with the same results.
// Is AGK Broken?
text$="I am some text"
img=EncodeQRCode(text$,0)
spr=createsprite(img)
setspritesize(spr,50,50)
SetSpritePosition(spr,5,5)
saveimage(img,"output.png")
do
sync()
loop
and here is an example of the output I receive every time
Can anyone else verify this as a bug? I noticed the problem with AppGameKit v2.0.20
It's quite important that I get it sorted so I can update BestQR with the LibPNG thing, as well as add the new Share Text/Image stuff to it
Thanks in advance...
>Edit<
Spellings and such :/