http://blog.fuckbugs.me/category/ios///CatchImage.h#import@interfaceCatchImage:NSObject/**videoURL:视频地址(本地/网络)*time:第N帧*/+(UIImage*)thumbnailImageForV...
分类:
其他好文 时间:
2014-08-21 22:37:34
阅读次数:
276
在开发当中,可能很多时候都需要做个点赞的需求,如果用按钮实现,按钮作为一个系统复合控件,外部是一个 View--》UIControl的容器,
内部包含了UILabel和UIImage,以及一些排版规则。用UIButton就很难去做一些在“赞”和“取消赞”切换时的效果。
可是我们又很需要UIButton似的事件响应机制。
怎么办?
对! 就是使用UIControl。
UIControl在这...
分类:
移动开发 时间:
2014-08-21 17:18:05
阅读次数:
313
解决问题:按照某一长宽比例,剪裁图片的上部和下部,保留中间的内容。当然也可以自定义需要剪裁留下的区域
前提:需要添加Framework:CoreGraphics.framework
代码:
- (UIImage*) crop:(UIImage*)theImage{
// Get size of current image
CGSize size = [theImage siz...
分类:
移动开发 时间:
2014-08-21 00:15:43
阅读次数:
189
解决问题:将两个图像拼接在一起
源码:
- (UIImage *) combine:(UIImage*)leftImage :(UIImage*)rightImage {
CGFloat width = leftImage.size.width * 2;
CGFloat height = leftImage.size.height;
CGSize offScreenSi...
分类:
移动开发 时间:
2014-08-21 00:15:23
阅读次数:
227
解决问题:将图像模糊
前提:添加 CoreGraphics.framework
源码:
- (UIImage*) blur:(UIImage*)theImage
{
// create our blurred image
CIContext *context = [CIContext contextWithOptions:nil];
CIImage *inputIma...
分类:
移动开发 时间:
2014-08-21 00:14:03
阅读次数:
232
-(UIImage *)MergeTwoImage
{
UIImage * img =[UIImage imageNamed:@"icon"];
CGSize sz = img.size;
UIGraphicsBeginImageContextWithOptions(CGSizeMake(sz.width*2, sz.height), NO, 0);
[img dr...
分类:
其他好文 时间:
2014-08-19 20:58:15
阅读次数:
222
ios pageControl控件没有点颜色的设置,一开始自己还不信,就一个颜色属性修改,苹果不会这么坑吧,做了很多东西你就会慢慢发现苹果就是这样抗,很多功能得自己去完善。本来在网上找了些资料都是将pageControl的点当做成一个UIImage,本人用的是xcode5.2调试发现,pageCon...
分类:
移动开发 时间:
2014-08-19 18:30:05
阅读次数:
284
1、将图片方向旋转为up方向-(UIImage *)rotateImage:(UIImage *)aImage{ CGImageRef imgRef = aImage.CGImage; CGFloat width = CGImageGetWidth(imgRef); CGF...
分类:
其他好文 时间:
2014-08-18 14:27:52
阅读次数:
144
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"icon.png"]]; // 会缓存图片UIImageView *imageView= [[UIImageView alloc] in...
分类:
其他好文 时间:
2014-08-18 12:11:54
阅读次数:
232
Problem:How to create a layer that looks like your notification center's or control center's backgroundSolution:Using UIImage+ImageEffects to Create a...
分类:
移动开发 时间:
2014-08-14 16:31:38
阅读次数:
253