The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
52 views

Drawing in another thread with CGImage / CGLayer

I have custom UICollectionViewCell subclass where I draw with clipping, stroking and transparency. It works pretty well on Simulator and iPhone 5, but on older devices there is noticeable performance ...
0
votes
0answers
21 views

turn off antialiasing for certain views, cocoa touch, renderInContext:UIGraphicsGetCurrentContext

Getting unwanted artifacts between adjoining views, presumably from anti aliasing. Is there a way to turn off antialiasing on certain views while rendering images in iOS [[view layer] ...
0
votes
1answer
41 views

Interpolation issue after renderInContext:UIGraphicsGetCurrentContext(), iOS

I have a few UIVies butted edge to edge. THe views completely cover the superView. Looks great in display, but when rendered the adjoining edges are visible, that is to sat a line appears between ...
0
votes
1answer
39 views

iOS render image in context not working as expected in landscape orientation

The code below seems to work well to render an image from a view at retina resolution. The problem is it does not seem to work while my device is in landscape orientation. It returns an image rotated ...
1
vote
1answer
88 views

how to add diagonal strokes to a UIView

how can i add an X looking red stroke to a UIImageView. i would like to add 2 diagonal red lines to a UIImageView, is there a way to do it programmatically using layers or masks? (not in drawRect)
1
vote
0answers
384 views

clipsToBounds and masksToBounds in grouped UITableViewCell

I'm trying to get my UITextView's corners to be masked by the rounded corners of the grouped UITableViewCell that contains it. Here's a screenshot of the cell as it currently stands Here's some ...
0
votes
0answers
136 views

redraw CAShapeLayer by modifying his path with GestureRecognizer

Hello everybody and merry Xmas! I have a problem: I am trying to redefine my CAShapeLayer with a gesture Recognizer: .h `CAShapeLayer *_markerLayer;` .m - (void) addMarker { float cx = ...
0
votes
1answer
120 views

When to retain and release CGLayerRef?

I have a question similar to this one: CGLayerRef in NSValue - when to call retain() or release()? I am drawing 24 circles as radial gradients in a view. To speed it up I am drawing the gradient ...
0
votes
1answer
96 views

CGLayerRelease crashes

I have a Cocoa app with ARC enabled. I am using OS 10.8 and Xcode 4.4. The app sporadically crashes upon calls to CGLayerRelease, dumping messages like the following to console: error for object ...
0
votes
0answers
197 views

How to store CGLayers in Drawing

I am working with CgLayers for drawing in iOS, Now I want to store these layers and retrieve it later, so I want to know what are the available options. I tried to use NSMutableDictionary, below is ...
1
vote
2answers
486 views

undo redo issues with CGLayer

I am working with unod redo operations on CgLayer, I have tried some code, but not able to get it working, dont know , where I am getting wrong, below is my code, which i have written this is my ...
0
votes
0answers
182 views

Implementing Eraser functionality in Drawing with CGLayers

I am working with CGLayer, So now I am implementing ClearAll and Erase functionalities in it, clearAll works fine, but I have little problem with erase, it works partially, below is my code - ...
0
votes
0answers
653 views

How to use CgLayer for optimal drawing

I have created a simple drawing project,the code works fine, but I want to cache the drawing into CGlayer, because I read that its more efficient way in drawing . I have read through the documents, ...
0
votes
2answers
277 views

iOS: How Can I Rotate A CGLayer?

I have been looking far and wide for the answer. I'm still coming up to speed on iOS dev, so I can definitely accept that I may be clooless here. However, the complete and utter lack of answers out ...
0
votes
1answer
546 views

Create CGContext for CGLayer

I want to pre-render some graphics into CGLayer for fast drawing in future. I found that CGLayerCreateWithContext requires a CGContext parameter. It can be easily found in drawRect: method. But I ...
0
votes
0answers
43 views

Can Layers(CGLayer) be merged or combined?

Can Layers(CGLayer) be merged or combined? I mean combine two diffrent layers into one layer and the things on these layers(what I'v drawn)also be combined,may be some lines will cover others. Is ...
1
vote
0answers
197 views

On iOS, how do we get a graphics context cached on the GPU?

And maybe the first question is: is it useful or possible to get a graphics context cached on the GPU: On iPad 1, 2, and the New iPad, PowerVR is used as the GPU, and does it use the RAM as graphics ...
0
votes
1answer
138 views

Why CGlayerRef or CGcontextRef can't be saved in NSdata?

I saved CGlayerRef and CGcontextRef in NSdata, and when I get them to cover the current one,I find that only the poiners were saved but not the data. For that reason, I can't make these CGlayerRef ...
0
votes
0answers
218 views

Strange behavior of CGLayerCreateWithContext on iPad 2 vs on the New iPad?

In a Single View App, FooView is the main view. In FooView's drawRect, if I do if (!self.layer1) { CGContextRef context = UIGraphicsGetCurrentContext(); NSLog(@"current context is drawRect ...
2
votes
2answers
1k views

On iOS, what is the fastest way to cache a drawn screen image and display it?

Instead of letting drawRect redraw thousands of point every time, I think there are several ways to "cache the image on screen" and any additional drawing, we will add to that image, and just show ...
0
votes
0answers
44 views

On iOS, why do we have to create a layer using an existing Graphics Context? [duplicate]

Possible Duplicate: On iOS, after we create a layer from context and get the layer's context, how do these contexts relate to each other? On iOS, we could do a CGLayerCreateWithContext ...
0
votes
0answers
173 views

can the DPI of a image be increased programmatically in iPhone..?

The image captured by iPhone 4 has got 96DPI, I want to increase it programatically.. I have searched a lot on quite a lot of forums but all in vain. I want to use it for OCR with Tesseract and it ...
0
votes
1answer
290 views

Why does my view jump when setting the layer anchorPoint in an animation block?

I have a UIPanGestureRecognizer attached to a view in my iOS app. I copied the code from the Touches sample app for the pan handler. When the gesture starts, my code: Records the original anchor ...
1
vote
1answer
280 views

Why CGLayers are not blending?

Why obj2 not blend with obj1 but without use CGLayer it works fine,same problem with CGContextDrawLayerAtPoint,Does CGLayer not support CGContextSetBlendMode?? //Layer CGContextRef context = ...
5
votes
1answer
2k views

objective c - UINavigationBar with rounded corners

I want to make my navigation bar a one with rounded corners (the top left and right) I found this code that make it happen: CALayer *capa = [self.navigationController navigationBar].layer; [capa ...
2
votes
1answer
745 views

CGL vs AGL vs OpenGL vs NSOpenGL vs CoreAnimation(CALayer)

I am trying to understand few things on Mac related to OpenGL framework integration in the form of layers. Well basically when I want to understand 3D technologies present in OS X and which layer is ...
2
votes
1answer
281 views

How to access CGContext for creating CGLayer offscreen

Intention: creating CGLayer offscreen, draw some complicated stuff on it from second thread and use it later for quick drawing on main thread Problem: CGLayerCreateWithContext(context, size, info) ...
0
votes
2answers
352 views

Jaggy paths when blitting an offscreen CGLayer to the current context

In my current project I need to draw a complex background as a background for a few UITableView cells. Since the code for drawing this background is pretty long and CPU heavy when executed in the ...
0
votes
2answers
147 views

How to remove UIView subviews w/out forcing a redraw?

This is somewhat of a hypothetical question, but I can imagine this situation coming up at some point in the future: Let's assume for a moment that I have a freakishly complicated hierarchy of UIViews ...
0
votes
1answer
265 views

Draw CGImageRef & CGBitmapContextRef on CGL context?

I am looking for a way to draw a CGImageref and CGBitmapContextRef on CGL Context?
0
votes
1answer
111 views

Taking snapshot of contents in CGL?

I want to create a image out of Core OpenGL context. I used following code but it creates a black image. So I guess I cannot use glReadPixles there? Any other suggestions please? int myDataLength = ...
0
votes
2answers
543 views

CGL vs OpenGL on Mac

I am trying to figure out the relationship between CGL and OpenGL on Mac platform. More specifically about the context. Do they share context? If yes, how? Please give me a link to some related ...
0
votes
1answer
339 views

CGLayerRef in NSValue - when to call retain() or release()?

I am caching some graphics onto CGLayers and then storing them in NSValue objects using @encode (so as to store them in an array). I just wanted to make sure that I handle the retain/release ...
9
votes
1answer
701 views

OpenGL 3.2 context on a Carbon window (OS Lion, Mono)

I'm trying to add modern OS X support to OpenTK framework. Mac OS Lion supports OpenGL 3.2 Core context. I can successfully obtain it by using CGL. However, I can't find a straight way to bind the ...
1
vote
0answers
289 views

iPhone: Create CGLayer with gradient point and transparent background

I would like to create a CGLayer, contains a point with gradient in boundary. Because I will use this layer to draw multiple points on the main screen. This is my code: CGRect r = CGRectMake(0, ...
6
votes
3answers
3k views

iOS: How do I support Retina Display with CGLayer?

I'm drawing a graph on a CALayer in its delegate method drawLayer:inContext:. Now I want to support Retina Display, as the graph looks blurry on the latest devices. For the parts that I draw ...
1
vote
2answers
96 views

iPhone - pushing and pulling a value from a dictionary to a CGlayer

I have a finger painting view that I am implementing undo/redo. All the drawing occurs on a CGLayer called lineLayer. As soon as the user touches the screen but before any modification is done to the ...
4
votes
1answer
386 views

iPhone - encoding and decoding a NSValue

So I read here on SO that I can encode a CGLayerRef to a NSValue using NSValue *myCopy = [[NSValue alloc] initWithBytes:&myLayer objCType:@encode(CGLayerRef)]; but how do I recreate the ...
0
votes
3answers
1k views

Issue in adding a shadow to view layer

In one of my view I am adding shadow to a view. Thing is that the shadow shows white spaces on left & right edges. I want to remove these spaces. Here is my code: UIView *myView = [[ISTView ...
0
votes
1answer
424 views

Best way to speed up multiple uses of “CGContextDrawRadialGradient” in drawrect?

I couldn't post the image, but I use the "CGContextDrawRadialGradient" method to draw a shaded blue ball (~40 pixel diameter), it's shadow and to make a "pulsing" white ring around the ball (inner and ...
1
vote
1answer
571 views

Save edited image to the iPhone gallery

am working on an app where i am loading one image from the bundle and with the help of quartz i am adding two red circles on that image, the image is loaded in the instance of the UIImageVIew class. ...
1
vote
1answer
244 views

How do I autorelease a CGLayer?

I have CGLayers cached in an NSMutableDictionary where I use them as follows: - (CGLayerRef)getLayerForCacheKey:(CacheKey)cacheKey andProperty:(id)property { NSDictionary *cacheDict = [cacheArray ...
1
vote
3answers
398 views

Struggling to clear ALL DATA from a CGLayer — can it even be done?

We're repetitively making a CGLayer, doing processing, and then releasing it. This happens a lot in real time. Surely there is a lot of overhead in making a whole new CGLayer each time. So... Surely ...
0
votes
1answer
2k views

Unable to release a CGContextRef (context is from a CGLayer)

When you create a CGLayer like so, and then get the context...it appears to be impossible to release the CGContextRef? Releasing the CGLayerRef itself (apparently) works fine. You'd think you could ...
24
votes
1answer
4k views

What's the difference and compatibility of CGLayer and CALayer?

I'm confused by CGLayer and CALayer. They look similar, so why are there separate implementations? What's the difference between, and compatibility of, CGLayer and CALayer?
2
votes
1answer
647 views

Adding Rounded Corners to UIImageView vs Pre-Rendering the UIImage?

I am experimenting with the layer of a UIImageView, in particular adding rounded corners. My question is, What is the impact on performance (if any) by doing the following : [self.imgView.layer ...
0
votes
1answer
558 views

Mixing CGLayers and CALayers

Here's the setup: I have a NSView which is a CALayer-backed view, and contains many CALayers. I have a CALayer for the 'background' of the view, and many small CALayers which are sublayers. Sometimes ...
0
votes
0answers
453 views

CGLayer Performance Issues, what do i wrong?

i got a real performance issue on my app after adding a new class. this class extends UIButton. In the initWithFrame: method im setting some parameters like: [self.layer setBorderColor:[[UIColor ...
3
votes
2answers
3k views

Optimize Core Graphics animated drawing (iPhone)

I have a loop that fires a function 30 times per second. The function changes the position of a couple of points that I use to animate. I draw lines through all the points, meaning that the lines will ...
1
vote
1answer
772 views

Caching to CGLayer slower than redrawing on iPhone

I'm in the process of making a simple drawing program for the iPhone. At the moment, touch events add their location to a list which is connected with a bunch of CGContextAddLineToPoint calls which ...

1 2