alexzhirkevich / custom-qr-generator

Android library for creating QR codes with logo, custom shapes, colors, background image. Powered by ZXing
MIT License
173 stars 18 forks source link

Customizing QR code after generation #39

Closed MuhammadSaad420 closed 1 year ago

MuhammadSaad420 commented 1 year ago

I am generating QR code using zxing library...after generating, i am getting a bitmap image...can i edit QR code in the bitmap image in future instead of generating it again?

alexzhirkevich commented 1 year ago

What do you mean by edit?

MuhammadSaad420 commented 1 year ago

like generating QR code with MultiformatWriter and generating a bitmap(with default black QR pixels)....and in future Editing the bitmap(like changing the background of QR image, changing shape of QR pixel) when user wants to instead of generating the QR code again

alexzhirkevich commented 1 year ago

You can convert drawable to bitmap and do with it what you want. Anyway generating takes ~30ms. I guess your pixel-by-pixel editing takes a lot longer

MuhammadSaad420 commented 1 year ago

ok