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 …
1
vote
1answer
182 views
disabling color correction in quartz 2d
Ok, I know that it's not possible to actually disable color correction in quartz. What I'm looking for is a device-independent color space setting that dosn't change the RGB values I draw in a …
0
votes
1answer
21 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
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
22 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:
…
1
vote
4answers
276 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
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
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 …
1
vote
2answers
457 views
Best way to accomplish this drawing with Quartz 2D / Core Graphics?
As the background for one of the views in my app, I'd like to draw a fairly simple rectangular border just inside its frame. This would essentially be a rectangular gradient: a black line around the …
0
votes
1answer
37 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
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", …
1
vote
1answer
64 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
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
2answers
226 views
How to get transition like Star Trek app?
I've modified the ViewTransitions app to use kCAScrollHorizontally. I've set transition in the app delegate to use kCATransitionPush rather than kCATransitionFade. However, I still get fading in and …
