1
vote
1answer
30 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
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. ...
0
votes
0answers
24 views

Retain the image loaded on canvas from photoalbum on click of Undo button

I am working on drawing in IOS using coregraphics, So I draw an image on canvas and store in a photo ablum, later I load the same drawn image from photo Album on canvas using this piece of code ...
2
votes
1answer
88 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
votes
2answers
99 views

Draw a comet in IOS [closed]

The requirement is very simple. As the user moves his fingers a comet is drawn. I have seen some tutorials and have implemented few of them, now writing in here just to have an expert opinion. ...
-2
votes
1answer
56 views

how to draw rect over screen on OS X?

I want draw rectangle over current screen on OS X like rectangle from Grab app when user select area to capture. Could anybody give me advice about how I can do this?
-3
votes
2answers
107 views

Render a single UIImage and rotation has to be applied

I have rendered few UIImage objects using CGContextDrawImage. But when i apply rotation to the image, it is not applied and the view disappears. code here -(void )renderImage: (ItemView *)array { ...
2
votes
1answer
84 views

How to erase a circle in core-graphics

I am developing a drawing app using Core-Graphics. For the eraser I used kCGBlendModeClear. It erases my drawing in a square shape. Here is the code:         context = ...
0
votes
2answers
255 views

How to draw dashed line with finger in iPhone app?

I need to draw a line with dashes at regular gaps by sliding finger on the iPhone screen. I have written the following code for that and it is drawing the dashed line but the gaps are not regular and ...
0
votes
0answers
111 views

Draw to UIView subview using an instance of that subview

I am trying to draw to a UIView subview from another class. MainViewController with a view that I have dragged a UIView into in IB. I have created a DrawView class and changed the UIView's(the one ...
1
vote
1answer
101 views

Draw on a custom context

I'm actually trying to draw lines on a view. In order to not clear the context before every draws, I understood that I have to create my own context in order to draw on it. I found this way to create ...
0
votes
0answers
111 views

Drawing NSView's subviews manually

I'm writing a custom NSView that needs to animate its subviews by applying NSAffineTransformation before drawing them. I am looking for a method that draws the view's subviews so I can override it in ...
0
votes
1answer
244 views

Why doesn't UIBezierPath strokeWithBlendMode do anything?

I've set up a drawing tool using an approach similar to what's shown in this SO question ... I have a subclass of UIView that tracks touches, creates UIBezierPath objects, adds the paths to an array, ...
1
vote
1answer
159 views

Apply a shadow at both sides of a UIBezierPath

I'm currently drawing on the screen. I get smooth lines, I can change the color of my drawings. But I can't find how to apply a shadow to that line. To draw it, I use : [path ...
2
votes
2answers
101 views

Clipping inverse drawing?

I'm want to remove the blue part of the following images. How do I clip the inverse of the drawing? (I believe that's the correct way to ask the question) Example code for Triangle: (If there's ...
0
votes
1answer
89 views

Lines drawn with core graphics that are set to the same width sometimes vary in size when drawn

Here is a picture of two lines drawn in a UITableViewCell with the same function, and same width, and color As you can see the bottom line is a lot thicker than the other line. The code I am using ...
1
vote
0answers
71 views

Apply blending mode on views without specifying colors

I am creating an drawing application, I need to add blending modes functionality in my app. What I am doing is drawing my circle through core graphics and many other shapes are drawn .I want to add ...
0
votes
2answers
133 views

Image based core graphics drawing

I have to draw many shapes like rectangle, circle, triangle etc.I am drawing them trough core graphics. It is working fine. I want to ask suppose I am having an image (square image of say 1024*1024), ...
1
vote
1answer
69 views

Core Graphics drawing lags on iPod 4th generation and above, but smooth on 3rd gen iPod touch?

Ive developed a simple drawing app using core graphics to draw with your finger on the screen using Core graphics. On 3rd generation iPod touch's it runs very very smooth, but anything better or more ...
1
vote
1answer
491 views

Drawing using Quartz 2D on a uiimageview - lines getting blurry

This is a question related to drawing paths (in response to touch events) using Core Graphics in a view for an iPad application. I have a view as a part of a scrollview where I want to trace the ...
0
votes
1answer
211 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
28 views

Extending the DrawingView frame has some issues in iOS

I am implementing drawing in iphone, and my drawing works perfectly, I have provided the user a drawingView of size (315x95) and below this drawingView their is a image which of size (320x100). This ...
1
vote
3answers
1k views

Build a UIImage with multiple stretchable images

I have 3 images, a left cap, right cap, and center. Perhaps using CGImageRefs (?), is there a way to build a bitmap based on a CGRect that would center the center piece in some container, stretch the ...
0
votes
1answer
604 views

Drawing a triangle in Core Graphics

I've been trying to draw a triangle in Core Graphics for some time. I've figured out how to by I'm not quite sure if it is the best way. I also can't figure out how to center it in the UIView Here ...
0
votes
0answers
106 views

Touch draw on an background image and save it

I have been able to write code for doing touch draw on a UIView, and added the support for undo, redo, and erase. Now, I am wondering how to the same with an UIImageView (that is, enable touch draw on ...
0
votes
1answer
164 views

iPhone - Custom dynamic drawing using touch like in “Draw something” game OpenGL or Core Graphics?

I am trying to do dynamic drawing that draws a particle everywhere the finger is moving along the screen, exactly like in the game "Draw Something". My intention is not to make a game, but I need ...
-1
votes
1answer
273 views

Getting image using UIGraphicsGetImageFromCurrentImageContext

I am trying to understand, UIgraphicsGetImageContext() function, from my understanding, its a function, which gets the image from current bitmap context, so whenver I draw something on my canvas, and ...
1
vote
2answers
818 views

eraser not working in iOS drawing

I am working with drawing project, I have a eraser option, the code for which is given below, when I start my app, and draw some lines and use eraser, It works fine and I get eraser effect, now second ...
0
votes
1answer
295 views

Getting Blur Strokes while drawing in iOS

I am working on Drawing in iOS, I have my code working, drawing is working fine, Now I have implemented undo and redo functions, but what is happening is that, suppose I draw two lines and then press ...
0
votes
0answers
195 views

How to store CGLayers in Drawing

I am working with CgLayers for drawing in iOS, Now I want to store these layers and retrieve it later, so I want to know what are the available options. I tried to use NSMutableDictionary, below is ...
0
votes
1answer
753 views

Drawing text with accented characters (i.e. French Text)

I want to draw text on an image. I've tried using CGContextShowTextAtPoint and NSString drawAtPoint, but they both fail to show text with accented characters (i.e. if the text is in French). Basically ...
0
votes
0answers
507 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 ...
2
votes
1answer
375 views

Using Core Graphics for drawing

I am building an iOS app for drawing first time. Now i am able to draw lines and curves using core graphics but unable UNDO the drawing. I am saving all the points when drawing and try trying to reuse ...
0
votes
2answers
749 views

Filling a path with a particular color

I want to fill a path with red. This is my code: CGFloat red[4] = {1.0f, 0.0f, 0.0f, 1.0f}; CGContextBeginPath(c); CGContextSetStrokeColor(c, red); CGContextSetFillColorWithColor(c, [UIColor ...
7
votes
1answer
953 views

Is CoreGraphics (much) slower on the new iPad?

I just got the new iPad(3) and currently testing out a high resolution version of my drawing app that uses CoreGraphics. In normal 1024x768 mode, the iPad is more or less similar in performance - ...
1
vote
0answers
234 views

Quartz 2D Drawing: Overlapping lines/curve don't blend

Drawing an overlapping path in a single stroke doesn't produce the same result if i draw multiple overlapping paths. I want the overlapping path to blend (even if user is creating that path in a ...
4
votes
1answer
3k views

How to create UIBezierPath gradient fill?

I would like to create a UIBezierPath with 10px rounded corners and with gradient fill. How can I acheive this effect? Here's an image of what I want to do: As you can see, this square has: 2px ...
1
vote
1answer
177 views

How to eliminate Objective-C image artifacts when redrawing with Core Graphics

I'm drawing rectangles on the screen using the basic NSBezierPath method. I have an object set up to draw a customized rectangle on the screen with each instance of the object initialized. In that ...
0
votes
1answer
560 views

iPhone paint bucket

I am working on implementing a flood-fill paint-bucket tool in an iPhone app and am having some trouble with it. The user is able to draw and I would like the paint bucket to allow them to tap a spot ...
0
votes
1answer
180 views

How can I draw only 8 character per line in a CTFrameRef?

I'm trying to draw in a CTFrameRef only 8 character per line but I don't know how to do this with CTFrameRef. I've read "Manual Line Breaking", but they use CTLine and I think use CTFrameRef it's ...
1
vote
1answer
410 views

Excluding Masked Areas From A “Paint Bucket” Fill On A UIImage

I'm building an iPhone application which requires some images to be built up in a very specific way. The problem is quite difficult-to-explain so below is a diagram of what I'm trying to achieve. ...
0
votes
1answer
221 views

How to draw resize grip around view and resize in iOS

I have a scenario in which I want to draw an outline outside a view with resize grips in the corners like any image editing tool has. And using the grips I should be able to resize the view. Though I ...
5
votes
1answer
1k views

Stroking paths using a pattern color to simulate brush texture

I am making a finger painting app and I am having a hard time giving my brush a nice brush-like feel and texture. I have this code: UIColor * brushTexture = [UIColor ...
1
vote
2answers
671 views

Making a brush-like texture with Core Graphics

I am making a painting app, and I'm having trouble making a brush texture. I am drawing a thick line and circle on touchesBegan and touchesMoved using Core Graphics, and I want it to have a smoother ...
2
votes
0answers
672 views

Drawing rotated text on iOS creates jumping characters

I am trying to draw slightly rotated text with Core Graphics on the iOS platform. Text renders fine when not rotating but the rendering system tries to lock onto pixels for rotated text. For example: ...
0
votes
1answer
97 views

Repair Fragments in CGPathes of Cocoa Touch / Core Graphics

I have an unusual problem that caused my mind to stuck. I have created a drawing application that uses CGPathes to be created by a pen tool on the fly via the following view controller code. ...
3
votes
1answer
449 views

In CoreGraphics drawing how can I keep the point of overlap from being darker than the rest of the line?

My app uses core graphics for custom finger paint drawing. I allow the user to change the alpha of the line and a new line is continuously drawn on touches moved. When I make the alpha lower than 1.0 ...
-1
votes
2answers
378 views

How can you perform an erase function for a certain point in Quartz2d drawing?

I use this code to draw a line in quartz2d CGPoint currentPoint = CGPointMake(rascalImage.center.x, rascalImage.center.y); currentPoint.y += 10; ...
4
votes
2answers
714 views

Draw images evenly spaced along a path in iOS

What I want to do is move my finger across the screen (touchesMoved) and draw evenly spaced images (perhaps CGImageRefs) along the points generated by the touchesMoved. I can draw lines, but what I ...
0
votes
0answers
1k views

Drawing lines in a UIView

I need to draw some straight lines in a UIView which also contains a variety of UI elements. I need straight black lines about 1 or 2 points in width, easily drawn and redrawn with new start and end ...

1 2