修正iOS从照相机和相册中获取的图片 方向   修正iOS从照相机和相册中获取的图片 方向 使用系统相机拍照得到的图片的默认方向有时不是ImageOrientationDown,而是ImageOrientationLeft,在使用的时候会出现图片顺时针偏转90°.使用fixOrientation方法修正这个问题. - (UIImage *)fixOrientation { // No-op if the orientation is already correct if (self.imageO…
- (UIImage *)fixOrientation { // No-op if the orientation is already correct if (self.imageOrientation == UIImageOrientationUp) return self; // We need to calculate the proper transformation to make the image upright. // We do it in 2 steps: Rotate i…
使用系统相机拍照得到的图片的默认方向有时不是ImageOrientationDown,而是ImageOrientationLeft,在使用的时候会出现图片顺时针偏转90°.使用fixOrientation方法修正这个问题. - (UIImage *)fixOrientation { // No-op if the orientation is already correct if (self.imageOrientation == UIImageOrientationUp) return sel…
NSURL *imageRefURL = [info valueForKey:UIImagePickerControllerReferenceURL];                                        ALAssetsLibrary* assetLibrary = [[ALAssetsLibrary alloc] init];                    void (^ALAssetsLibraryAssetForURLResultBlock)(ALAss…
从相册中获取到的视频地址 例如  file:///var/mobile/Media/DCIM/100APPLE/IMG_9876.MOV 后面再使用的时候报错 视频文件不存在  那是因为在ios10.11 设备上需要在请求一次权限 PHVideoRequestOptions *options = [[PHVideoRequestOptions alloc] init]; options.networkAccessAllowed = YES; options.version = PHVideoRe…
一.获取单张图片 思路: 1.利用UIImagePickerController可以从系统自带的App(照片\相机)中获得图片 2.设置代理,遵守代理协议 注意这个UIImagePickerController类比较特殊,需要遵守两个代理协议 @interface ViewController () <UIImagePickerControllerDelegate, UINavigationControllerDelegate> 3.实现代理的方法didFinishPickingMediaWi…
效果:注意:1:网络权限<;;;); intent.putExtra(); ); intent.putExtra(); intent.putExtra(, byteArrayOutputStream); ){ , TimeUnit., TimeUnit., TimeUnit.; ]; ) { fileOutputStream.write(bytes, , len); } ) ? url : url.substring(separatorIndex + , url.length()); retur…
第一步 添加协议 UIImagePickerControllerDelegate,UINavigationControllerDelegate   第二步 添加选择方式 let sexActionSheet = UIAlertController.init(title: nil, message: nil, preferredStyle: .actionSheet) weak var weakSelf = self let sexNanAction = UIAlertAction(title:…
导语: 如今的安卓应用在选择图片的处理上大多合并使用拍照和从相册中选择这两种方式 今天在写一个这样的功能时遇到一个尴尬的问题,同样是拍照获取图片功能,在不同手机上运行的效果不一样,下面是在某型手机上测试的报错结果 错误报告: 10-21 17:41:43.634: E/AndroidRuntime(32683): FATAL EXCEPTION: main 10-21 17:41:43.634: E/AndroidRuntime(32683): java.lang.RuntimeExceptio…
/// <summary> /// 获取资源图片 /// </summary> public class AssemblyHelper { #region 常量 /// <summary> /// 程序集名称 /// </summary> private static string CurrentAssemblyName = Assembly.GetExecutingAssembly().GetName().Name; #endregion #region…