The CGContextRef opaque type represents a Quartz 2D drawing destination.

learn more… | top users | synonyms

1
vote
1answer
28 views

Context errors in CABasicAnimation animation

I have the stroke animation: - (void)drawBezierAnimate:(BOOL)animate { UIColor* color = [UIColor colorWithRed: 1 green: 0.562 blue: 0.343 alpha: 1]; UIBezierPath *bezierPath = [self bezierPath]; ...
0
votes
0answers
25 views

Drawing movable shapes

I am trying to develop a drawing app on iOS, drawing features are drawing a line, straight lines and shapes (square & ellipses). I can draw them by using CGContext CGContextMoveToPoint, ...
0
votes
2answers
34 views

UIImage remove some pixels issue

I have the application where user can erase image. So if user touches some px of the image, alfa of these pixels should become lower. For instance, if I touched (0,0) pixel of the image one time, ...
1
vote
0answers
17 views

UIView can't move after masking image

I have a UIView with a UIImage property. I am masking that image and adding it to the UIView. Once I have clipped the mask to the image my gestures no longer work. Masking Code: CGContextRef ctx = ...
2
votes
1answer
25 views

How do I draw into a bitmap without antialiasing/interpolation in iOS?

I'm trying to programmatically draw into a UIImage like so: - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. ...
2
votes
0answers
17 views

Dotted Line for PDF Rendering in iOS

I wont to know how to render a dotted line on a pdf. CGContextRef currentContext = UIGraphicsGetCurrentContext(); CGContextSetStrokeColorWithColor(currentContext, [UIColor grayColor].CGColor); ...
0
votes
1answer
41 views

How to draw inside a layer and add to context only after [viewLayer addSublayer:newLayer]?

The question How do you create a separate context for your layer and incorporate that context into super layer? Why I want to do this I want abstract the drawing of a view layers into separate ...
0
votes
2answers
24 views

Image rotating left when taking picture with iPad

In the application I'm working at you can take a picture with the iPad camera. After that using CoreGraphics you can draw shapes on that image. At first the image was upside down and mirrored. I ...
1
vote
3answers
48 views

Drawing a polygon with one color for stroke, and a different one for fill?

I'm having trouble with drawing some lines that are stroked with a color and then filling their insides (they make a polygon) with another one. UIColor *houseBorderColor = [UIColor ...
0
votes
0answers
26 views

Retain the image loaded on canvas from photoalbum on click of Undo button

I am working on drawing in IOS using coregraphics, So I draw an image on canvas and store in a photo ablum, later I load the same drawn image from photo Album on canvas using this piece of code ...
0
votes
1answer
17 views

CGContext does not retain rendered lines

I have a drawRect implementation: - (void)drawRect:(CGRect)rect { CGContextRef ctx = UIGraphicsGetCurrentContext(); if (self.colorToRender) { ...
0
votes
0answers
19 views

core graphics text clipping

I have the following code working that draws a white rectangle and clips it the string "TEXT". CGContextSaveGState(c); CGContextTranslateCTM(c, 0.0f, rect.size.height); CGContextScaleCTM(c, 1.0f, ...
0
votes
0answers
24 views

Gauge/Meter view using drawrect in Xcode

how to draw a gauge/meter view using drawrect which is stretched in width and reduced in height in Xcode application??? currently i am using radius in cgcontextaddarc to draw the gauge/arc. But i am ...
0
votes
1answer
31 views

Apple Mach-O Linker Error with CGContext

This error is driving me crazy, any idea? Undefined symbols for architecture armv7s: "_CGContextConcatCTM", referenced from: -[PopoViewController onClick:] in PopoViewController.o ...
0
votes
0answers
61 views

UIImage rotation and orientation issue

I'm using standart code to rotate image, but when UIImageRotatation is not equal to 2, the image is rotated not correctly. Any code to fix UIImageRotation and rotate image by X degrees? Try nearly ...
0
votes
0answers
19 views

CALayer render ontop of subview

I'm creating an custom UIView which uses the CALayerDelegate. I'm creating a view and put a little glossy style ontop. In my -initWithFrame: method I'm also putting UILabels as subviews into my view. ...
0
votes
1answer
108 views

Scaling down an iPhone camera roll image results in unexpected artifacts

I am scaling down camera roll images and they are showing artifacts. Sample images: CGSize s = CGSizeMake(320, 320); UIImage *scaledImage = [picture ...
1
vote
2answers
57 views

kCGTextStroke's Fill and Stroke aren't positioned correctly

So I'm using the code below to apply a stroke (and fill) to text in a UILabel, and it's coming out like the image below. The stroke is heavier on one side than the other (look at the top of the ...
1
vote
2answers
67 views

After rotation border of image is getting fuzzy ios

While developing a photography based app i need to rotate an image. But after rotating an image it's border gets fuzzy. i have attached screen shot of this.. As you can see first image looks good ...
1
vote
1answer
89 views

iOS - Drawing efficiency (update on slider change)

I am colouring an image on iOS. I am using a slider to select the colour. When I have "Update Events" on the slider set to continuous, the function that gets called is getting called a lot (the ...
0
votes
1answer
42 views

iOS - Color an image multiple times from original source

I have a slider and I want to make an image brighter or darker depending on the slider value. At the moment I have a greyscale image and I have colored it red on viewDidLoad. When my slider's value is ...
0
votes
1answer
146 views

iOS 6 - MPMoviePlayerViewController generates CGContext errors and is stuck on 'Loading…'

Was working fine earlier, but for some reason I am getting all these issues. The URL is correct and is for an MP4 file. Code: [movieView.moviePlayer setContentURL:videoLink]; [movieView.moviePlayer ...
0
votes
2answers
131 views

cgcontext rotate rectangle

guys! I need to draw some image to CGContext.This is the relevant code: CGContextSaveGState(UIGraphicsGetCurrentContext()); CGContextRef ctx = UIGraphicsGetCurrentContext(); CGRect rect = r; ...
0
votes
1answer
27 views

Generating hi-resolution image from transformed UIImageViews

I have been getting a trouble to generate hi-resolution image from transformed UIImageViews. I have a canvas view that contains several views transformed by user fingers. So I try to render the image ...
0
votes
0answers
53 views

draw image to CGContextRef and rotate it when do not change the CTM of previous path?

I already draw some path on the context.And I want to display a image on it and rotate the image.When I set the CTM the context is all rotating.That's not my purpose.I want to display a image and ...
0
votes
1answer
91 views

Apple iOS BreadCrumb Example CGPath Route and Gradient

I'm using the "Apple iOS Breadcrumb" example to create a route with CGPath's, i know that each CGPath joined create my route, and, each CGPath use the CGContextSetRGBStrokeColor to fill the ...
0
votes
0answers
62 views

How to draw a smooth edges circle in ios

Hi in my application i have to draw a circle on view. For that i used below code CGContextRef contextRef = UIGraphicsGetCurrentContext(); CGContextSetLineWidth(contextRef, 2.0); ...
2
votes
1answer
91 views

CGLayerCreateWithContext CGContext leak

Why is this leak occurring? I very much dislike the idea of asking a question that's very specific and unlikely to help very many other people but after hours of scratching my head I'm left with no ...
0
votes
1answer
37 views

Variable size of CGContext

I'm currently using a UIGraphicsBeginImageContext(resultingImageSize); to create an image. But when I call this function, I don't know exactly the width of resultingImageSize. Indeed, I developed ...
0
votes
1answer
96 views

circle mask effect

I use this code to made a circle mask effect: CGContextRef context = CGBitmapContextCreate(NULL, self.bounds.size.width, self.bounds.size.height, 8, 4 * self.bounds.size.width, ...
1
vote
0answers
147 views

Advice with optimizing -drawRect: method

    I want to draw 31 circles with different stroke width. It seems to me that I can not reuse it, because I can not scale it, all circles have different options. These views are not static and when I ...
0
votes
2answers
137 views

UIGraphicsGetCurrentContext and UIScrollView

I'm trying to save all of the contents of a UIScrollView to a .pdf. I found some tutorials for saving the current view, and they all rely on creating a CGContextRef using ...
3
votes
1answer
237 views

CGContextSaveGState vs UIGraphicsPushContext

There are two drawRect methods: - (void)drawRect:(CGRect)rect { CGContextRef context = UIGraphicsGetCurrentContext(); CGContextSaveGState(context); // do drawing here ...
0
votes
1answer
131 views

Converting pdf to png in iOS results in substantially lower appearance quality

I am converting a pdf file to png image so I can add text to the png then convert back to a pdf. I am using the code below to convert to the png. This is resulting in a substantial decrease in the ...
1
vote
2answers
113 views

Monotouch - Display a series of images (too slow)

I need to display a series of images as an animation in iOS (using Monotouch). Using 800x600 size images the fastest I can get them to display on my iPad 3 is 160ms (6.25 fps). I would like this to be ...
0
votes
1answer
95 views

Monotouch - Correcting upside down image rotation

I have been using mono for a short while and one of the issues I came upon was that loading an image into a CGImage object would end up with the image being flipped vertically. This was the code I was ...
2
votes
1answer
292 views

Best way to draw circle on top of UIImageView IOS

I have a UIImageView that shows a picture the user has just taken with the camera. On that image i need to draw a transparent movable circle thats a set size. So when the user drags their finger over ...
1
vote
1answer
149 views

Drawing pattern with UIImage not like pattern but it is filled UIImage in UIView

My line of code: UIColor *brushPattern=[[UIColor alloc]initWithPatternImage:[UIImage imageNamed:@"Frame-1@2x.png"]]; ...
1
vote
4answers
357 views

Drawing with with blur effect on image using opengl

I have the same requirement as this question I am right now at situation where i set UIImage on my opengl view. Below is the complete code i used to set uiimage. Also it includes the drawing code. ...
1
vote
0answers
102 views

Turning a freehand drawing in a UIImageView into a mask

I am making an app that let's the user draw over an object/person in a image which I then want to act as a mask in order to blur the background of the image. I am using the following code to allow ...
0
votes
2answers
252 views

In UIViewController's code, [self.subViewGrid setNeedsDisplay] not calling -drawRect

I have an iPad app, using Storyboards, XCode 4.6 and iOS 6.1. I have a scene that contains a UIViewController. Inside that UIViewController, I have a UIScrollController, all created using IB. ...
0
votes
2answers
77 views

Gradient border in Cocoa?

How to set a border color as gradient? Let's say I want it from black to white. [layer setBorderColor: <some gradient object>]? [layer setBorderColor: UIColor[graident..].CGcolor]?
1
vote
4answers
302 views

Get alpha channel from UIImage rectangle

Given a CGRect (rect) and a UIImage (image), how do you obtain the alpha values (only) of the image pixels in the rectangle? The following code always returns 0 alpha, no matter the image or ...
1
vote
1answer
162 views

How can I use Core Graphics to draw a circle at my touch location?

New programmer here. I am having issues trying to use Core Graphics to draw a stroked arc around my touch location. I have the method to draw the circle working fine, and I have tested and am ...
-1
votes
4answers
431 views

How to draw text in UIView after -drawRect has been called

I have an iPad app, XCode 4.5, iOS 6.1 and Storyboards. I have a UIView, with two (2) UIViews embedded in it. The first UIView (called Calendar) is on the top half, and the second UIView (called ...
6
votes
2answers
294 views

Put border around partially transparent Image being drawn on CGContext

I have an image with a yellow vase in the foreground and transparent background: I'm drawing it on a CGContext: CGContextDrawImage(context, CGRectMake(0, 0, 100, 100), myImage.CGImage); I can ...
1
vote
3answers
74 views

Need a solution to combine an amount of images one by one on the screen

I have thousand of small images. I need to combine them into a big image one by one dozens at the same time and live on the screen. The user should be capable watch the small image shown one by one ...
0
votes
1answer
290 views

How to put CGContextScaleCTM and CGContextTranslateCTM outside of drawRect?

I am rather beginner at this kind of path drawing, but when displaying a map, I realised that CGContextScaleCTM and CGContextTranslateCTM take up a lot of time inside my drawRect. That would be good ...
0
votes
3answers
77 views

Undo CGContext lines

I know this kind of post was asked a lot of time, but I searched a lot on Google and on this site too, without finding any solution, that's why I'm posting this question. I would like to undo my ...
0
votes
1answer
173 views

Showing text with CGContextShowTextAtPoint draws strange text

I'm just trying to overlay a text in a UIImage (using CGContext) but it doesn't show the text I specified. In this code I'm giving as the text argument "Hello" but it shows "eÉääc". I don't know ...

1 2 3 4 5 10