0
votes
0answers
24 views

How to set the cagradientcolor to the uibutton cashapelayer objective c.I want to fill colour to different shaped button

I want to add the colour to uibutton cashape layer.Is that possible according to the reference in the url Gradient color effect on CAShapeLayer.. we can add the colour to the uibutton cashape layer.I ...
0
votes
0answers
28 views

How do I resize a UIImage without smoothing? [duplicate]

I have a 16x16 UIImage. I want to convert that into a 128x128 UIImage without losing the sharpness. I will be putting the resulting image straight into a UIImageView. These are the images start is on ...
0
votes
1answer
48 views

Core Graphics - how to crop non-transparent pixels out of a UIImage?

I have a UIImage that is reading from a transparent PNG (500px by 500px). Somewhere in the image, there is a picture that I want to crop out and save as a separate UIImage. I also want to store the X ...
0
votes
1answer
62 views

Using circular progress bar with masked image?

I am working on a circular progress bar for custom game center achievements view and I have kind of "hit the wall". I am struggling with this for over two hours and still cannot get it to work. The ...
-2
votes
0answers
36 views

Programmatically cropping UIImages in iOS [duplicate]

I have a UIImage that contains a photo. The image has a squiggly-line overlay that's created when someone draws it by hand. This overlay is always closed i.e. forms one complete loop. How can I ...
0
votes
2answers
52 views

Which method to use to display text ?Why?

When drawing using CoreGraphics to draw a string/label we have 2 methods - (CGSize)drawInRect:(CGRect)rect withFont:(UIFont *)font lineBreakMode:(NSLineBreakMode)lineBreakMode ...
0
votes
2answers
27 views

Image rotating left when taking picture with iPad

In the application I'm working at you can take a picture with the iPad camera. After that using CoreGraphics you can draw shapes on that image. At first the image was upside down and mirrored. I ...
0
votes
1answer
69 views

iPhone iOS how to draw text on a CALayer using drawLayer:inContext:?

I have a simple scrolling graph which uses this method to draw itself. I'm looking for a way to add text label to this graph, but cannot find how to do this. I tried: [@"test" drawInRect: ...
0
votes
2answers
42 views

How to draw an Arc using core draw

I want to draw an arc like in the following figure using core draw. Not exactly same but I have background images set. I need to draw arc based on the file download. Now the percentage of download ...
0
votes
1answer
19 views

Why is my hitTest in UIView not identifying CALayer touched

I have a UIView in which 2 CALayers are added [self.layer addSublayer:subLayerA]; //... giving the following view hierarchy: UIView subclass - backing layer (provided by UIView) - subLayerA ...
0
votes
1answer
32 views

Using drawInRect inside a c method not working

I have this code, to draw some text inside a (so far) simple button: UIImage *buttonImage(CGRect bounds, UIColor *fillColor, NSString *title) { ...
1
vote
0answers
47 views

Core Graphics the “true looking glass” approach advice is needed

I have files with three resolutions of the same page artwork - standard, retina and double retina. The original artwork is very detailed and I'd like to create a looking glass to allow the users to ...
-1
votes
0answers
38 views

Text doesn't appear when drawing a string using drawInRect: [closed]

I've found some answers here for how to draw a string. I've tried this: [@"1234Test123Test123Test" drawInRect: CGRectMake(10, 10, 10, 10) withFont: [UIFont ...
0
votes
1answer
81 views

How to add curve at two point joint using coreGraphics?

I'm working on creating a sine chart using core-graphics. I done all thing just about drawing chart and also working well as I need just want to add curve at two point joint. My chart looks like the ...
0
votes
1answer
55 views

How to apply gradient to sector arc for pie chart using CoreGraphics

I am new to Core Graphics. From many tutorials, I have developed a pie chart as shown in the image. But now I want to add some gradient to its sector arc as shown in the image. How to achieve it ...
0
votes
1answer
53 views

Why is my image upside down after using CGContextSetFillColorWithColor

I am trying to apply a color fill to the MKAnnotation. I found some code that pretty much works but for some reason the filled image is upside down after applying the fill to it. Here is the current ...
1
vote
2answers
62 views

Retrieving RGBA values from an image [duplicate]

I am retrieving data from an Image using the CGDataProviderCopyData but the bytes returned by this function is very large when compared to the image file size. Here is my code. UIImage *image = ...
0
votes
0answers
39 views

IOS SDK : Display individual images as a single image and allow user to edit each image separately

I have come up with a task in iPhone/iPad (iOS SDK) wherein I have to display a set of images as a single image, but allow the user to edit the individual image's color/texture. It's much like what ...
0
votes
1answer
34 views

Is CFRelease necessary here to prevent a leak?

So I've heard that new alloc and copy create new memory on the heap that you are responsible for. I want to make sure that is also the case with a C-function in Core Graphics: ...
2
votes
1answer
86 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
3answers
72 views

Implement Blur over parts of view

How can I implement the image below pragmatically - meaning the digits can change at runtime or even be replaced with a movie?
1
vote
3answers
88 views

Can't get a CALayer to update its drawLayer: DURING a bounds animation

I'm trying to animate a custom UIView's bounds while also keeping its layer the same size as its parent view. To do that, I'm trying to animate the layers bounds alongside its parent view. I need the ...
0
votes
1answer
63 views

A CALayer subLayer is being drawn with different frame origin. Bounds issue

I add a CAShapeLayer as subLayer to self.layer in a given view that way: //balloonrect's value is this one _balloonRect = CGRectMake(0, 55, 239, 118); CAShapeLayer *balloonFrame = [CAShapeLayer ...
2
votes
2answers
92 views

CALayers never calls it's delegate's drawLayer:inContext: even after [layer setNeedsDisplay] and [layer display]

I can't figure out why the CALayer's I'm creating are not calling their drawLayer method. I've created a drawLayer delegate object for them, yet it never gets called. From a UIView subclass: - ...
1
vote
1answer
58 views

renderInContext throw crash

I am rendering images from webview. so renderIncontext method call more than 50 times in for loop. after 20 or 30 times my app crashed because of more memory consuption. I used this code: ...
0
votes
0answers
35 views

How to fill the black in a black-transparent png in core graphics? [duplicate]

I've been stuggling over this for a few hours, to no avail. I have a PNG of a black shape on a transparent background. I want to fill the black part of the image with another color, and leave the ...
0
votes
3answers
119 views

Draw a Radiant Gradient: <Error>: CGContextDrawPath: invalid context 0x0

I'm developing an iOS 5.0+ app with latest SDK. I'm very very new on CoreGraphics and I don't know how to draw a radiant gradient on a CALayer. I have found that I have to use ...
0
votes
3answers
87 views

How can i change the fill color of a CALayer in Core Graphics?

I have a shape, a CALayer, which I want to add core graphics effects to. Right now, I want to keep it simple and change the fill colour of it. How can I do this?
0
votes
1answer
49 views

CGPDFDocumentCreateWithURL fails (Toll-Free bridging of NSURL to CFURLRef)

I've got the following function: - (void)loadPdfFromPath:(NSString*)path { NSURL *pathUrl = [NSURL URLWithString:path]; _pdfDocument = CGPDFDocumentCreateWithURL((CFURLRef)pathUrl); } ...
0
votes
1answer
80 views

Draw along a path detection in iOS [closed]

I am writing a writing ios app for Kid. I need to enforce writing along a define path like in Dora ABC apps. For example, writing A. When user touch and draw, it draw only when user finger are along ...
-1
votes
1answer
34 views

Are Facebook iOS app posts drawn with CoreGraphics? [closed]

Does anyone know how the Facebook app for iOS displays the post items? What is the best (most efficient) way to display these post items in an iOS app? Core graphics? ImageViews? Thanks
2
votes
1answer
63 views

shadow does not show in drawRect:(CGrect)rect,objective

My goal is 1. add gradient for my view (done) 2. add drop shadow for the bottom edge of my view ( issue at here ) What I am doing is : - (void)drawRect:(CGRect)rect { CGContextRef context = ...
-2
votes
1answer
42 views

change colors in image

In my app I use QR code. So I have library that make me UIImage with QR code. This image like default QR So I need delete white color (make transparent), and change black to white. Finally I must ...
0
votes
2answers
70 views

How to draw image and text in Image Context?

I tried to draw text on the image.When I don't apply the transformations, then the image is drawn at the bottom left corner and the image and text are fine(Fig 2),but I want the image on the top left ...
0
votes
0answers
35 views

Problems with gps and map

I am trying to implement route drawing on a map, but have some problems, and hope you guys can help me! I am able to draw a route using coordinates, but the gps tracking is very strange. Is there a ...
0
votes
2answers
42 views

can not show the text of uilabel, custom view

Following some instructions at my first post, what I am doing is 1. create a class ( subclass of uiview) 2. fill it with gradient 3. add a uilabel on it What I am doing is : 1. in xib, i drag ...
0
votes
4answers
84 views

text is disappearing when filling the gradient for uilabel, custom uilabel

My goal is to add gradients for my uilabel by doing the following (CustomLabelBackGround is subclass of UILabel) @implementation CustomLabelBackGround - (id)initWithFrame:(CGRect)frame { if ...
1
vote
1answer
106 views

Draw a NSImage using cocoa

Currently I am drawing some shapes using Bézier Paths on an NSView. Where the drawing code get execute on drawRect: method and creates an image in the end. I don't want to show this View to the ...
-3
votes
1answer
52 views

CGContext blend with mask [closed]

I want to achieve such an effect background image mask image front image and I need that output would be like that: All mask image white pixels is front image and black pixels of mask image are ...
9
votes
2answers
284 views

Changes Brightness in color replacement

I am working on replacing certain color in image by User's selected color. I am using OpenCV for color replacement. Here in short I have described from where I took help and what I got. How to ...
2
votes
1answer
95 views

Drawing overlapping shapes in drawRect with different color causes edge-bleeding when anti-aliassing is enabled

I have a problem when drawing to equal shapes with a different color that overlap. When enabling anti-aliassing the transparent pixels that get generated bleed through and causes the artifacts as in ...
1
vote
1answer
40 views

the round corner of uiview does not look so great,uiview

I round the corner of my view using : self.instructionView.layer.borderColor = [UIColor orangeColor].CGColor; self.instructionView.layer.borderWidth = .5; ...
1
vote
0answers
148 views

Advice with optimizing -drawRect: method

    I want to draw 31 circles with different stroke width. It seems to me that I can not reuse it, because I can not scale it, all circles have different options. These views are not static and when I ...
0
votes
1answer
64 views

Animating arbitrarily-shaped CGPath to rectangle

I am using a CAShapeLayer to display a path that is updated as the user traces his/her finger on the screen. I'd like to transform this path to a rectangle that just encloses the path. I can compute ...
0
votes
1answer
83 views

Core Graphics Transparent Overlay

I'm replacing the background view of a UITableViewCell with my own custom subclass of UIView, in which I override the drawRect method with my own, which creates a multi-colored and changing ...
0
votes
1answer
340 views

Creating an animated GIF in Cocoa - defining frame type

I've been able to adapt some code found on SO to produce an animated GIF from the "screenshots" of my view, but the results are unpredictable. GIF frames are sometimes full images, full frames ...
0
votes
1answer
130 views

strange behavior with UIBezierPath addClip

I'm trying to learn CoreGraphics and i encounter a strange behavior, hope someone can help me understand whats going on... I draw a rectangle and in it I draw given amount of diamonds,the shapes can ...
1
vote
0answers
72 views

Core Graphics vs WebView for PDF display in iOS

I am working on this project where I am required to display PDF files. I have two options to do this. Using the UIWebView Using Core Graphics I've done some reading regarding both the approaches ...
0
votes
1answer
44 views

NSRect vs. CoreGraphics

I have a general question concerning drawing pretty simple shapes in an NSView. Is there a "rule" when to use the NSRect class struct (drawrect) versus using the CoreGraphics framework? What I ...
0
votes
1answer
153 views

Collection element of type 'CGSize' is not an Objective-C object

I'm trying a give a NSDictionary key value a CGSize, and XCode is giving me this error. My code: NSArray *rows = @[ @{@"size" : (CGSize){self.view.bounds.size.width, 100} } ...

1 2 3 4 5 15