码迷,mamicode.com
首页 > 移动开发 > 详细

iOS-image图片旋转方向

时间:2019-11-28 13:45:17      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:contex   rac   comm   cal   get   左右   需要   sso   ddl   

https://blog.csdn.net/qq_36557133/article/details/85760469

最近在做项目的时候发现资源包内的图片的方向不对,但也不想让UI切一个新图,所以需要将原有的图片改变其方向。

UIImage *backImage = [UIImage imageNamed:@"图片名字"];

//改变该图片的方向
backImage = [UIImage imageWithCGImage:backImage.CGImage
scale:backImage.scale
orientation:UIImageOrientationDown];
以下是图片方向的选择(添加了一些个人理解):

UIImageOrientationUp, // 默认方向
UIImageOrientationDown, // 让默认方向旋转180度
UIImageOrientationLeft, // 让默认方向逆时针旋转90度
UIImageOrientationRight, // 让默认方向顺时针旋转90度
UIImageOrientationUpMirrored, // 默认方向的竖线镜像
//(即以原图的左(或右)边的竖线为对称轴,对原图进行对称投影得到的镜像)
UIImageOrientationDownMirrored, // 让镜像旋转180度
UIImageOrientationLeftMirrored, // 让镜像逆时针旋转90度
UIImageOrientationRightMirrored, // 让镜像顺时针旋转90度
————————————————
版权声明:本文为CSDN博主「靠近星星的太阳」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_36557133/article/details/85760469

IOS 如何让button内的image旋转

https://blog.csdn.net/yangjinchao/article/details/51628561

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。 
本文链接:https://blog.csdn.net/yangjinchao/article/details/51628561

 

 

 

//

 

 

// JCAllBuyViewController.m

 

  1. //

    //  JCAllBuyViewController.m

    //  09-彩票-空工程

    //

    //  Created by panba on 16-6-2.

    //  Copyright (c) 2016年 panba. All rights reserved.

    //

     

    #import "JCAllBuyViewController.h"

    #import "JCAllCaiZhongButton.h"

     

    @interface JCAllBuyViewController ()

    @property (nonatomic,assign,getter=isOpen) BOOL  open;

    @end

     

    @implementation JCAllBuyViewController

     

    - (instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil

    {

        self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];

        if (self) {

            // Custom initialization

        }

        return self;

    }

     

    - (void)viewDidLoad

    {

        [super viewDidLoad];

        // Do any additional setup after loading the view.

    //    self.title = @"合买跟单";

        //1-添加一个button

        JCAllCaiZhongButton *btn = [[JCAllCaiZhongButton alloc]init];

        btn.frame = CGRectMake(120, 0, 100, 44);

        [btn setTitle:@"全部彩种" forState:UIControlStateNormal];

        [btn setImage:[UIImage imageNamed:@"YellowDownArrow.png"] forState:UIControlStateNormal];

        [btn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

        [btn addTarget:self action:@selector(btnClicked:) forControlEvents:UIControlEventTouchUpInside];

        [self.navigationController.navigationBar addSubview:btn];

    }

     

    //2-设置小三角旋转的事件

    -(void)btnClicked:(UIButton *)titleBtn

    {

        if (!self.isOpen) {

            [UIView animateWithDuration:1 animations:^{

                titleBtn.imageView.transform = CGAffineTransformMakeRotation(M_PI);

            }];

            self.open = YES;

        }

        else

        {

            [UIView animateWithDuration:1 animations:^{

                titleBtn.imageView.transform = CGAffineTransformIdentity;

            }];

            self.open = NO;

        }

    }

     

     

     

    @end

    ————————————————

    版权声明:本文为CSDN博主「Y型树杈子」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。

    原文链接:https://blog.csdn.net/yangjinchao/article/details/51628561

iOS 图片左右反转 反向

http://blog.csdn.net/xyxjn/article/details/37902609

 

方法1

_imageView.transform = CGAffineTransformMakeScale(-1, 1);

弊端:和大小变化等动画不兼容

 

方法2

 

[objc] view plain copy
 
 技术图片技术图片
  1. //  
  2. //  GYFlipLayer.h  
  3. //  imageFlipDemo  
  4. //  
  5. //  Created by sun on 14-7-17.  
  6. //  Copyright (c) 2014年 sun. All rights reserved.  
  7. //  
  8.   
  9. #import <QuartzCore/QuartzCore.h>  
  10.   
  11. @interface GYFlipLayer : CALayer  
  12.   
  13. - (id)initWithLayer:(CALayer *)layer;  
  14.   
  15. @end  

[objc] view plain copy
 
 技术图片技术图片
  1. //  
  2. //  GYFlipLayer.m  
  3. //  imageFlipDemo  
  4. //  
  5. //  Created by sun on 14-7-17.  
  6. //  Copyright (c) 2014年 sun. All rights reserved.  
  7. //  
  8.   
  9. #import "GYFlipLayer.h"  
  10.   
  11. @interface GYFlipLayer()  
  12.   
  13. @property (strong, nonatomic) CALayer *reflectedLayer;  
  14.   
  15. @end  
  16.   
  17.   
  18. @implementation GYFlipLayer  
  19.   
  20. - (id)initWithLayer:(CALayer *)aLayer  
  21. {  
  22.     self = [super init];  
  23.       
  24.     if (self)  
  25.     {  
  26.         self.needsDisplayOnBoundsChange = YES;  
  27.         self.contentsScale = aLayer.contentsScale;  
  28.           
  29.         _reflectedLayer = aLayer;  
  30.         self.name = [NSString stringWithFormat:@"reflectionLayer%@", aLayer.name];  
  31.           
  32.         [self udpateFrame];  
  33.     }  
  34.       
  35.     return self;  
  36. }  
  37.   
  38. - (void)udpateFrame {  
  39.     CGRect frame = _reflectedLayer.bounds;  
  40.     self.frame = frame;  
  41. }  
  42.   
  43.   
  44. - (void)drawInContext:(CGContextRef)ctx  
  45. {  
  46.     CGContextSaveGState(ctx);  
  47.     CGContextSetInterpolationQuality(ctx, kCGInterpolationNone);  
  48.     CGContextTranslateCTM(ctx, self.reflectedLayer.frame.size.width, 0);  
  49.     CGContextScaleCTM(ctx, -1.f, 1.f);  
  50.       
  51.     [self.reflectedLayer renderInContext:ctx];  
  52.       
  53.     CGContextRestoreGState(ctx);  
  54. }  
  55.   
  56. @end  

调用

 

 

[objc] view plain copy
 
 技术图片技术图片
  1. - (IBAction)flipImage:(id)sender {  
  2.     GYFlipLayer *rLayer = [[GYFlipLayer alloc] initWithLayer:_imageView.layer];  
  3.     [_imageView.layer addSublayer:rLayer];  
  4. }

 

 

 

 

 

 

 

 

 

 

iOS-image图片旋转方向

标签:contex   rac   comm   cal   get   左右   需要   sso   ddl   

原文地址:https://www.cnblogs.com/sundaysgarden/p/11948949.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!