Tagged Questions
Quartz is graphic framework used on Mac OS X. It forms a graphic layer. Term Quartz is used to represent Quartz 2D and Quartz Compositor. Quartz graphic is a 2D renderer in Core Graphics.
24
votes
4answers
12k views
Quartz 2D drawRect method (iPhone)
I've got 4 different iPhone/Cocoa/Core Animation/Objective-C books in front of me, along with numerous sample code from the web. Yet somehow I still feel like I'm missing some fundamental ...
16
votes
2answers
23k views
How do I draw a line on the iPhone?
I am a beginner at iPhone programming, and would like to draw a line to the phone screen for the purpose of study using Quartz and UIKit.
How do I start drawing?
12
votes
4answers
6k views
Retrieving a pixel alpha value for a UIImage
I am currently trying to obtain the alpha value of a pixel in a UIImageView. I have obtained the CGImage from [UIImageView image] and created a RGBA byte array from this. Alpha is premultiplied.
...
11
votes
5answers
2k views
Curve text on existing circle
For an application I am building I have drawn 2 circles. One a bit bigger than the other. I want to curve text between those lines, for a circular menu I am building.
I read most stuff about curving ...
11
votes
4answers
7k views
How to draw a rounded rectangle in Core Graphics / Quartz 2D?
I need to draw an outline for a rounded rectangle. I know I can make lines and arcs, but maybe there is also a function for rounded rects?
10
votes
2answers
1k 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, ...
10
votes
2answers
4k views
How to create a colored 1x1 UIImage on the iPhone dynamically?
I would like to create a 1x1 UIImage dynamically based on a UIColor.
I suspect this can quickly be done with Quartz2d, and I'm poring over the documentation trying to get a grasp of the fundamentals. ...
10
votes
3answers
1k views
Mac OS X: Can one process render to another process's window?
Greetings!
I'm currently porting a web browser plugin from Win32 to MacOSX. One of the features of the plugin is that when the plugin is loaded, it spawns a separate process that serves as the ...
9
votes
2answers
4k views
What are some great Quartz 2D drawing tutorials?
I'm searching for some great Quartz 2D drawing tutorials aimed at the iPhone. I'm new to Quartz and want to start off with something easy and then progress to more difficult stuff.
Does anyone know ...
9
votes
2answers
9k views
iPhone SDK: How do you measure the width and height of a string using Quartz?
Before I ask my questions, this is from Apple's documentation re: how to determine the width of a string using Quartz:
If text measurements are important to your application, it is possible to ...
8
votes
2answers
2k views
What are the alternatives to Core-Plot for drawing graphs in iPhone SDK
Are there any alternatives to Core-Plot for drawing graphs in iPhone SDK?
I am having hard time integrating core-plot in my app. Lot of issues.
Can you please suggest some alternatives to ...
7
votes
4answers
2k views
How to Get the Display Name with the Display ID in Mac OS X?
I was wondering if you could help me figure out how to progmatically get the Display Name for a monitor by using its Display ID number in Mac OS X (10.5)? A requirement is if I give a function the ...
7
votes
2answers
9k views
How to create a UIImage from the current graphics context?
I'd like to create a UIImage object from the current graphics context. More specifically, my use case is a view that the user can draw lines on. They may draw incrementally. After they are done, ...
7
votes
3answers
2k views
Is it possible to alter the letter-spacing/kerning of a font with Cocoa Touch?
I've been scouring the Internet for a while now for information on how one can alter the letter-spacing/kerning of a font within UIKit.
My fear is, that like using your own custom fonts, you simply ...
7
votes
7answers
9k views
How do I create a grid of icons like the iPhone home screen?
How should I go about creating a UI similar to the Springboard (home screen) on the iPhone? I'd like a grid of evenly spaced buttons with images where I can respond to the button tap.
Is the UITable ...
6
votes
2answers
133 views
What's faster: Creating a gradient programmatically using Quartz2D or just importing an image?
Let's assume the file space on the iphone isn't an issue, what would perform better? Would there be any noticeable speed/smoothness difference between the two?
6
votes
2answers
187 views
What can be the signature of this method?
I am trying to identify private apis of Quartz framework. I have a list of bunch of private private APIs but don't have their signature.
I would like to put one of them on table for discussion, so ...
6
votes
2answers
2k views
Compile error trying to use CAGradientLayer
I'm trying to use CAGradientLayer and getting an unhelpful compile error. Can't figure out whats wrong. All I'm doing so far is:
CAGradientLayer *gradient = [CAGradientLayer layer];
I've imported ...
6
votes
3answers
4k views
iPhone - Draw transparent rectangle on UIView to reveal view beneath
I currently have two UIViews: one of a red background and the other blue. The blue view is a subview of the red view. What I would like to do is be able to "cut" out rectangles on the blue view so ...
6
votes
1answer
3k views
What's the difference between Quartz Core, Core Graphics and Quartz 2D?
I wonder if someone can distinguish precisely between these?
For my understanding, Core Graphics is just a "Framework Package" which contains Quartz Core and Quartz 2D. But I'm not sure about if ...
5
votes
2answers
305 views
Crash when casting CFArrayRef to NSArray
This is fine:
CFArrayRef windowList = CGWindowListCopyWindowInfo(kCGWindowListOptionOnScreenOnly, kCGNullWindowID);
NSLog(@"%@", (__bridge NSArray *)windowList);
This causes EXC_BAD_ACCESS:
...
5
votes
2answers
244 views
how to compute the control points for a smooth path given a set of points?
I am using UIBezierPath, but this question concerns control points for the paths, not the drawing. Given a set of points, I can render a path. However, I have not been able to figure out how to ...
5
votes
3answers
265 views
Force a window to redraw itself using Core Graphics?
I have developed injection system and have hooked some quartz API's to create some nice effects with windows on Mac OS X. For example, when user sets a color to red in window.. it is red glossy red.
...
5
votes
2answers
243 views
iPhone/Objective-C - Memory leaks in QuartzCore library
I am running the Instruments Tool (Leaks) and am receiving memory leaks in the QuartzCore library and don't know exactly where in my code this is occurring. Usually I'm able to pin point the line ...
5
votes
2answers
470 views
Uiimage from UIView: higher than on-screen resolution?
I've got a UIView which I'm rendering to a UIImage via the typical UIGraphicsBeginImageContextWithOptions method, using a scale of 2.0 so the image output will always be the "retina display" version ...
5
votes
2answers
4k views
3D Carousel effect on the iPad
I am trying to implement a 3D Carousel on the iPad, consisting of UIViews, an effect like what is shown over here.
I have gone through many similar questions on SO, but didn't find any staisfactory ...
5
votes
1answer
2k views
Can't add a corner radius and a shadow
I'm trying to draw a shadow and a corner radius on an image. I can add them separately, but I've got no way to add both effects at the same time. I'm adding a shadow with:
[layer ...
5
votes
3answers
940 views
CGContextSetShadow() - shadow direction reversed between iOS 3.0 and 4.0?
I've been using CGContextSetShadowWithColor() in my Quartz drawing code on the iPhone to generate the "stomped in" look for text and other things (in drawRect: and drawLayer:inContext:).
Worked ...
5
votes
2answers
3k views
On OSX, how do I gradient fill a path stroke?
Using the plethora of drawing functions in Cocoa or Quartz it's rather easy to draw paths, and fill them using a gradient. I can't seem to find an acceptable way however, to 'stroke'-draw a path with ...
5
votes
4answers
871 views
How do I remove those rotation artefacts from my CATiledLayer?
I have a CATiledLayer into which I render content in the following method
- (void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx
I used the QuartzDemo code to draw a pattern. This works ...
5
votes
1answer
681 views
MKAnnotationView disappearing on swipe and double-tap zoom
I have subclassed MKAnnotationView to create an annotation that basically draws a circle around a point on a map view through override of drawRect. The circle draws fine in the following situations ...
5
votes
5answers
3k views
CGEventPost - possible bug when simulating keyboard events?
I have a very simple chunk of code that is designed to simulate keyboard events. The simple example below should type "Cz" - the shift key goes down, the c key goes down, c comes up and shift comes ...
5
votes
2answers
8k views
Drawing woes with CALayer
First of all, im finding the iPhone online docs to be not-so-very thoroughly clear when it comes to the various ways of rendering a layer. I get the jist of it, but im not clear when to use which ...
5
votes
1answer
3k views
iPhone SDK Zoom and refresh PDF with Quartz
Looking at the QuartzDemo sample application, I love the speed of the PDF rending using quartz alone (that is, without using uiwebview). However, when I'm zooming in the PDF it doesn't seem to become ...
5
votes
4answers
2k views
Are most games on the IPhone done with OpenGL ES?
I was just wondering if most games on the iPhone are done in OpenGL ES as opposed to using Quartz and Core Animation. Are Quartz and Core Animation mostly used for just creating slick interfaces? Or ...
4
votes
1answer
41 views
CGPath as a string
Is there any way to get at the actual data of a CGPath, so it can be saved to a file and restored later?
And is there any documentation on how that data is structured?
I would like to write it as a ...
4
votes
0answers
155 views
ios quartz drawing feather
I am drawing a path into a CGContext following a set of points collected from the user. There seems to be some random input jitter causing some of the line edges to look jagged. I think a slight ...
4
votes
2answers
233 views
Quartz 2d Drawing: Perfect on simulator / bad on device. Distribution Vs Debug
I've just finished waveform drawing code for my app. I'm pretty happy with it and on the simulator it looks great.
The problem I have is when I run it on an ipad it doesnt draw properly. On the ...
4
votes
1answer
223 views
fill circle with change color after few second
I am implementing a custom progress bar using a timer and the Quartz2d draw circle/fill circle functions. Basically, I am using CGContextAddLines,CGContextAddArc,CGContextDrawPath methods but with ...
4
votes
2answers
172 views
Invert trackpad/mouse events in Cocoa
I would like to invert the trackpad or mouse movements so sliding up would go down on the screen and sliding down would go up (this is just general cursor movements not gestures). I have gotten this ...
4
votes
1answer
323 views
Having a hard time understanding NSBezierPath's curveToPoint: method
I'm trying to get to grips with drawing (fairly basic) shapes in Cocoa. I understand how to create paths with straight edges (duh!), but when it comes to doing curves, I just can't get my head around ...
4
votes
2answers
652 views
Quartz based drop shadows don't work for me on UITextView
I have been able to add shadows to many UI objects in my view, including rather nicely drop shadowing some custom drawing in a UIImageView. However the same code produces nothing when applied to a ...
4
votes
1answer
129 views
Which framework is the most suitable to create a primitive shape drawing app?
I am creating a drawing app on iPad which allow the user to create primitive shapes like rectangles, polygons, arcs, etc. This app enables the user to rotate and scale these shapes.
So, which would ...
4
votes
2answers
271 views
Create PDF from CSV on iPhone
An iPhone app which I am creating generates reports from a Core Data database as a CSV file, which can then be emailed so that the user may use that data elsewhere outside of the app. I would also ...
4
votes
1answer
2k views
CALayer and Off-Screen Rendering
I have a Paging UIScrollView with a contentSize large enough to hold a number of small UIScrollViews for zooming, The viewForZoomingInScrollView is a viewController that holds a CALayer for drawing a ...
4
votes
1answer
810 views
Clipping a CALayer to arbitrary path
Is it possible to clip a CALayer to an arbitrary path? I am aware that I can clip to the superlayer's bounds, but in this case I need to be far more prescriptive.
TIA, Adam
4
votes
1answer
3k views
Can't compile code when working with CALayer
For some reason I get linker errors when I try and use CALayer:
"_OBJC_CLASS_$_CALayer", referenced from:
I have imported the following headers:
#import <Foundation/Foundation.h>
#import ...
4
votes
3answers
2k views
Drawing a text along a path in QuartzCore
Say I have an array of points that form a line and a text. How can I go about drawing the text along this line in
- (void)drawRect:(CGRect)rect
of a UIView?
I am able to draw the path without ...
4
votes
3answers
2k views
CGContextSetLineWidth(context, 1) - the width is almost alwayas at least 2 pixels instead 1
With CGContextSetLineWidth(context, 1) the width is almost alwayas at least 2 pixels instead 1
QQCandleStickLayer.m
-(id)init
{
self = [super init];
if(self != nil)
{
...
4
votes
2answers
2k views
How to convert ASCII character to CGKeyCode?
I need a function that, given a character, returns the CGKeyCode associated with the position of that character on the current keyboard layout. E.g., given "b", it should return kVK_ANSI_B if using ...