Tagged Questions
0
votes
4answers
57 views
Overriding drawRect method in a UIView subclass & call it into another UIViewcontroller
I am a novice ios programmer and this is my first project.I am going to develop this project specifically for ipad. In this project i need to draw several circles & display data on it by parsing ...
0
votes
1answer
33 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
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
28 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
0answers
41 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 ...
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
vote
2answers
57 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 ...
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?
4
votes
3answers
102 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
0answers
70 views
Clipping with blurred edge core graphics
I am drawing on a custom UIView that I overlay above a collection view, I want to draw circles centered on the _centerPoints that are 100% transparent, with a feathering/blur on the edge so it doesn't ...
0
votes
0answers
165 views
Retina render in context performance issues
I have iPad application that needs to capture contents of view 4 times per second and save as image. I use CALayer renderInContext method and everything is ok on iPad2, but the problem is on iPad4. ...
0
votes
1answer
139 views
core text view memory leak
I have created a core text view and visually it's working great but i run it for 30 minutes with a lot of data coming in and it crashes. The debugger starts saying 'received memory warning'. I think ...
0
votes
0answers
60 views
iPad - CGContextShowTextAtPoint for multiline string
I am using following code snippet for drawing text:
CGFloat DegreesToRadiansText(CGFloat degrees) {return degrees * M_PI / 180;};
CGContextSelectFont (context, "Arial Rounded MT Bold", 18, ...
1
vote
0answers
49 views
Custom UIVIew is slower in landscape mode
I have implemented a custom drawing UIView like the one in http://blog.effectiveui.com/?p=8105.
It works great in iPad Portrait mode, but it becomes slow in Landscape mode even if I keep the same ...
2
votes
1answer
88 views
Effectively scaling multiple images in iOS
I have 15 images being displayed on a single view. I need to scale the images based on the user's voice (the louder they speak the larger the images need to scale). At the moment I am using ...
9
votes
3answers
335 views
How Can I Record the Screen with Acceptable Performance While Keeping the UI Responsive?
I'm looking for help with a performance issue in an Objective-C based iOS app.
I have an iOS application that captures the screen's contents using CALayer's renderInContext method. It attempts to ...
0
votes
0answers
130 views
CGContextDrawImage + CGContextClipToMask performance
I am using CGContextDrawImage and am not happy with the performance.
Here is my situation:
I have a CGImage that was created from a CGBitmapContext with kCGBitmapByteOrder32Big and ...
0
votes
1answer
92 views
CoreGraphics performance with gradients
I have multiple shapes on the screen which are moving.
Each shape can change based on its location and they are filled with gradient using CoreGraphics.
The performance of this is very bad - ~9fps on ...
0
votes
1answer
75 views
Draw horizontal linear gradient inside shape
I have the following code that draws a triangle based on some given angle.
How do I fill this shape with a linear (horizontal) gradient?
- (void)drawRect:(CGRect)rect
{
CGContextRef context = ...
0
votes
3answers
440 views
CoreGraphics (drawRect) for drawing label's and UIImageView in UITableViewCell
I have a UITableViewCell in which inside it I have 5 UILabel a UIButton and a UIImageView that fills out the cell as background. The performance seems to be a bit slow, so I was thinking of using ...
0
votes
0answers
82 views
Creating multiple UIbeizerPath with gradient in the same context of a view - iOS
I am trying to create multiple rounded rectangles through UIbeizerPaths in my view. Multiple Rounded Rects are created through a for loop and are then filled.
Now, rather than a solid fill, I am ...
1
vote
1answer
1k views
draw pie chart using iOS quartz 2D
I am looking for a tutorial where I can draw pie chart programmatically using Core Graphics or Quartz 2D in iOS. I want to understand how can we draw the PIE Chart which is gradient and having ...
-2
votes
1answer
88 views
I am making one of my makeup application and i want to create lips shape for face can anyone help me on this? [closed]
I want to create mouth libs shape in ios using UIBezierPath with 7 control point so i create code but i create different arc but not getting code is like that.
[aPath moveToPoint:
...
0
votes
2answers
106 views
UIGestureRecogniser on a masked UIView?
Is there a way to know if a 'tap' is inside or outside the masked area of a UIView? I'm using CoreGraphics to mask the UIView.
So far my code goes something like this..
- (void)viewDidLoad {
...
4
votes
1answer
706 views
Full Video Screen Capture with Video background and painting overlay performance issues
Long time stackoverflow reader, first time poster.
I'm attempting to create an iPad app called CloudWriter. The concept for the app is drawing the shapes you see in the clouds. After downloading the ...
0
votes
0answers
206 views
Draw CGGlyph at the end of CTLine
I am customizing a UIView to draw text using Core Text using following code
- (void)drawRect:(CGRect)rect{
//calling super
[super drawRect:rect];
//getting current graphics context
...
0
votes
1answer
675 views
Rotate an AVAsset with AVAssetExportSession
I'm trying to rotate a video to its correct orientation using an AVAssetExportSession and I always get the following error:
Error Domain=AVFoundationErrorDomain Code=-11841 "The operation couldn’t be ...
0
votes
1answer
213 views
How can I draw lines on big images using gesture recognizer without memory issues
I am working on an app, and at some point the user needs to draw something over an image.
The code i wrote works just fine for images around 1500x1500 and smaller, but once the images get bigger, the ...
0
votes
1answer
153 views
How to fill space between two UIBezierPaths
I'm working on drawing application which provides drawing lines with variable line width which depends on drawing speed. This behavior inspired by Paper app.
Algorithm which I'm trying to implement ...
1
vote
1answer
52 views
Image viewer without smoothing
How to create an image viewer for iOS which doesn't do image smoothing when zooming? Like the image viewer of Screenshots Journal.
1
vote
1answer
70 views
Filing color like effect in iphone app
I am trying to make a "feeling app" which has an image which will change its color up to that location where the user touches it. I implemented UIPanGestureRecognizer for that and found the touch but ...
0
votes
0answers
128 views
Get frame of UIImageview's image covered - iOS
I have one image which has some transparent area and i wants to ignore that area.
And get that covered frame with maximum possibility..
here i have upload one image so you get idea what i am asking. ...
0
votes
2answers
161 views
Difference in size when converting UILabel to UIImage
I am drawing a UILabel to a UIImage.
The UILabel has a width of 193.5 while the resulting UIImage from the code below is 194 wide. Why is this?
...
0
votes
2answers
385 views
Drawing Circle at CGPoint touchPoint
I am trying to draw a circle (small like a dot) at the exact point of a UITouch.
The problem is, when I get the touchPoint from the user touch, I have to then draw the Rect in which to place the ...
1
vote
1answer
188 views
Coloring In between CGPaths
I am building a drawing type tool into my app.
It takes a touch points from the user and draws lines between the points. If the user creates 3 touch points or greater, it joins the last point to the ...
1
vote
1answer
526 views
How to create a perfect half circle with CGPathAddCurveToPoint?
I am trying to create a perfect right half circle of 15 points radius with CGPathAddCurveToPoint, like this:
CGPathMoveToPoint(path, NULL, 0, 0);
CGPathAddCurveToPoint(path, NULL, 15, 0, 15, 30, 0, ...
0
votes
1answer
122 views
On iOS, how to fill a path with an outline? (or both fill and stroke the path)
On iOS, if we do
CGContextMoveToPoint(contextFoo, 0, 0);
CGContextAddLineToPoint(contextFoo, x, y);
CGContextAddLineToPoint(contextFoo, x2, y2);
// ... and many more CGContextAddLineToPoint
then ...
1
vote
1answer
131 views
Text Formating in PDF Reader and Writer in iOS
In my application I have to show a PDF reader (PDF from a server) and copy everything to another PDF. I am using Reader to show the PDF.
But it is unable to format the text inside the PDF. Bold text ...
1
vote
1answer
101 views
Show UIActivityIndicator while drawing in Quartz
I have a complex Quartz routine in drawRect for a custom UIView subclass. It can take a few seconds to draw. What I'd like is to show a UIActivityIndicator while it is drawing. But then the indicator ...
0
votes
0answers
102 views
Optimizing a Quartz shadow drawing
I've seen references to defining the exact path for a shadow using shadowPath on a layer but I'm wondering how to optimize shadows that you are drawing inside drawRect?
I have a drawing with many ...
1
vote
1answer
204 views
iOS: Looping Chain of Core Animations Issue
I'm trying to make some animations in my app but I'm having a few bugs with them. Everything starts with my "startAnimatingIndicators" method. What this method does is animate two vertical lines (both ...
0
votes
2answers
449 views
Drawing graph line using Core Graphics
I am trying draw an random graph which display on imageview, I try this code
-(void)createGraph{
UIGraphicsBeginImageContext(self.drawImage.frame.size);
[drawImage.image ...
0
votes
1answer
974 views
iOS CoreImage Edge detection
I am writing an iOS as and I need to be able to do edge detection in the image. I actually want something similar to Photoshop's trace contour. Since I basically need to get the simplest set of lines ...
0
votes
1answer
788 views
Animate filling of a circular progress meter using an image mask in iOS
I need to animate the filling of a circular progress meter with a HUD-like pie animation. I've found examples of how to do this using Core Animation to animate a path in a solid color. The difference ...
0
votes
2answers
1k views
CGContextDrawLayerAtPoint is slow on iPad 3
I have a custom view (inherited from UIView) in my app. The custom view overrides
- (void) drawRect:(CGRect) rect
The problem is: the drawRect: executes many times longer on iPad 3 than on iPad 2 ...
1
vote
0answers
292 views
Drawing a CGPDFDocumentRef
I'm trying to draw a CGPDFDocumentRef on an UIView. Everything works just fine, excepting by the fact that the PDF is being drew too small on the view. I'm not sure why it's happening. I've tried ...
0
votes
1answer
349 views
iOS CTFramesetterCreateWithAttributedString not sizing correctly
I am building an app that takes a few different text files and strings them together, then builds a pdf out of them. I needed to add the file's text add separate times so I can add in hyperlinks to ...
0
votes
0answers
275 views
Quartz : Transfor rectangle image into a trapezoid shape
I need to transform rectangle image into trapezoid shape, then draw onto another image.
Any ideas how to implement the transformation to trapezoid shape by means of Core Graphics ?
Any other ...
2
votes
0answers
189 views
Reducing image quality without reducing its geometrical size
I've and UIImage with transparency.
I'm uploading the PNG representation of the UIImage to my web service, which accepts data which is less than let say 800K.
So basically I would like to reduce ...
-3
votes
1answer
222 views
draw gradient orientation
So I have the following code:
-
(void) drawLinearGradient:(CGRect) rect
{
CGContextRef context = UIGraphicsGetCurrentContext();
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
...


