Rotating graphics for IOS development (86)

Source: Internet
Author: User

1 Preface
Use the CGAffineTransformMakeRotation/CGContextRotateCTM function to create an affine Rotation Transformation.


2. code example
ZYViewControllerView. m

 

[Plain]-(void) drawRect :( CGRect) rect {
/* Create the path first. Just the path handle .*/
CGMutablePathRef path = CGPathCreateMutable ();
/* Here are our rectangle boundaries */
CGRect rectangle = CGRectMake (10.0f, 10.0f, 200366f, 300366f );
/* Add the rectangle to the path */
CGPathAddRect (path, NULL, rectangle );
/* Get the handle to the current context */
CGContextRef currentContext = UIGraphicsGetCurrentContext ();
/* Save the state of the context to revert back to how it was at this state, later */
CGContextSaveGState (currentContext );
// Rotate 45 degrees clockwise
CGContextRotateCTM (currentContext, (45.0f * M_PI)/180.0f );
/* Add the path to the context */
CGContextAddPath (currentContext, path );
/* Set the fill color to cornflower blue */
[[UIColor colorWithRed: 0.20f green: 0.60f blue: 0.80f alpha: 1.0f] setFill];
/* Set the stroke color to brown */
[[UIColor brownColor] setStroke];
/* Set the line width (for the stroke) to 5 */
CGContextSetLineWidth (currentContext, 5.0f );
/* Stroke and fill the path on the context */
CGContextDrawPath (currentContext, kCGPathFillStroke );
/* Dispose of the path */
CGPathRelease (path );
/* Restore the state of the context */
CGContextRestoreGState (currentContext );
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.