Tagged Questions

0
votes
1answer
24 views

Export CGPath as JPG or PNG

Is it possible to take a path draw in an UIView with CGPath and export it as a PNG?
0
votes
2answers
23 views

Problem with linking QuarzCore

Hello, I am new with Objective C and iPhone development but that is what I am trying to do... Problem is with QuarzCore and basic animation stuff. These lines are from my applicationDelegate: …
0
votes
1answer
22 views

How to save and read a CGLayerRef, in a NSmutableArray

Hello, i have a question about the CGLayerRef "elements" ( because they are not object !) In my app, i want to store a list of CGLayerRef created from bitmaps, for obtain a good framerate on my …
0
votes
1answer
20 views

iPhone Quartz curve jaggy and has dark border

I've got a weird issue with quartz. The first time I run the piece of code below, the line will be drawn like the line to the right in the image. The second time (and every time after) these lines are …
0
votes
1answer
38 views

How do I release this CGPath when I need to return it

I have a method that returns a CGMutablePathRef, something like this: - (CGMutablePathRef)somePath; { CGMutablePathRef theLine = CGPathCreateMutable(); CGPathMoveToPoint(theLine, NULL, 50, …
0
votes
2answers
76 views

IPHONE: memory still allocated after releasing object???

Hi, I have a method for drawing an object offscreen to a file, using quartz. The last lines of this method are: CGRect LayerRect = CGRectMake(mX,mY, wLayer, hLayer); …
0
votes
0answers
8 views

OSX Quartz Event Taps: event types and how to edit events

Here's my code: #import <ApplicationServices/ApplicationServices.h> CGEventRef myCGEventCallback(CGEventTapProxy proxy, CGEventType type, CGEventRef event, void *refcon) { printf("%u\n", …
0
votes
4answers
61 views

IPHONE: CGLayer using 17 times more memory as expected

I have created a 800x1200 context using this line: CGSize sizeX = CGSizeMake(800, 1200); CGLayerRef objectLayer = CGLayerCreateWithContext (context, sizeX, NULL); over this context I have a CGLayer …
0
votes
2answers
77 views

CALayer filters and bounds

Hi, I'm just starting writing some Core Animation code and I've just spent a frustrating day trying to figure out a particular problem. I have two layer-backed views that together make up a wizard/ …
1
vote
1answer
65 views

iPhone: optimized drawing in quartz

I have created a CG context that is 800 pixels wide and 1200 pixels height. I have created CGLayer over this context that has been transformed (scaled, translated and rotated). So, at some point, as …
1
vote
0answers
18 views

Thread Safety Of Custom Sequential CGDataProvider

When creating a custom sequential CGDataProvder to render a custom image format you specify the CGDataProviderSequentialCallbacks that should be used. While doing some optimization work to improve the …
0
votes
0answers
39 views

CATiledLayer blanking tiles before drawing contents

All, I'm having trouble getting behavior that I want from CATiledLayer. Is there a way that I can trigger the tiles to redraw without having the side-effect that their areas are cleared to white …
0
votes
2answers
102 views

Find a point between two point

I two concentric circles on the screen and I want the circle on the inside to move around while the user drags their finger around the outside of the larger circle. This means that I have two point, …
0
votes
3answers
259 views

Where can I find examples of Quartz 2D drawing on the iPhone?

Hi, I am going to develope the 2D game in Iphone using Quartz. what is the main Difference between Quartz and QuartzCore? I have searched a lot over the internet, but only able to find out the MAC …
0
votes
2answers
39 views

Overlaid images

I'm creating an application where I will be drawing two circles onto the screen, one large circle with a smaller circle inside. I want the user to be able to touch/drag on the screen inside or outside …

1 2 3 4 5 10 next
15 30 50 per page