Tagged Questions

Quartz 2D is the primary two-dimensional graphics rendering API for Mac OS X, part of the Core Graphics framework.

learn more… | top users | synonyms

20
votes
2answers
4k views

iPhone, CGPDFDocument - PDF links

I'm trying to write a simple PDF viewer using CGPDFDocument, based on QuartzDemo. There is common rendering: -(void)drawInContext:(CGContextRef)context { // PDF page drawing expects a ...
11
votes
2answers
1k views

Efficient method to draw a line with millions of points

I'm writing an audio waveform editor in Cocoa with a wide range of zoom options. At its widest, it shows a waveform for an entire song (~10 million samples in view). At its narrowest, it shows a pixel ...
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 ...
7
votes
2answers
256 views

Copy Table of Contents from one PDF to another

You might find it as duplicate of this Question, but I didnt get any solution there. My scenario is like I am creating a PDF from existing PDF with some edits. That all works fine. My question is I ...
7
votes
2answers
297 views

Most efficient way to draw part of an image in iOS

Given an UIImage and a CGRect, what is the most efficient way (in memory and time) to draw the part of the image corresponding to the CGRect (without scaling)? For reference, this is how I currently ...
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 { ...
7
votes
3answers
951 views

How to implement alpha gradient on a image?

I want to implement alpha gradient on an image. From 0.5 alfa on top of the image to 0.0 on bottom. Any advice, tutorial, link is welcome.
7
votes
1answer
786 views

How do I change a partially transparent image's color in iOS?

I have a single-color image that has partial transparency. I have both normal and @2X versions of the image. I would like to be able to tint the image a different color, in code. The code below works ...
7
votes
1answer
690 views

How to obtain a CGImageRef from the content of an UIView?

I have an UIView where I was drawing some stuff inside -drawRect:. Now I need a CGImageRef from this graphics context or bitmap of the UIView. Is there an easy way to get that?
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
5answers
3k views

iOS open source drawing application source code

Where can I find a sample source code of a Quartz-based drawing application for iOS ? As there are tons of various drawing applications for iPhone/iPad around, I assume there must be some kind of an ...
5
votes
1answer
2k views

Apple iPad and PDF support

I have few questions related to the PDF and its use on the Apple iPad: 1) Does the iPad support all Quartz PDF functions (i.e. all CGPDFxxx functions/classes)? 2) Does the iPad support the PDF Kit? ...
5
votes
4answers
2k views

Quartz 2D vs OpenGL ES Learning Curve

I have been developing iPhone Applications for a couple of months. I would like to know your views about the Quartz vs OpenGL ES 1.x or 2.0 learning curve. You can tell your perspective. My Questions ...
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
3answers
166 views

What exactly is a Graphic Context?

What exactly is encapsulated by a Graphic Context (or Device Context in Windows)? The various definitions across the net agree that a context encapsulates the parameters for the various graphics ...
4
votes
1answer
2k views

Rotate CGImage taken from video frame

This is Apple's code (from Technical Q&A QA1702) for getting a UIImage from a video buffer. Unfortunately, the image returned is rotated 90 degrees. How do I edit this so that the image returned ...
4
votes
1answer
809 views

Quartz 2D or OpenGL ES? Pros and cons in the long term, possibility of migration to other platforms

I'm having a hard time deciding whether to go with Quartz2D or OpenGL for an iPad game. It will be 2D mostly, but effect-intense (simultaneous lighting effects for 10-30 objects, 10-20 simultaneous ...
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
2answers
756 views

Custom UIBarButtonItem with quartz

How can I draw a button with quartz that has exactly the same style as a UIBarButtonItem. The button should be able to show different colors. I downloaded the Three20 project, but this project is ...
4
votes
3answers
2k views

What's the right memory management pattern for buffer->CGImageRef->UIImage?

I have a function that takes some bitmap data and returns a UIImage * from it. It looks something like so: UIImage * makeAnImage() { unsigned char * pixels = malloc(...); // ... ...
4
votes
5answers
879 views

Drawing an equation in Quartz

I have got experience in iPhone programming but not really in graphics programming. I decided to make a 2d game and choose Quartz 2D for this purpose (I'm familiar with Open GL, but quartz seems to ...
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
2answers
285 views

How to get the real RGBA or ARGB color values without premultiplied alpha?

I'm creating an bitmap context using CGBitmapContextCreate with the kCGImageAlphaPremultipliedFirst option. I made a 5 x 5 test image with some major colors (pure red, green, blue, white, black), ...
3
votes
2answers
563 views

Where I can get hyperlinks in pdf document structure (except “Annots” entry in page dictionary)?

I have two pdf documents (doc1 and doc2) with hyperlinks e.g www.somlink.com, www.somlink2.com. According to PDF Specification I can get those hyperlinks via Link Annotations. Link Annotations can be ...
3
votes
1answer
407 views

how do I get a PDF object (string,image,etc) that was touched by user?

I am using CGPDF* set of classes to read a pdf document, is there a way to extract the object that was touched ('clicked') by user? In other way is there a way to get a PDF / (Quartz?) object at ...
3
votes
2answers
511 views

Reduce the size of PDF file generated with Quartz2D

I'm looking for a way to reduce PDF size that I generate with Quartz. I'm drawing images with CGContextDrawImage in a CGPDFContext. What I'm afraid of is that the images are saved as Bitmap and not ...
3
votes
1answer
249 views

What's a good approach to implement a smudge tool for a drawing program on the iPad?

At a high level (or low level if you'd like), what's a good way to implement a smudge affect for a drawing program on the iPad using Quartz2D (Core Graphics)? Has anyone tried this? Thanks so much ...
3
votes
2answers
896 views

Drawing formulas with Quartz 2d

In my iPhone App I'd like to draw a few formulas. How can I manage that with quartz 2d? Is there a way to build formulas like for example in latex? Or are there any existing frameworks? Thanks.
3
votes
3answers
6k views

Create a table of contents from a pdf file

I'm using quartz to display pdf content, and I need to create a table of contents to navigate through the pdf. From reading Apple's documentation I think I am supposed to use CGPDFDocumentGetCatalog, ...
3
votes
2answers
1k views

How to set up a user Quartz2D coordinate system with scaling that avoids fuzzy drawing?

This topic has been scratched once or twice, but I am still puzzled. And Google was not friendly either. Since Quartz allows for arbitrary coordinate systems using affine transforms, I want to be ...
2
votes
1answer
45 views

iPhone - trying to create hairlines in quartz

I have this picture, represented in red on the following image. I am trying to create this "hairlines" on the corners of the picture. When printed, the lines are intended to have 1 point of width and ...
2
votes
2answers
74 views

Transforming UIImage in Circular Motion without changing angle + Cocoa

I want to transform/rotate an UIImage in circular motion without changing the angle of the image. Following diagram explains the requirement. How this can be done using UIView transform property. ...
2
votes
1answer
237 views

Draw glow around inside edge of multiple CGPaths

If I create a CGMutablePathRef by adding together two circular paths as shown by the left image, is it possible to obtain a final CGPathRef which represents only the outer border as shown by the ...
2
votes
1answer
251 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
90 views

In CoreGraphics drawing how can I keep the point of overlap from being darker than the rest of the line?

My app uses core graphics for custom finger paint drawing. I allow the user to change the alpha of the line and a new line is continuously drawn on touches moved. When I make the alpha lower than 1.0 ...
2
votes
1answer
151 views

CGLayer and Anti-aliased CGPaths

I am drawing several CGPaths in a Cocoa view in the drawRect method on an iPad. I started out drawing them straight to the UIGraphicsGetCurrentContext() context, but performance went south when my ...
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
133 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
3answers
88 views

Drawing a bridge with Quartz 2D

I'm trying to draw the following image: Using this objective-c code: CGContextSetFillColorWithColor(ctx, [[UIColor redColor] CGColor]); CGContextMoveToPoint(ctx, position.X - (size.width / 2), ...
2
votes
1answer
139 views

Decode values ignored in CGCreateImage

I am creating a monochrome image with the following code: CGColorSpaceRef cgColorSpace = CGColorSpaceCreateDeviceGray(); CGImageRef cgImage = CGImageCreate (width, height, 1, 1, rowBytes, ...
2
votes
1answer
385 views

iPhone - drawing a lot of static lines (Quartz2D vs OpenGL ES performance)

So suppose you had to draw 100,000 lines onto a UIView that's maybe 3,000 x 3,000 in size. It sits inside of a UIScrollView, by the way. I did this the regular way with Quartz-2D, writing a regular ...
2
votes
1answer
192 views

“Flatten” or “Merge” Quartz 2D drawn lines

I'm trying to figure out how you can flatten or merge alot of dynamicly drawn lines in Quartz 2D, I'm drawing random lines over time on my stage, I add new line coordinates each time to an array and ...
2
votes
1answer
103 views

Why the presentationLayer of a view doesn't work correctly for me?

I want to get the position of a view while it is being animated and moving from one position to another I tried to use the presentationLayer to get the action location information, and tried to print ...
2
votes
1answer
119 views

Is it possible to inject a CIBumpDistortion filter to a specific area of the screen on Mac OS X (Snow Leopard)?

I want to temporarily distort the area under the mouse using a CIBumpDistortion to increase the visibility of the mouse pointer. At the moment, I have a transparent-background NSWindow that floats ...
2
votes
3answers
486 views

Seeing malloc allocating large chunks of memory - trying to track down why (iPhone)

I'm seeing my app being killed by iOS with an out of memory message, however, while tracing the progress of the app in the Allocations Instrument, I see lots of mallocs that seem to be occurring ...
2
votes
1answer
128 views

How do I join two different colored lines using Quartz?

So according to Apple's Quartz 2D Programming guide, there are a number of predefined line join styles when connected line segments in your path meet at a corner (Miter Join, Round Join, Bevel Join). ...
2
votes
1answer
542 views

Why is Quartz 2D text flip transform required on iPhone

From the Apple docs: In iOS, you must apply a flip transform to the current graphics context in order for the text to be oriented as shown in Figure 17-1. A flip transform involves inverting the ...
2
votes
1answer
151 views

How can I determine if two paths in Quartz 2d intersect?

If I create two paths in Quartz 2d, is there a way to determine if they intersect? Vaguely thought one could make a context and set one path as the clipping path, then draw the other path through ...
2
votes
1answer
95 views

Editor for 2D graphical elements in iPhone App

I am going to be working with a graphic designer to develop an interactive children's iphone app. It will not be a game as such, but rather a series of backgrounds with some interactive objects that ...
2
votes
1answer
253 views

Alternative to CGPathGetPathBoundingBox() for iPad (iOS 3.2)

I'm trying to get my head around using QuartzCore to render semi-complex text/gradient/image UITableViewCell composites. Thankfully, Opacity will let me visually build the view and then spit out ...

1 2 3 4 5 6