0
votes
1answer
23 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
25 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
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
4answers
62 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 …
1
vote
1answer
67 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 …
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
4answers
277 views
iPhone Dev: Pocket God Used Graphic Engine
I want to develop a 2d game. I have to choose from Quartz/CoreGraphics, OpenGL ES or Cocos2D. I'm interested in how the game Pocket God is realized because it fulfills perfectly my needings.
Do you …
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
3answers
266 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
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, …
3
votes
1answer
238 views
Change Screen Resolution in Snow Leopard
I've been plugging away at this for a few hours now, and haven't found a good answer. In Leopard, I can programmatically change the screen resolution using Quartz Display Services with …
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 …
0
votes
1answer
327 views
UIImageWriteToSavedPhotosAlbum save as PNG with transparency?
I'm using UIImageWriteToSavedPhotosAlbum to save a UIImage to the user's photo album. The problem is that the image doesn't have transparency and is a JPG. I've got the pixel data set correctly to …
