码迷,mamicode.com
首页 >  
搜索关键字:uiimage    ( 1221个结果
【1】【IOS】 截图
1 UIGraphicsBeginImageContext(self.view.bounds.size);// 设置上下文2 3 [self.view.layer renderInContext:UIGraphicsGetCurrentContext()];4 5 UIImage *image=UI...
分类:移动开发   时间:2014-07-10 11:01:17    阅读次数:199
iOS图片模糊效果
增加 CoreImage.framework CoreGraphic.framework 等库在使用时引入:#import ,支持iOS 5.0 及以上。-(void)show{ UIImage* img = [selfgetBlurImage:[UIImageimageNamed:@"Defau....
分类:移动开发   时间:2014-07-09 22:49:37    阅读次数:287
iOS开发项目—07图片拉伸
iOS开发项目—07图片拉伸一、简单说明1.代码说明:图片处理代码:1 + (UIImage *)resizedImage:(NSString *)name2 {3 UIImage *image = [UIImage imageWithName:name];4 return [ima...
分类:移动开发   时间:2014-07-08 22:29:29    阅读次数:321
【iOS】网络加载图片缓存与SDWebImage
加载网络图片可以说是网络应用中必备的。如果单纯的去下载图片,而不去做多线程、缓存等技术去优化,加载图片时的效果与用户体验就会很差。 一、自己实现加载图片的方法 tips: *iOS中所有网络访问都是异步的.(自己开线程去下载) *普通为模型增加UIImage属性的方法做的是内存缓存(下次启动还需要从网络重新加载), 而要做本地缓存的话,还要自己手动存储网络上下载的图片. *为了加...
分类:移动开发   时间:2014-07-08 17:44:24    阅读次数:293
IOS的UITextField,UIButton,UIWebView的一些属性介绍和IOS图片资源的使用技巧
有时候UI给开发的资源跟实际的frame不一致,这个时候我们就要去拉伸图片 UIImage* image = [[UIImage imageNamed:@"text_field_bg.png"] stretchableImageWithLeftCapWidth:20 topCapHeight:0]; //stretchableImageWithLeftCapWidth使图片有拉伸效果 UI...
分类:移动开发   时间:2014-07-05 22:51:09    阅读次数:332
不使用UIImagePickerControllerOriginalImage获取原图
一般用imagePickerController获取到dic以后常用的方法是使用UIImage *image = [dic objectForKey:@"UIImagePickerControllerOriginalImage"];来获取原图,但是我使用这个方法获取到得图片并不是原图,而是尺寸经过压...
分类:其他好文   时间:2014-07-03 19:00:55    阅读次数:649
ios如何在一个UIImageButton的里面加一些自定义的箭头
可以采用如下方法,写一个函数: -(UIImage*) getOneImageButtonWithArrow{ //tmpView做附控件 UIView *tmpView = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 38.0f, 32.0f)]; tmpView.backgroundColor = [UIColo...
分类:移动开发   时间:2014-07-01 09:54:31    阅读次数:246
ios下UIImage相关开发经验总结
iOS下做和UIImage相关功能有段时间,这里总结列下相关经验。1. 基本框架image IO image IO可以通过URL或者dataProvider来生成CGImageSourceRef,然后可以在source上获取第几张图片或者缩略图;根据http://www.mindsea.com/2....
分类:移动开发   时间:2014-06-30 13:00:30    阅读次数:389
UIView 转 UIImage
这个方法很实用,特别是在做水印相机得时候。。。- (UIImage*) imageWithUIView:(UIView*) view{ // 创建一个bitmap的context // 并把它设置成为当前正在使用的context UIGraphicsBeginImageCo...
分类:其他好文   时间:2014-06-27 21:54:28    阅读次数:228
iOS 获取本地视频的缩略图
+(UIImage *)getImage:(NSString *)videoURL{AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:[NSURL fileURLWithPath:videoURL] options:nil];AVAssetIma...
分类:移动开发   时间:2014-06-27 13:15:09    阅读次数:243
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!