Html有没有源码可以自动获取手机相册
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Html有没有源码可以自动获取手机相册相关的知识,希望对你有一定的参考价值。
打开网页后,能自动获取手机相册的全部照片,自动将全部照片上传到Web服务器的指定文件夹,能够将手机的相册完全的备份上去!不用点什么按钮!打开就上传那种!急用!需要完整的源码,如有大神弄得了,弄好私聊加我,另给辛苦费!
参考技术A html5 可以要从Canvas获取图片数据,其核心思路是用canvas的toDataURL将Canvas的数据转换为base64位编码的PNG图像
var imgData=canvas.toDataURL(“image/png”);
imgData格式如下:
”data:image/png;base64,xxxxx“
真正图像数据是base64编码逗号之后的部分
可以试一下本回答被提问者和网友采纳
iOS开发——打开手机相册,获取图片
1.添加代理UIImagePickerControllerDelegate
2.设置点击跳转事件
- (IBAction)picButton:(UIButton *)sender {
NSLog(@"我的相册");
if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary]){
//a.初始化相册拾取器
UIImagePickerController *controller = [[UIImagePickerController alloc] init];
//b.设置代理
controller.delegate = self;
//c.设置资源:
/**
UIImagePickerControllerSourceTypePhotoLibrary,相册
UIImagePickerControllerSourceTypeCamera,相机
UIImagePickerControllerSourceTypeSavedPhotosAlbum,照片库
*/
controller.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
//d.随便给他一个转场动画
controller.modalTransitionStyle=UIModalTransitionStyleFlipHorizontal;
[self presentViewController:controller animated:YES completion:NULL];
}else{
UIAlertView * alert = [[UIAlertView alloc]initWithTitle:@"提示" message:@"设备不支持访问相册,请在设置->隐私->照片中进行设置!" delegate:nil cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];
[alert show];
}
}
3.获取图片
#pragma mark-> imagePickerController delegate
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
//a.获取选择的图片
UIImage *image = info[UIImagePickerControllerOriginalImage];
self.imageView.image = image;
}
以上是关于Html有没有源码可以自动获取手机相册的主要内容,如果未能解决你的问题,请参考以下文章