Tagged Questions
0
votes
1answer
34 views
Add Opacity to CGPath
CGPathRef defines an opaque type that represents an immutable graphics path. CGMutablePathRef defines an opaque type that represents a mutable graphics path.
But how do we change the opacity in the ...
1
vote
1answer
31 views
Can I use UIBezierPath to draw a shadow image around a UITableView section?
I have a shadow image that I would like to draw around the outer edge of a grouped UITableView section. This is the image:
I can get the UIBezierPath that represents the rect I want to draw around, ...
0
votes
1answer
29 views
Is CGPathContainsPoint() hardware accelerated?
I'm doing an iOS game and would like to use this method for collision detection.
As there are plenty (50+) of points to check every frame, I wondered if this method runs on the iDevice's graphics ...
0
votes
2answers
49 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
1answer
49 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
20 views
Drawing on a UITableViewCell backgroundView using CoreGraphics
I have a subclass of UITableViewCell where I need to draw a custom backgroundView for the cell. Implementing drawRect:, I can draw the view fine, but it is behind the tableView and tableViewCells.
...
1
vote
3answers
52 views
iPhone : How to change color of particular pixel of a UIImage?
I have a UIImage, I want to change colour of its particular pixel, say 224 x 200th pixel. How can I do this? Is it even possible to do? Thanks in advance.
0
votes
0answers
32 views
Drawing straight lines when touched moved IOS
I have planned to do simple drawing up, using that use can draw straight lines and free hand drawing, based on the selection it change. But the problem is straight line gets repeated from the starting ...
0
votes
3answers
26 views
iPhone : How to get colour of each pixel of an image?
I want to get color of all the individual pixels of an image.
To elaborate
Let say I have an image named "SampleImage" having 400 x 400 pixels
Basically I want to create a grid from 'SampleImage' ...
0
votes
1answer
31 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) {
...
0
votes
1answer
34 views
Using Core Graphics to draw a separator line on top of standard grouped tableView cell
I can't believe I am asking the classic "How do I draw a line" question, but it is a little more complicated than that.
I have a grouped tableview whose separatorColor I have set to clear. This ...
0
votes
1answer
28 views
iPhone - setStroke on an CGDrawArc using custom color not working
I'm drawing a full circle using arcs in Core Graphics. Each arc of the circle is a different colour. If I use standard colours (e.g. [UIColor redColor] ) it draws fine. But if I specify a custom ...
-1
votes
0answers
25 views
Detect wall (surface) color and change color via color picker [closed]
Is there is anyway to detect wall or surface color via live video stream, and change the wall color via color picker. I referred GPUImage. But i can't understand and use my app.
0
votes
0answers
26 views
crop AVCaptureVideoPreviewLayer and apply color effect
I have cameraView using AVFoundation framework. When i alloc AVCaptureVideoPreviewLayer it display videoStream. How to apply crop to some portion of this AVCaptureVideoPreviewLayer layer and apply ...
0
votes
1answer
76 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 ...
1
vote
1answer
39 views
how to shift the slider image knot outside
i have difficulties understanding the math behind on how to calculate the circumference of the knots to the center of the circle. i hope you guys can give me some pointer.
the current calculation set ...
7
votes
3answers
213 views
iphone : How to implement the page flip effect without curl?
I need to implement the page flip effect in an iOS app. But the the effect should not curl the page like it does with UIPageViewController and some other third party libraries that I have checked . ...
0
votes
1answer
45 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 ...
-1
votes
2answers
67 views
How to draw a full circle with image
I'm pretty new with core graphics. I need to draw a full circle. How do I go about it? I currently have a masked circle.
I referred to this example.
//Use the draw rect to draw the Background, the ...
0
votes
2answers
123 views
CGAffineTransformMakeScale not functioning properly
I am having trouble with CGAffineTransformMakeScale. I am displaying a view & hiding it using below code. For the first time it shows & dismissed perfectly. But after than its not showing up ...
1
vote
2answers
61 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 = ...
1
vote
2answers
53 views
Customized Animation in iphone
I am creating Application which have so many Customization. Customization in the sense, I want to give new look to my application. In the part of customization I want to add THIS kind of animation ...
1
vote
0answers
45 views
pencil texture in drawing app
I am developing an drawing application, I would like to have pencil effect like Paper (Fifty Three) app on App Store. Can anyone guide me a way to do this? I have try UIBezierPath strokeWithBlendMode ...
0
votes
3answers
81 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
0answers
68 views
iOS painting Core Graphics Undo/Redo
Currently i am using core graphics to draw lines. How can i implement undo redo for this ? This is the code i am using to draw.
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
...
2
votes
1answer
41 views
Bounds of a rotated UIView and Core Graphics
I have a subclass of UIView which is drawing a location icon. When I rotate the view a few degrees it's bounds (highlighted in green using CGContextAddRect) seem to change drastically causing my ...
0
votes
1answer
29 views
Define CGPoint having angle and diameter
I believe for some could be very simple to answer and help me.
I have a circle defined in drawRect and wrote a code to define arc of the circle.
CGFloat width = ...
0
votes
2answers
64 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 ...
-1
votes
1answer
45 views
Add eraser tool after draw paint
I have paint app. When i click button it launch paint view than user can paint. After i come back then click button the paintview won't reset. How can i reset a view in button click after draw pain.
...
0
votes
0answers
30 views
Convert YCbCr CIImage to RGBA CGImage
How do I convert from a YCbCr CIImage to RGBA format so I can create a context and then create a CGImage or UIImage? Is there a CIFilter for that purpose?
9
votes
2answers
281 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 ...
0
votes
1answer
79 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 ...
1
vote
1answer
70 views
get CGPoint from coordinates of map OR get CGPoint from MKMapPoint iphone
Hello for a navigation based application i need to get CGPoint from coordinates OR MKMapPoint of a MKMapView. I want to draw a line between these points but not a poly line.
I know all about ...
2
votes
1answer
232 views
iOS - Clipping union of two paths using UIBezierPath appendPath
I'm attempting the create a clipping path in the shape of a plus sign, so that subsequent paths that I draw into the same context have this portion removed. I create the clipping path using two ...
4
votes
3answers
95 views
Inverse UIlabel text color when its frame intersects an UIView
Hi Im trying to change the text color of a UILabel in the case when the labels rect intersects an UIView, i was thinking maybe there is a property or something i can use. Like in the image below:
...
0
votes
1answer
120 views
QuartzCore - Adding Rounded Corners to a Polygon
I'm attempting to draw a translucent black rectangle with a triangle cut out of the center.
I have this working perfectly with the code below. However, I'd like to round the corners of the triangle.
...
0
votes
1answer
533 views
CGContextClipToMask not clipping
I am trying to draw an inset shadow inside a rounded rectangle by clipping away the stroke of a path using a clipping mask, leaving only the shadow behind. The ultimate goal is to approximate the ...
1
vote
1answer
190 views
Trying to replicate iPhone keyboard button
I have an application where I'm trying to implement my own custom keyboard. This custom keyboard will look almost exactly like the default iPhone system keyboard with little twists here and there to ...
1
vote
1answer
309 views
iPhone how to clip half of the ellipse
I have drawn ellipse:
CGContextFillEllipseInRect(contextRef, CGRectMake(50, 50, 50, 128));
But i only need a half of ellipse, is there a way to clip the other half?
1
vote
1answer
191 views
Best way to obtain frame value after transform?
I have an imageview that has a pinchgesturerecognizer attached to it. In the pinchgesturerecognizer delegate method, I need to calculate the frame value of the transformation before it occurs in order ...
3
votes
5answers
4k views
how to crop image in to pieces programmatically
I need to divide an image into 9 pieces programmatically. Any suggestions on how to do this?
6
votes
1answer
2k views
How can I tell when a UIWebView has finished drawing to a context?
In my code I'm trying to show a UIWebView as a page is loading, and then, when it's done, capture an image from the web view to cache and display later (so I don't have to reload and render the web ...
14
votes
1answer
11k views
Resize UIImage with aspect ratio?
I'm using this code to resize an image on the iPhone:
CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0);
UIGraphicsBeginImageContext(screenRect.size);
[value drawInRect:screenRect ...
56
votes
10answers
64k views
How to Rotate a UIImage 90 degrees?
I have a UIImage that is UIImageOrientationUp (portrait) that I would like to rotate counter-clockwise by 90 degrees (to landscape). I don't want to use a CGAffineTransform. I want the pixels of the ...
467
votes
6answers
91k views
UIImagePickerController, UIImage, Memory and More? [closed]
I've noticed that there are many questions about how to handle UIImage objects, especially in conjunction with UIImagePickerController and then displaying it in a view (usually a UIImageView). Here is ...
38
votes
7answers
23k views
How do I make UILabel display outlined text?
All I want is a one pixel black border around my white UILabel text.
I got as far as subclassing UILabel with the code below, which I clumsily cobbled together from a few tangentially related online ...
7
votes
2answers
7k views
How to convert colors from one color space to another?
Is there a Cocoa Touch way to convert colors from one color space to another?
At the end of this code:
UIColor *grey = [UIColor colorWithWhite: 0.5 alpha: 1.0];
CGColorRef greyRef = [grey CGColor];
...
106
votes
4answers
59k views
How do I draw a shadow under a UIView?
I'm trying to draw a shadow under the bottom edge of a UIView in Cocoa Touch. I understand that I should use CGContextSetShadow() to draw the shadow, but the Quartz 2D programming guide is a little ...
91
votes
9answers
69k views
UIImage: Resize, then Crop
I've been bashing my face into this one for literally days now, and even though I feel constantly that I am right on the edge of revelation, I simply cannot achieve my goal.
I thought, ahead of time ...





