Using PhoneGap, How to get base64 image data of the photo chosen from photo library in iPhone

前端 未结 6 1462
无人及你
无人及你 2021-01-12 08:58

Using PhoneGap(Cordova), Am trying to get base64 image data of the photo chosen from the photo library.

I could do that.. when the photo is captured from camera, Wi

6条回答
  •  花落未央
    2021-01-12 09:41

    Its the good way to get image in base64 but when is show base64 string returned by this function. It display me a white image. My code is as follows

    var smallImage = document.getElementById('smallImage');
                    smallImage.src = encodeImageUri(imageURI);
    

提交回复
热议问题