cssivision / react-native-qrcode

a minimalist qrcode component for react-native
MIT License
853 stars 304 forks source link

Fix rounding issue causing border-like artifacts. #8

Closed fanwashere closed 8 years ago

fanwashere commented 8 years ago

Due to the usage of floor and ceil, some rows and columns of the canvas does not have rects filled in. This seems to be fine with normal colors, but when using opacity (e.g. rgba(255, 255, 255, 0.9)), there border-like artifacts from the rounding.

screen shot 2016-03-10 at 3 59 02 pm

Changing to round seems to fix this.

screen shot 2016-03-10 at 4 08 11 pm