Quartz 2D is the primary two-dimensional graphics rendering API for Mac OS X, part of the Core Graphics framework.
0
votes
0answers
17 views
masking and filling image with color in objective-c
I would like to do exactly this Apple guide on Listing 11-5 but I don't understand where some parameters come from (context, myContext)
Could someone give a full example ?
I have already applyed a ...
0
votes
1answer
12 views
Dynamic number of UIViews in custom UIView
I'm making a custom UIView. It holds a bunch of UILabel objects as its subviews. The count of UILabel objects is unknown at creation time. Which method in should I initialize these UILabel objects? Is ...
0
votes
1answer
60 views
UIView setting opacity issue
I want to set different opacity for different pixels in UIView.
So, I need to find implementations for method [self setProperOpacity:myView forX:x forY:y]; in code (so that function should set alfa ...
0
votes
2answers
34 views
UIImage remove some pixels issue
I have the application where user can erase image.
So if user touches some px of the image, alfa of these pixels should become lower.
For instance, if I touched (0,0) pixel of the image one time, ...
0
votes
0answers
26 views
Create an inner shadow effect in a UITableView
I'm trying to apply an inner shadow like in the Apple Reminder app (see in particular the Lists table view).
I would like to do the drawing using Quartz instead of using an UIImageView.
The main ...
1
vote
1answer
50 views
Can I programmatically add link annotation to PDFs?
I am making an iPad app that uses UIWebView to display PDFs. I have a PDF that I would like to programmatically add links to. For simplicity, lets say there are 10 paragraphs. They are all numbered ...
-1
votes
1answer
89 views
Using a quartz composer image effect in iOS app [duplicate]
This seems like a straightforward question but I cant seem to find a definitive answer...
If I create a Quartz Composer QTZ file that applies some image library effects (let's say "bloom" and "color ...
0
votes
1answer
43 views
How to fill the area below a path in Quartz 2D?
I am using Quartz 2D in a UIView object to draw several curves, like this example:
This is the code I have right now (I have omitted the calculation of control points and other stuff):
for (int i ...
0
votes
1answer
42 views
coregraphics on gnustep ubuntu
so im thinking about porting some logic written for my ios app to the server.
I am building a view hierachy and then rasterizing it to bitmaps
I have used chameleon to successfully port the relevant ...
1
vote
1answer
28 views
Can the background for a mac app be transparent?
I'm using quartz2d to make my first mac app and I was wondering if it's possible to make the background transparent. Meaning that if all the app did was set the background transparent then when it ...
-1
votes
0answers
34 views
How to draw my own map on iOS? [closed]
I'm developing a indoor map app. I'm current using Quartz 2D to rendering my map on iPhone, but the result is not so good. What should I do? Do I have to use open GL to draw the map? Or are there any ...
0
votes
0answers
121 views
iOS: Rotating a line with respect to a point that could be adjusted by touch
Man, have I been struggling with this...
In reference to the image above, I have a line that is fixed to a specific point. At the other end of the line I have another point that is NOT fixed and ...
2
votes
1answer
78 views
How can I draw nested radial gradients on iOS?
I'm developing an iOS 5.0+ app with latest SDK.
I want to do something similar to
I want to know how to nest radial gradients.
This is my code now:
- (void)drawLayer:(CALayer *)layer ...
0
votes
1answer
58 views
Adding a CALayer sublayer inside of UIView init
I'm trying to add a CALayer as a sublayer in a UIView subclass, but when I add the sublayer inside the init method I get EXC_BAD_ACCESS when I add the view to another view or window.
Init method:
- ...
0
votes
0answers
50 views
CALayer, subLayer alpha overriding
I have a CALayer ( superlayer ) with 0.3 opacity property. The superlayer con taints another CALayer(sublayer). Although sublayer does not have a opacity property superLayer's opacity affects ...
0
votes
1answer
52 views
How do I ensure an eyedropper tool returns a consistent value, despite differing display profiles?
I'm in the unenviable position of working with a huge established codebase for an application that needs to work on both Windows and OSX. A section that I'm currently working on contains some legacy ...
0
votes
0answers
41 views
How to dynamically scale x-y graph?
I have made graph in ios using quartz with x and y axis. User can enter any point they like so what's the best strategy to make the graph automatically scale values.
More importantly, the scale and ...
0
votes
0answers
11 views
Quartz2d Draw to 2 different CGContextRef in two different windows simultaneously
Is there a way to draw two different windows with two different CGContextRef simultaneously?
For example if I had two NSWindows side by side and wanted one to receive mouse events to draw in the ...
0
votes
1answer
60 views
Does CGPathAddArc include the center pixel of a circle?
I use CGPathAddArc to create a circle, if the radius is 5 pixel, will the whole circle end up with 10 pixels width or 11 pixels?
It's also confusing if it does end up with 10 pixels. In that case, ...
0
votes
0answers
69 views
iOS panGesture strange behaviour, maybe performance issue?
I stumbled upon a very strange behaviour and I'm not able to find a solution.
The situation is this: I have a ViewController with two views in it, each one of these, during initialization in the ...
1
vote
1answer
54 views
How to use CGContextDrawImage?
I need some help using the CGContextDrawImage. I have the following code which will create a Bitmap context and convert the pixel data to CGImageRef. Now I need to display that image using ...
-1
votes
1answer
87 views
iPhone App - Display pixel data present in buffer on screen
I have the source code for a video decoder application written in C, which I'm now porting on iphone.
My problem is as follows:
I have RGBA pixel data for a frame in a buffer that I need to display ...
0
votes
0answers
15 views
CoreImage Kernel Routine
I am new to writing kernel routines and using Quartz composer at all so please pardon my naivety.
I am trying to unwrap an image that has been taken as a circular fisheye. I would like to make it an ...
-2
votes
1answer
73 views
lock CGRect to current position – Objective-c
I have an UIButton that when pressed, it asign a Boolean (touchHasBegan2) to YES. And in a drawRect method a CGRect is drawn when the button is pressed. I want to "lock" the rect to its current ...
0
votes
1answer
208 views
iOS FloodFill : UIImage vs Core Graphics
I'm considering building an app that would make heavy use of a flood fill / paint bucket feature. The images I'd be coloring are simply like coloring book pages; white background, black borders. I'm ...
-1
votes
1answer
67 views
drawRect doesn't draw rect - Objective-C
I just want to draw a rect on a view. This is my code in my UIView subclass:
- (void)drawRect:(CGRect)rect
{
context = UIGraphicsGetCurrentContext();
CGContextSetRGBFillColor(context, 255.0/255.0, ...
0
votes
1answer
91 views
What is the CoreGraphics equivalent of UIKit's contentScaleFactor?
What is the CoreGraphics equivalent of UIKit's contentScaleFactor?
I am creating a PDF using the UKit PDF creation functions, which allow rendering to a PDF context. I have a requirement, however, to ...
1
vote
2answers
187 views
Reduce pdf size - Objective c
I have a pdf generation project, it consist of some texts and an image which is already stored in db, i want to preview and mail the pdf generated, everything is ok when there is only text data.
...
0
votes
1answer
63 views
set view transparent but keep buttons etc opaque
I have two view, one with an UIImageView in the back as background. Then I have another view in front of the imageView containing labels, buttons and paths such as circles and rects. I want the second ...
0
votes
1answer
81 views
Draw path ontop of UIImageView - Objective-c [duplicate]
I have some circles, labels and buttons in a UIView. I also have an imageView that should show a background picture. So I want the circles (paths) to be on top of the imageView. The label and buttons ...
-1
votes
1answer
81 views
Draw a circle when clicked using quartz
I want a circle to be drawn when the user clicks anywhere on the screen. Whats missing/is wrong with this code?
- (void)drawRect:(CGRect)rect
{
if (UITouchPhaseBegan)
{
CGContextRef context = ...
2
votes
2answers
162 views
How to position and crop UIImage in a circle
I have an interface that lets you position an image within a circle and then when the you decide that it is in the right place, press a crop button and crop the visible area of the image.
...
0
votes
1answer
77 views
Setting composite drawing mode causing black holes/patches on NSWindow
I wanted to draw a shape, over it I wanted to draw the smaller transparent shape.
-(void) drawRect:(NSRect)dirtyRect
{
//clear everything
{
[[NSColor whiteColor] set];
...
1
vote
2answers
45 views
Moving Rectangle in Quartz
I am attempting to learn the basics of quartz and do not understand why this will not work
- this should move the red rectangle to the right when the button is pushed, bat at the momoent, it does not ...
0
votes
1answer
61 views
How is the in-call status bar impacting my CGAffineTransform'd view?
My app (target iOS 5+, uses ARC and storyboards, for the App Store) uses some rotation transforms. There's a bug where an in-call status bar (such as if there's an ongoing phone call or microphone ...
0
votes
0answers
100 views
iOS Quartz2D pinch zoom implementation with UIPinchGestureRecognizer
I have to write graphical application with some squares and lines and it also has to have pinch zoom capability.
Device is iPad and i am using Quartz2D.
After 45+ hours and half of my notebook ...
0
votes
2answers
87 views
Is Quartz 2D useful to create custom views?
Is Quartz 2D a good choice to create custom views? Is there any other choices?
Thanks
0
votes
2answers
58 views
Quartz 2D Drawing Crashing
I don't know why this stopped working, but this chunk of code is crashing my device when I try drawing any part of it. I'm new to core graphics so any pointers or suggestions would be a great help. ...
0
votes
3answers
95 views
iPhone. Benefits to using Open GL ES over Core Graphics in a live multiplayer game?
I am working on a live multiplayer version of a pictionary like game. It will be like draw something except live with 4 players and not turn based.
is there a benefit to writing my drawing algorythm ...
1
vote
2answers
111 views
How does CGContextClipToMask work internally?
I am trying to replicate the behavior of CGContextClipToMask on iOS without any luck so far. Does anyone know how CGContextClipToMask works internally? I have read the documentation and it says it ...
1
vote
0answers
104 views
Why is the GeekGameBoard Core Animation example in the “Legacy section” and what should I look at instead?
GeekGameBoard is an example of using Core Animation to present the user interface of a board or card game. It implements a small framework for implementing such games, with domain-specific classes ...
0
votes
1answer
89 views
Drawing arc in current context
I trying to draw custom arc in current context, but the result is not what i expected to see, i have the simple lines of code if draw method.
-(void) drawRect:(CGRect)rect
{
CGContextRef context ...
0
votes
0answers
42 views
ios Quartz2D & click-able drawing object possibility
I'm sub-classing several uiview and overriding drawRect to draw a specific shape ex: square or circle and adding each uiview as a layer. I'm wondering is it possible to make these shapes on each ...
0
votes
1answer
249 views
iOS SDK edit PDF to add an Image
I'm trying to figure out if there is any way to insert an image into a specific page on a pdf file. I was analying this example ...
2
votes
3answers
178 views
Quartz2D: How to convert a clipping rect to an inverted mask at runtime?
Given:
a CGContextRef (ctx) with frame {0,0,100,100}
and a rect (r), with frame {25,25,50,50}
It's easy to clip the context to that rect:
CGContextClipToRect(ctx, r);
to mask out the red aread ...
0
votes
1answer
97 views
Misunderstanding with CALayer in CGContextRef
I have a custom view in which I want to display a CALayer with PDF content. To do so I implemented a delegate NSObject subclass as shown in the first answer to Using CALayer Delegate.
Since I have ...
0
votes
1answer
90 views
Best Practice for interactive 2D programming way in iOS
I want to create a diagram application, I can create some shapes.
Every shape can be moved in the canvas.
What is the best way to implement it? Now I know is just two way:
with only UIView, draw all ...
0
votes
1answer
63 views
Is it possible to show only a portion of CALayer ios?
In general,
Can you have a CALayer with a frame of (0,0,320,460) in an iPhone4 for example. And then decide that you want to only show the middle rectangle portion of that layer (150,220,20,20).
...
0
votes
0answers
130 views
iOS Screen capture but not blocking main thread
Apple has given a source code to capture screen here: http://developer.apple.com/library/ios/#qa/qa1703/_index.html
However, if I constantly capture, the UI would get really slow when ever it does ...
0
votes
0answers
292 views
Creating a new CGContext while drawing in another CGContext crashes
I am trying to write code for drawing in Quartz 2d. The drawToPoint: method is called repeatedly as the touch moves across the screen. So that I do not have to recreate the context repeatedly, I hold ...


