Tagged Questions
1
vote
0answers
51 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
0answers
47 views
Apply gradient color to arc
I am trying to build piechart with gradient colors for arcs. I use following code to create arc. Could someone please tell me how to apply gradient color to only arc area and not to whole rect?
- ...
0
votes
0answers
58 views
iOS 5 Core Graphics Memory Spike
I recently tuned my app to be more memory efficient and ran into a weird memory problem on iOS5. Note my app does not have automatic reference counting turned on. First, I got the live memory from ...
1
vote
3answers
106 views
CGContextRestoreGState seems not to restore the previous state
So, I need to draw a series of dotted lines along an axis.
In the drawRect method I call another method to draw the axis..
In that method I save the GState draw the axis and then save the gstate again ...
7
votes
1answer
597 views
Core Image CIColorControls brightness filter creates wrong effect. How do I change my image's luminance?
I'm creating a color picker for iOS. I would like to enable the user to select the brightness (luminance) and have the color wheel reflect this change. I'm using Core Image to modify the brightness ...
0
votes
0answers
40 views
Why setNeedsDisplay is not working properly
One of my views implements drawRect with custom drawing code. The painting depends on some internal variables.
When my controller changes that variables, it calls setNeedsDisplay, but it seems ...
1
vote
2answers
159 views
Core Graphics questions regarding context. CGContextFillRects: invalid context 0xa88a500
Usually when you draw in a invalid context, you see something like invalid context 0x00, but this is not the case, as I see an address. And all my Core Graphics code is inside drawRect of a view.
...
1
vote
0answers
134 views
Rendering interactive PDFs in IOS
To render a PDF in Objective C we are calling CGContextDrawPDFPage method. In IOS6, interactive PDFs rendering using this method take large amounts of memory and it leads to memory warning after some ...
1
vote
1answer
664 views
Drawing a very thin line with CGContextAddLineToPoint and CGContextSetLineWidth
I want to draw a very thin hairline width of a line in my UIView's drawRect method. The line I see that has a value 0.5 for CGContextSetLineWidth doesn't match the same 1.0 width value that is used to ...
3
votes
1answer
378 views
UIEdgeInsets ignored on CGContextDrawImage within a UIGraphicsBeginImageContextWithOptions
I am struggling getting Image Insets to work when drawing to an off screen buffer.
Using the resizableImageWithCapInsets: on an UIImage directly setImage: into a button works fine for me:
UIImage * ...
1
vote
0answers
132 views
CGAffineTransformationMake behaves oddly for iOS 5
Regarding: iOS 5 & 6. CGAffineTransformationMake
What I have: one UILabel and one UIImage
What I want to do: I am trying to create a flipping card. When I tap on UIImage, it should flip ...
0
votes
2answers
141 views
Need help animating content in drawRect
I am trying to understand how to animate simple objects in - (void)drawRect:(CGRect)rect in my UIView subclass (called MyView). I'm new to core animation and just not sure on the best way to do ...
0
votes
1answer
70 views
Making multiple moving images respond to taps
In the app, I have several images (same shape and size, different colors) that move on the perimeter of a circle, kinda like cursors acting as compass needles. I want to be able to tap each of these ...
0
votes
1answer
155 views
Painting in bitmap context with my finger and getting double image and doted line, any ideas?
I have this code to paint with my finger on ipad in bitmap context. And i'm getting lined (long dots) line instead of full line and the line is flickering when i move my finger, and it doubled in ...
0
votes
1answer
537 views
How to create a UIImage with an outer glow and smooth rounded corners from a UIColor
I am using a UIImageView and trying to dynamically create image with UIColor using CoreGraphics in IOS. I tried using gradient but I am not able to get the gradient effect on the corners.
Here is ...
0
votes
0answers
115 views
iOS 2D charts using Core-graphics
I need to draw something like attached here. I have a basic understanding about the Core graphics framework ( I know how to draw a simple pie chart only in 2D) and I want to know how to get the 3D ...
0
votes
0answers
171 views
CGAffineTransformMakeScale and Rotation at once?
I want to apply scale and rotation at once.Problem is when i do this rotation is correct but scale reduce. I test scale and rotate separately and it working perfectly. Following is my code
...
2
votes
1answer
44 views
Displaying UIView1 above UIView2, but having UIView2 above UIView1 input-wise
This is an odd scenario, but I have two overlapping UIViews, and I need to display one above the other, but give the lower one precedence on receiving input. If that makes any sense. I can clarify if ...
0
votes
1answer
150 views
Lining Up Bezier curves taken from SVG files
So I am currently working on a subclass of UIView which uses TBXML to parse a SVG XML files and strip the 'g' path instructions out. Then it passes these sets of instructions to SvgToBezier - a simple ...
0
votes
1answer
166 views
Speed up or optimize persistent drawrect
I'm using the following code to create a persistent DrawRect for a finger painting type exercise
When I run on the simulator it is fine, when I run on the iPad it gets delayed turning curves in ...
0
votes
1answer
321 views
iOS Newbie: Need help understanding Core Graphics Layers
A bit of a newbie question for iOS, just started learning about Core Graphics but I'm still not sure how it's integrated into the actual view
So I have a method that creates a CGLayer ref, draws some ...
0
votes
1answer
371 views
erase a persistent drawRect
I at last managed to get DrawRect that did not clear all the time using
(I also have the setClearsContextBeforeDrawing:YES )
- (void)drawRect:(CGRect)rect
{
...
0
votes
1answer
130 views
CoreGraphics or Quartz Drawing keeps clearing
I'm using
Where penLayer is a UIView
UIGraphicsBeginImageContext(penLayer.frame.size);
CGContextRef context = UIGraphicsGetCurrentContext();
//My Drawing Code
penLayer.image = ...
2
votes
1answer
177 views
Recreate selected UITabBarItem border
I want to recreate a tab bar but I stumbled on this problem. As you can see in the images below my current (right image) selected tab bar item is a lot less crisp or sharper than the one from the ...
10
votes
3answers
776 views
issue in drawing line using core graphics : bubbles are shown
Using core graphics , I am trying to draw a line, in that when I try to add shadow is creates lin and bubbles inside the line, see the image, I am not able to solve the issue. please find my code ...
2
votes
3answers
361 views
Writing with digital pen on ipad/iphone by keeping hand on screen
I am working on a drawing app, with pen touch, on iphone and ipad. Till now , I have implemented the basic drawing and tested with digital pen and it work fine, but I have one issue, while drawing on ...
0
votes
0answers
508 views
How to properly draw sine wave?
I need to draw sine wave (user chooses the frequency). My current approach is drawing lines between calculated points (point's that of course correspond to the sine wave's values). This works, but ...
1
vote
2answers
1k views
CoreGraphics Image resize
This code is from Apple's WWDC 2011 Session 318 - iOS Performance in Depth and uses CoreGraphics to create thumbnails from server hosted images.
CGImageSourceRef src = ...
2
votes
1answer
117 views
Transparency and CGLayers
I'm creating a number of CGLayer's for my iOS5 app like this:
layer_1 = CGLayerCreateWithContext (context,self.bounds.size, NULL);
offlineContext_1 = CGLayerGetContext (layer_1);
layer_2 = ...
0
votes
0answers
939 views
Getting a smooth Bezier Path using catmullRomSpline
I am trying to get a smooth Bezier Path , for that I tried using catmullRomSpline algorithm, mentioned here Drawing Smooth Curves - Methods Needed..
But I am not getting smooth curves, below is my ...
0
votes
2answers
84 views
Which technology should I use to draw on iOS?
I'm developing an app which contains a view in which I have to draw several things.
My view looks like that:
That's just a part of the entire view, but it's the same thing all the view's height.
...
0
votes
1answer
142 views
How do I use a CALayer to custom draw in a UIButton
I'm trying to do draw a fancy UIButton using Quartz. I've declared my own button class like this:
@interface MyButton : UIButton
@end
In the .m file I'm constructing the button:
- ...
0
votes
4answers
2k views
UIBezierPath not drawing a smooth curve
I am using UIBezierPath for drawing, and I have written the code on touch events and its working fine, but my curves are not smooth, when I am move my finger around and draw some curve, they are not ...
1
vote
1answer
920 views
Drawing 1 pixel wide paths in iOS
I am drawing a path in my drawRect implementation on a UIView with:
CGContextSetLineWidth(context, 0.5);
CGContextStrokePath(context);
With anti-aliasing on on my CGContext, I can't seem to draw 1 ...
2
votes
2answers
2k views
iOS 5 - Draw a circle on touch
I want to make my app to draw a circle centered at the touch coordinates.
Here's the code I have right now, it is messed up for sure, I haven't had any practice with drawing things and working with ...
0
votes
1answer
108 views
CGContextShowTextAtPoint how to write text in horizontal from bottom to top?
I would like to write a text in CGContext horizontally from bottom to top? I did the following.
CGContextSelectFont(cgContext, "Arial", 8, kCGEncodingMacRoman);
CGContextSetTextMatrix(cgContext, ...
2
votes
2answers
1k views
Drawing rounded rect in core graphics
I want to replicate the event markers of the default iPad calendar, which look like this:
I'm trying to use coregraphics for this, painting a path of a rounded rect. This is the result I could come ...
2
votes
3answers
547 views
Get string-length for a given font and rect
I have a custom UIView class, and in the - (void)drawRect:(CGRect)rect I want to draw some text. However I want the text block to be limited to a maximum width of 84px at a system font size of 12. If ...
0
votes
1answer
235 views
speeding up drawing of an OverlayView
I'm drawing an Image (2.5 MB, PNG image data, 1240 x 1240, 8-bit/color RGBA, non-interlaced) on a MKMapView by Subclassing MKPolygonView and overriding the drawMapRect:zoomScale:inContext:-method as ...
1
vote
1answer
363 views
how to build an undo stack in iOS/core graphics
I'm trying to add an undo / redo capability to a set of touches..
I have this code for touchesBegan and moved:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
NSLog(@"%s", ...
3
votes
3answers
1k views
How to inject exif metadata into an image, without copying the image?
I have previously asked this question: How to write exif metadata to an image.
I now have found a way to inject metadata. However, it results in a copy of the image into memory. With large images, ...
0
votes
0answers
139 views
Graph visualization with cocoa/core graphics (iPad)
I'm going to implement some GUI for the graph (not plot, the one with vertices and edges). And I what to ask what will be the best design. I thought about making vertices a subviews, that can handle ...
0
votes
1answer
144 views
Navigation bar stops working after applying a layer mask
I used a CAShapeLayer to create a mask, which I gave round corners at the top left/right then applied it to my navigationController's navigationBar.
It works like a charm, but I've now noticed I ...
0
votes
1answer
46 views
Setting the Frame of an Object Programatically Has No Effect
I need to me a UIAlertView viewer than the standard size.
This is what I'm trying so far:
UIAlertView *addNewDevice = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Add New Device", "Title ...
0
votes
1answer
679 views
Guide to programmatically drawing in iOS [closed]
I'm looking a good guide for using drawing in Xcode.
I prefer to learn by doing so a guide with examples will help me a lot.
So far every guide I have found either doesn't work at all or its for an ...
4
votes
4answers
3k views
How to scale down an image in iOS, anti-aliased but not soft?
I have tried the UIImage+Resize category that's popular, and with varying interpolation settings. I have tried scaling via CG methods, and CIFilters. However, I can never get an image downsized that ...
1
vote
1answer
281 views
IOS 5: UIView converted to video and the resulting video is corrupted
I want to grab the UIView, convert to image and than store that image in a video file (.mp4).
I use the next portion of code which grabs the image and puts it to pixel buffer:
BOOL appended;
...
0
votes
0answers
207 views
Unexplained crashes generating video
I develop some application for iPad which includes media capturing and exporting. The code contains this part:
BOOL appended;
if(input.readyForMoreMediaData==YES){
//CVPixelBufferRef ...
2
votes
2answers
389 views
Bad access on CGContextClearRect
I am getting the error EXC_BAD_ACCESS on the line CGContextClearRect(c, self.view.bounds) below. I can't seem to figure out why. This is in a UIViewController class. Here is the function I am in ...
3
votes
2answers
2k views
CIFilter not working properly, returns null image
Hey all i've been using some filters. Not all of them seem to work normally like say for example CISepiaTone and CIHueAdjust.
recently i tried CIGLoom filter and it returns a null image.
...



