- (IBAction)uploadButton:(id)sender { UIImage *image = [UIImage imageNamed:@"1.jpg"]; NSData *imageData = UIImageJPEGRepresentation(image, 0.5); NSStr ...
分类:
Web程序 时间:
2016-11-17 00:47:54
阅读次数:
180
1.uiscrollview 设置背景图片 // Setup the Scroll ViewUIScrollView*tempScrollView=(UIScrollView*)self.view;tempScrollView.contentSize=CGSizeMake(320,720); // ...
分类:
移动开发 时间:
2016-11-15 14:09:00
阅读次数:
193
1. 使用资源文件夹导入并管理图片素材 /* *资源文件夹可以方便您进行图片管理,在读取图片时,不需要加上图片名的后缀.同时还可以提高软件的安全性,它会讲图片都加密压缩, *并保存到 Assets.car文件中. */ //创建一个图像类,用于加载和绘制图像. let img = UIImage(n ...
分类:
移动开发 时间:
2016-11-14 07:51:32
阅读次数:
273
ios 找出导航栏下面的黑线(可隐藏,改变样式等) http://www.jianshu.com/p/effa4a48f1e3 设置UIImage的渲染模式:UIImage.renderingMode http://blog.csdn.net/djxiaoyu_haha/article/detail ...
分类:
移动开发 时间:
2016-11-11 20:08:43
阅读次数:
238
文字与图片 UIImage *image = self.showedImageView.image; //获取一张图片 UIGraphicsBeginImageContext(image.size); //开启上下文 [image drawInRect:CGRectMake(0, 0, w, h)] ...
分类:
其他好文 时间:
2016-11-10 13:50:35
阅读次数:
208
前言 前几天我们项目组的群里提了这么一件事情:在我们的应用中存储动态的GIF图到相册,保存的图片变成了静态图片。而微博则能正确保存,可见这并不是一个技术不可实现的。前不久刚好看了苹果关于ImageIO框架的指南,借着这个契机,我就去调研调研其中的原委。 使用UIImage读取GIF图片的不足 UII ...
分类:
移动开发 时间:
2016-11-07 10:05:05
阅读次数:
245
+ (UIImage *)imageWithCaputureView:(UIView *)view { // 开启位图上下文 UIGraphicsBeginImageContextWithOptions(view.bounds.size, NO, 0); // 获取上下文 CGContextRef ...
分类:
移动开发 时间:
2016-11-05 12:17:38
阅读次数:
142
- (void)clipImage { // 0.加载图片 UIImage *image = [UIImage imageNamed:@"阿狸头像"]; // 1.开启位图上下文,跟图片尺寸一样大 UIGraphicsBeginImageContextWithOptions(image.size, ...
分类:
移动开发 时间:
2016-11-05 11:24:21
阅读次数:
231
NSString*starsPath=[[NSBundlemainBundle]pathForResource:@"star"ofType:@"png"];UIImage*theImage=[[UIImagealloc]initWithContentsOfFile:starsPath];theImage=[theImagep_w_picpathWithRenderingMode:UIImageRenderingModeAlwaysTemplate];stars.tintColor=[UIColororange..
分类:
其他好文 时间:
2016-10-25 19:49:39
阅读次数:
167
四种容错格式的尺寸:27、31、31、35. // 5、将CIImage转换成UIImage,并放大显示 UIImage *imagex = [UIImage imageWithCIImage:outputImage]; NSLog(@"%f", imagex.size.height); 因为生成的 ...
分类:
移动开发 时间:
2016-10-25 01:52:43
阅读次数:
253