2
votes
1answer
26 views

How do I draw into a bitmap without antialiasing/interpolation in iOS?

I'm trying to programmatically draw into a UIImage like so: - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. ...
0
votes
1answer
44 views

How do I programmatically draw to a display in iOS?

I have a method of drawing to the screen that has many benefits for my application except for the small issue that it doesn't work... at all. I have an iOS program with a UIImageView widget and I'm ...
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 ...
1
vote
1answer
90 views

iOS: CGAffineTransformScale moves my object

Building on a question I had earlier. Simple button trying to transform a label. I want it to shrink by 0.5, which works but for some reason it also moves the object as it does it. The label jumps up ...
0
votes
1answer
25 views

iOS: Animate item twice

Just starting out with core graphics. Playing with a simple button and label. I want this label to rotate 180 degrees on each click of the button. It only animates on the first click (the console does ...
2
votes
1answer
102 views

Rounded Corners at bottom CoreGraphics iOS

To draw border at the bottom, left and right . rounded corners at the bottom clip to the border Fill the colour with the actual colour, which might be set in the .xib file, but in the following ...
0
votes
0answers
10 views

How to transform the Touch-Position on an UIImage to the real Pixel-Position ?

I am currently trying to implement functionality that a user can select a region of an UIImage inside a UIImageView with a pan gesture. - (IBAction)handlePan:(UIPanGestureRecognizer *)recognizer { ...
0
votes
2answers
43 views

How to select a region of an UIImage and then create a new one out of it?

is there an easy way of selecting a region of an UIImage Instance and then creating a new image out of it? I tried it using a pan-gesture Recognizer for getting the coordinates that the user selected. ...
0
votes
1answer
142 views

UIImage to raw NSData / avoid compression

I have my own image downloader class, it holds a queue and downloads images one (or a certain amount) at a time, writes them to the cache folder and retrieves them from the cache folder when ...
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 ...
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
0answers
44 views

iOS - Memory Issues when building PDF from multiple PDFs

I am trying to create a single PDF from multiple PDF files in iOS. In my testcase I have around 100 small PDFs with 3 pages each. I download them from a server and put them together in a single file ...
0
votes
0answers
86 views

How to move UIImageView while resizing?

I'm trying to move a UIImageView up and down while making it bigger. Now when I do those things separately it works like I thought it would, but when i combine them it looks really glitchy and like I ...
0
votes
0answers
80 views

Draw an complete ellipse when just start and end points given

I am new to the Xcode world. I need to complete an ellipse if the user just draw an arc with a free hand. Till now i am able to draw ellipse by using CGRectMake but the problem is that the end point ...
1
vote
0answers
79 views

How can I set a CALayer delegate to use for Core Graphics drawing?

I am trying to understand how I can use Core Graphics to draw on my CALayer. So far I think I know that I should set a controller object as the delegate of the layer, and then call my CG commands in ...
0
votes
0answers
34 views

Generating app image assets with core graphics

I am trying to generate all of my app's image assets at runtime using Core Graphics. Below is a sample snippet. + (UIImage *)textFieldRect:(CGSize)size { if ...
0
votes
0answers
115 views

How to make NSImage automatically scale to NSImageView?

I am trying to implement a programatic image that is drawn by a draw method which is capable of drawing a perfect image at any resolution. Think of a programmatic texture that can be sized up to fill ...
0
votes
0answers
99 views

Stroke path on UIImage appears with very little blurry border around, how to remove?

I stroke a line on a graphic context with CGContextStrokePath, i colore it with CGContextSetRGBStrokeColor It is useless for me to show you a picture, as the border effect is too thin. I need this ...
0
votes
0answers
98 views

Replace green color by transparent on a UIIMage

I draw green line on my UIImage with this : CGContextSetRGBStrokeColor(UIGraphicsGetCurrentContext() , 0 , 1 , 0 , 1); It works well But after i want to replace my green strokes by transparent I ...
1
vote
0answers
139 views

Drawing the inner shadow with CoreGraphics

I wanted to draw inner shadow in my drawing. I have drawn a red badge using core graphics and wanted a inner black shadow along the badge boundaries. Please help how to achieve this? I am attaching ...
0
votes
1answer
71 views

Finding Bounding Box of Rotated Image that has Transparent Background

I have a UIImage that has a transparent background. When rotating this image, I'd like to find the bounding box around the graphic (ie the nons transparent part, if you rotate it in a UIImageView, it ...
2
votes
1answer
102 views

Keep text on an image readable while rotating the image

I have an image view that looks like a wheel. This view detects touch events on each of the colored sections. The problem I have is that when I rotate this wheel, the UILabels on top of the view need ...
0
votes
2answers
227 views

Drawing a UIButton/UIBarButtonItem to use parent bar's tintColor?

I've got a bit of a dilemma. It's not a dealbreaker, but I'm interested in a decent answer if there is one. I've been using a UIButton with a custom subview inside of a UIBarButtonItem (as the bar ...
1
vote
3answers
122 views

background color using core graphics

I have the following code in my drawRect: CGContextSetFillColorWithColor(context, [UIColor redColor].CGColor); CGContextFillPath(context); I basically wanted to set the background of this view to ...
0
votes
0answers
67 views

How do I draw a view exactly like this badge?

Here it is: I want to mimic the glossy gradient, the border and the colour. How is this done with Core Graphics? Here is how my control looks right now: I just need to add this cool border! ...
0
votes
1answer
118 views

Getting an alpha channel when using CIFilters [How to clear it]

I have a bit of an issue with applying a sharpening filter on a UIImage. The code works perfectly but the problem that the resulting UIImage has an Alpha channel. This in turn causes some performance ...
0
votes
1answer
101 views

Disable blending of UIView with its superview

I am creating say a rectangle in coregraphics - using CGContext functions in the - (void)drawRect:(CGRect)rect method of UIView and adding it to a superview. When i change the background of the ...
0
votes
1answer
112 views

CGContextRef not being created

-(CGImageRef)drawing{ CGContextRef context; GLubyte *bitmapData; size_t width, height; width=super.size.width; height=super.size.height; bitmapData = (GLubyte *) calloc(width * ...
0
votes
1answer
44 views

How to determine if a location is inside a UIbeizerPath?

How do I go about determining if a certain point lies in the beizer path or not?
0
votes
1answer
239 views

How to draw on two separate layers iOS, coregraphics

I need help with drawing something like this: I have been told that the gray background bar and the purple bar should be drawn on separate layers. And then the dots there that signifies the chapters ...
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 ...
0
votes
1answer
51 views

CoreGraphics - How do I draw rects one by one on a plane?

I have a sort of progress bar which is actually a visual representation of the read content of a book. This bar is a horizontal line which is filled up at areas the book was read at. As an example, if ...
0
votes
1answer
186 views

CAShapeLayer redraws itself when any other animation occurs?

I have a graphic that is comprised of CGMutablePaths. I'm taking these CGMutablePaths, and separating them into CAShapeLayers based on the different area of the graphic they represent. Below is a ...
1
vote
0answers
187 views

Clip, then stroke a UIBezierPath

I want to stroke the edges of a UIBezierPath that are clipped by the current window. I already stroke the path, but it extends beyond the window. In the simplified illustration here you can see the ...
0
votes
0answers
69 views

UILabel, colorWithImage and CGContextSetPatternPhase

An image(e.g. a gradient background) is set as the textColor property of a UILabel. When the orientation is changed, how to make sure that the same pattern is also scaled and aligned the same way if ...
0
votes
0answers
147 views

CAShapeLayer freaks out when UIView Animation Occurs

I have a CAShapeLayer that consists of multiple sublayers which comprise a graphic that is made up of a lot of paths. I stored this graphic in CAShapeLayer for performance purposes not with the ...
0
votes
1answer
174 views

Difference Between [[CAShapeLayer alloc] init] and [CAShapeLayer layer]

I noticed that most people, when initializing a CAShapeLayer use: CAShapeLayer *shapeLayer = [CAShapeLayer layer]; Rather than using the initializer: CAShapeLayer *shapeLayer = [[CAShapeLayer ...
-1
votes
1answer
94 views

CGRectApplyAffineTransform Incorrect Result?

I have a bit of code that is trying to figure out the correct bounding box for a rectangle that is being rotated -5 degrees: CGRect rectangleToRotate = CGRectMake(0,0,104.949, 131.017); ...
1
vote
1answer
186 views

Correct GraphicsContext When Using UIGraphicsGetImageFromCurrentImageContext

I have the following method where I'm trying to do some drawing into an image: - (UIImage*) renderImage { UIGraphicsBeginImageContextWithOptions(self.size, NO, 0); CGContextRef context = ...
0
votes
0answers
96 views

How to get path segments from a CGPath?

How do I get a path segment from a CGPath by specifying a start and an end point on the original path using two float values that describe the distance from the path's starting point? Please note: ...
0
votes
1answer
207 views

Stroking a CGPath with a gradient?

I've been looking into this for a while now, and as a beginner, I can't seem to get it done. What I want to do is take a simple gradient, and use it to stroke a CGPath. I tried using ...
0
votes
2answers
66 views

Most efficient way to translate view back to (0,0) origin after scaling or rotating?

I'm scaling an object as below: CGAffineTransform newTransform = CGAffineTransformScale(self.graphicView.transform, (graphicViewSize.width + resizeValue) / graphicViewSize.width, ...
1
vote
0answers
92 views

How to draw laid out glyphs one by one - core text

I have a string that I can paint in Core Text like so: CGContextShowGlyphsAtPoint(context, 0, 0, glyphs, glyphCount); Works great. Now I need to paint each of those glyphs individually, in the ...
0
votes
1answer
105 views

Storing CGColorRef in NSArray as Pointer

I get confused sometimes when working with CG elements, and have the following scenario that seems simple but is giving me trouble. I have a CGColorRef property called fillColor, for which I ...
1
vote
1answer
62 views

CoreGraphics, Memory Deallocation, Return Values

I seem to always have a lot of trouble with managing memory with CoreGraphics when I'm returning from a method. Take the situation below: - (id) init { CGMutablePathRef mutablePath = ...
0
votes
1answer
225 views

iPhone: Separate Stroke and Fill not working

I have the following code: if (self.graphic.fillColor) { CGContextSetFillColorWithColor(context, self.graphic.fillColor); CGContextDrawPath(context, kCGPathFill); } ...
0
votes
2answers
75 views

iPhone: Store Graphics Path as Constant

I have a bunch of paths defined like the following: _shapeMutablePath = CGPathCreateMutable(); CGPathMoveToPoint(_shapeMutablePath, NULL, 95.97,36.29); CGPathAddCurveToPoint(_shapeMutablePath, ...
5
votes
1answer
698 views

iOS: CGImageCreateWith[PNG or JPEG]DataProvider causes segmentation fault

I'm facing a weird problem. I'm developing an iOS command line barcode scanner utility using libzbar (yes, this is for jailbroken devices). All goes fine except when I'm trying to use the ...
2
votes
1answer
268 views

How to find an arrow tip points given origin and end point of a line

Consider you have a line with start point (x1,y1) and end point (x2,y2). In order to draw an arrow cap to the line (in objective-c), I need to find the points of the arrow (x3,y3,x4,y4) given the ...
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 2 3 4 5 8