Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ios): report width/height of Blob as pixels, not points
With some sizes and scales, it is impossible to reconstruct the true number of pixels in JS just with screen density/scale. We need to multiple image scale vs pts natively. i.e. 10px square iumage on a 3x device reported width/height of 3, device scale of 3. Multiplying in JS naively we'd get image size of 9px x 9px, which was incorrect. Fixes TIMOB-27997
- Loading branch information