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

learn more… | top users | synonyms

7
votes
1answer
146 views

Contex Drawing + Pagination

I am trying to draw contents of scrollview into a PDF context. I am facing problem with pagination. Following Code: - (void)renderTheView:(UIView *)view inPDFContext:(CGContextRef)pdfContext { ...
6
votes
4answers
1k views

How would I draw something like this in Core Graphics

I want to be able to draw using this as my stroke. How would I do this as efficient as possible, and on the fly drawing, I was thinking CGPatternRef, but I really don't know how to do that. Edit: It ...
5
votes
1answer
77 views

object rotation is not proper - iPhone application

I am facing a typical problem in rotating an object. Description is as given below I have taken two CGPoint let say point1 and point2 point1 = (50,50) point2 = (150, 50) this point will draw a ...
5
votes
2answers
968 views

Create a UIImage by rendering UIWebView on a background thread - iPhone

Does someone know of a way, or has a creative idea as to how to obtain an UIImage that is rendered from a UIWebView? The catch is, that is must be on a background thread. I'll elaborate: I'm trying ...
5
votes
4answers
5k views

Setting A CGContext Transparent Background

I am still struggling with drawing a line with CGContext. I have actually go to line to draw, but now I need the background of the Rect to be transparent so the existing background shows thru. ...
4
votes
2answers
391 views

How to get rid of this “points” between my lines when I am drawing?

is there an easy way to not draw this points in my lines? I don't know why this points are there because i never release my finger from screen during drawing of a line. I got the code from a drawing ...
4
votes
1answer
1k views

iOS: 2 Step Image Processing with CoreGraphics

Using CoreGraphics (inside my drawRect method), I'm trying to apply a blend mode to an image (transparent png), and then adjust the alpha of the result. I'm assuming that this needs to be done in two ...
4
votes
1answer
3k views

Drawing in CATiledLayer with CoreGraphics CGContextDrawImage

I would like to use a CATiledLayer in iPhone OS 3.1.3 and to do so all drawing in -(void)drawLayer:(CALayer *)layer inContext:(CGContext)context has to be done with coregraphics only. Now I run into ...
4
votes
2answers
2k views

Create new UIImage by adding shadow to existing UIImage

I've taken a look at this question: http://stackoverflow.com/questions/962827/uiimage-shadow But the accepted answer didn't work for me. What I'm trying to do is take a UIImage and add a shadow to ...
4
votes
3answers
6k views

CGBitmapContextCreate on the iPhone/iPad

I have a method that needs to parse through a bunch of large PNG images pixel by pixel (the PNGs are 600x600 pixels each). It seems to work great on the Simulator, but on the device (iPad), i get an ...
4
votes
3answers
4k views

Drawing triangle/arrow on a line with CGContext

I am using the framework of route-me for working with locations. In this code the path between two markers(points) will be drawn as a line. My Question: "What code should I add if I want to add an ...
4
votes
1answer
2k views

Flatten UIViews Subviews to UIImage iPhone 3.0

I have a UIView that has several UIImageViews as subviews. Each of these subviews has had different affine transform applied. I would like to take what amounts to a screen capture of my UIView, ...
3
votes
2answers
88 views

How to render UIView into 2 parts

I am trying to develop transition effect, when one view splits into 2 parts with upper part animated upwards and lower part animated downwards to revel the view behind it. I am using UIView and ...
3
votes
1answer
183 views

Colourise CGContextRef But Preserve Alpha

I have a CGContextRef and can draw on it and specify the alpha, and if I try and use it it works perfectly. However, I am trying to colourise it (currently either red or green), but whatever blend ...
3
votes
1answer
146 views

How to draw a PDF to a CGContext with a higher resolution?

I wrote a view to render a PDF Page: -(UIPDFRenderView*) initWithFrame:(CGRect)frame withDocument:(CGPDFDocumentRef*)document withPageNumber:(int)pageNumber { if (self) { ...
3
votes
3answers
918 views

Drawing Hollow circle in iPhone

i need to draw the following image The Gray part is what i want to draw over another image what is the Code i need to use using CGContext methods, i tried using the CGContextAddArc but failed ...
3
votes
0answers
909 views

Saving CGContextRef

I have a drawing app in which I would like to create an undo method. The drawing takes place inside the TouchesMoved: method. I am trying to create a CGContextRef and push it to the stack OR save it ...
3
votes
2answers
574 views

How to save an image using UIImageWriteToSavedPhotosAlbum after it is transformed

Ok I have searched all over and I can't not seem to find the answer I need. :-( Here is what I am doing and what I need to happen. I have a UIImageView that I am able to transfrom using ...
3
votes
1answer
384 views

Find text in pdf file

How can I extract text from a PDF file using the iPhone SDK and Objective C? I have successfully read the PDF file, so does anyone have an idea how I can implement this functionality?
3
votes
2answers
820 views

How to erase part of an image as the user touches it

My big picture goal is to have a grey field over an image, and then as the user rubs on that grey field, it reveals the image underneath. Basically like a lottery scratcher card. I've done a bunch ...
3
votes
1answer
1k views

How can I tell when a UIWebView has finished drawing to a context?

In my code I'm trying to show a UIWebView as a page is loading, and then, when it's done, capture an image from the web view to cache and display later (so I don't have to reload and render the web ...
3
votes
2answers
2k views

Core Graphics Rotating a Path

This should be a simple one, basically I have a few paths drawn with core graphics, and I want to be able to rotate them (for convenience). I've tried using CGContextRotateCTM(context); but it's not ...
3
votes
2answers
4k views

Simple iPhone drawing app with Quartz 2D

I am making a simple iPhone drawing program as a personal side-project. I capture touches event in a subclassed UIView and render the actual stuff to a seperate CGLayer. After each render, I call ...
3
votes
1answer
3k views

Filling a shape with a gradient in CGContext

I want to fill a polygon shape that I have drawn via Core Graphics with a linear CGGradient. The CGContextDrawLinearGradient function draws a gradient from one point to another but it fills the ...
2
votes
3answers
106 views

drawRect drawing 'transparent' text?

I am looking to draw a UILabel (preferable through subclassing) as a transparent label, but with solid background. I draw up an quick example (sorry, it's ugly, but it gets the points across :)). ...
2
votes
2answers
64 views

How can I create and use an image larger than the screen resolution?

I'm trying to render a bitmap to save to the user's photos album that has to be higher resolution than the 320x480 iPhone screen (but still within iOS memory limitations). However, using this code to ...
2
votes
1answer
248 views

‘invalid context 0x0’ error when using CGContext* functions

/* Adding the Path */ UserGraphBuff = UIGraphicsGetCurrentContext(); CGContextSetRGBStrokeColor(UserGraphBuff,5,10,0,1); CGContextSetLineWidth(UserGraphBuff, 2 ); CGContextBeginPath(UserGraphBuff); ...
2
votes
1answer
83 views

how to make dashed line moveable

I used codes below to draw a dashed line // get the current CGContextRef for the view CGContextRef currentContext = (CGContextRef)[[NSGraphicsContext currentContext] graphicsPort]; // ...
2
votes
1answer
336 views

CALayer vs CGContext, which is a better design approach?

I have been doing some experimenting with iOS drawing. To do a practical exercise I wrote a BarChart component. The following is the class diagram (well, I wasnt allowed to upload images) so let me ...
2
votes
1answer
297 views

iOS drawing with CGContextStrokePath() lagging/crashing when drawing while zoomed in

Rundown of Problem I an iPad app with a UIImageView inside of a UIScrollView. I want the user to be able to draw on-top of the UIImageView by using a stylus and/or their finger. I have it working ...
2
votes
1answer
144 views

Static background for CGContext

this is my first question here, so hello everyone. I have spent some time now wrapping my mind around the following problem and could not come up with a solution. I'd be happy if someone could point ...
2
votes
2answers
204 views

How to erase Drawing Lines on UIView

I drew a line on UIView. It's working properly. I did the same thing as described here : [question]:http://stackoverflow.com/questions/2595446/drawing-an-image-is-completely-out And now I need to ...
2
votes
1answer
129 views

Draw Radials from center of ellipse in Quartz

I am attempting to draw radials from the center of an ellipse in quartz. CGContextSetRGBStrokeColor(ctx, 0.0, 1.0, 1.0, 1.0); //cyan stroke CGContextSetLineWidth(ctx, 2.0); ...
2
votes
1answer
213 views

Drawing to context on background thread

I have a UIView which has to display some information. Since this view is quite complex and the drawing takes a substantial amount of time, I have moved this to a background thread to avoid blocking ...
2
votes
2answers
328 views

Erasing after drawing with CGContext

I'm trying to do a simple drawing app for the iPad where you can draw on a picture, and I'm using CGContext stuff to do it but the way I originally planned on handling erasing was to just draw over ...
2
votes
1answer
734 views

CGContextSetShadowWithColor: shadow is flipped in UIView

I am developing an iPhone application in which I want set the shadow for the path that I am drawing on UIView's context. Following is the code snippet: CGSize shadowSize = CGSizeMake(-4, -4); ...
2
votes
1answer
448 views

How to render a UIView hierarchy into a CGContext with CoreAnimation composition model

I am trying to render a UIView hierarchy into a CGContext or ultimately a UIImage. Some of the child views have 3D transforms, which renderInContext: ignores along with shadows and some other CALayer ...
2
votes
2answers
1k views

Why does my CGContext-drawn circle suck?

I have a custom table view cell that is intended to draw a circle like the iPhone’s Mail.app does: Instead, it draws like this: Here’s my code: CGContextRef context = ...
2
votes
1answer
130 views

Getting 0 values for RGB when trying to change pixels in an CGImageRef data

Hi guys I am getting 0 for RGB values in this code. Any idea why? The inImage was created with this CGContext. -(CGContextRef)createBitmapContextWide:(int) pixelsWide Height:(int) pixelsHigh{ ...
2
votes
1answer
2k views

Drawing into CGImageRef

I want to create a CGImageRef and draw points to it. What context to use to create an empty CGImageRef and be able to draw onto it. CGContextRef or CGBitmapContextRef? If you can provide code to ...
2
votes
1answer
463 views

Thread Safe (CG) Version of UIGraphicsGetImageFromCurrentImageContext?

Im trying to render PDF pages to images on a background thread, is there a thread safe way of generating an image from a pdfContext/context that doesn't not use: ...
2
votes
2answers
925 views

Is CGContextAddArc really that slow (compared to a circle drawn with a few lines

Folks, While coding up a few dials and sliders (e.g. like a big volume button one can rotate around) - I found that the standard CGContextAddArc() used like: - (void)drawRect:(CGRect)rect { ...
2
votes
2answers
1k views

CGContextDrawPDFPage displays white or garbled text

In the process of updating my iPad app I've been attempting to draw a page from an existing PDF document into a Core Graphics context then save it as a new PDF, but am having difficulty getting the ...
2
votes
2answers
895 views

Using CGContext to display a sprite sheet iPhone

So I have a spritesheet in png format, and have already worked out the coordinates for what I want to display. I'm trying to create a method that will return a UIImage when passed the location ...
2
votes
2answers
1k views

Quartz Composer in iPhone UIView

I am trying to embed a Quartz Composer document in an iPhone app. I know Quartz Composer support was added in iPhone OS 3.1 (at least, that's what Wikipedia says) but I can't find any good resources ...
2
votes
0answers
850 views

iPhone: How to use CGContextConcatCTM for saving a transformed image properly?

I am making an iPhone application that loads an image from the camera, and then the user can select a second image from the library, move/scale/rotate that second image, and then save the result. I ...
2
votes
1answer
2k views

CGContextSetShadow produces no results

I'm using this code in my UIView subclass to draw a circle with a gradient fill: - (void)drawRect:(CGRect)rect { CGContextRef context = UIGraphicsGetCurrentContext(); CGContextSetShadow ...
2
votes
2answers
2k views

iPhone clear CGContext

I create a circle with a nice shadow with this code (I use MonoTouch.net for iPhone, Objective-C answers are fine of course) UIGraphics.PushContext (ctx); SizeF shadowSize = new SizeF ...
2
votes
1answer
662 views

How to use NSUndoManager with a UIImageView or CGContext

I have an app that uses cgcontext to draw things onto a UIImageView that the user draws using touch events, and I want to be able to undo the drawings made by the user. Edit: I am trying to use my ...
2
votes
3answers
3k views

Iphone CGContextShowTextAtPoint for Japanese characters

I am working on an app where I am using CGContextShowTextAtPoint to display text to the screen. I want to also display Japanese characters, but CGContextShowTextAtPoint takes as its input a C string. ...

1 2 3 4 5