bmfe / eros-plugin-ios-baseLibrary

eros ios sdk.
https://bmfe.github.io/eros-docs
MIT License
35 stars 50 forks source link

为BMImageModule增加图片转base64功能 #12

Closed howie95 closed 6 years ago

howie95 commented 6 years ago

使用方法: bmImage.base64(图片的url,function(res){

}) res即base64编码字符串,转化后的编码没有data url头,需要根据使用情况自行添加'data:image/jpeg;base64, '字段

xiaohuapunk commented 6 years ago

感谢提交pr,我看了你的实现,UIImage *img = [UIImage imageNamed:url];,方法只支持工程内置的image转base64,很限制该方法的使用场景,能够拓展一下,让其支持 bmlocalremote url、以及读取本地相册的图片bmImage.pick()方法,或者是拍照的图片bmImage.camera()方法,加油