0
votes
0answers
17 views

OpenGL ES blending with custom antialiasing

I'm completely new to OpenGL. I need to make new drawing type in iOS app looking beautiful but as far as I try I fail with blending. This answer shows a way a line is constructed during drawing. My ...
0
votes
2answers
37 views

Draw the frame on the button edge

I have some buttons. I need to mark some of them. I would like to make it by frames. Can I realize it? Can I draw the frame on the buttons edge?
1
vote
1answer
37 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
21 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
0answers
83 views

Performance issues with Core Graphics

I have serious performance issues in my game. I'm developing a jigsaw puzzle game. I cut down an image into smaller images, create a UIView for each jigsaw piece and assign each image into it's own ...
0
votes
0answers
26 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 ...
0
votes
1answer
24 views

How to detect encosed area in iOS and fill color inside that?

I need to create an app just like Paint application in Windows. Please check out the video at this link https://dl.dropboxusercontent.com/u/56721867/Screen%20Recording.mov This is how I need my app ...
0
votes
1answer
58 views

iOS: Draw on top of AV video, then save the drawing in the video file

I'm working on an iPad app that records and plays videos using AVFoundation classes. I have all of the code for basic record/playback in place and now I would like to add a feature that allows the ...
0
votes
1answer
45 views

Which is the better way to obtain the final size of an UIView?

I'm wondering which is the better way to calculate and obtain the final size of an UIView that will be drawn dynamically. For example, I have a superview in wich a bunch of views will be drawn. I need ...
-2
votes
0answers
39 views

Drawing a Linear gradient [closed]

We are developing an application of free hand drawing. In that we need to draw a Linear gradient line using multi color pen. We are almost to finish this but stopping the square boxes coming when ...
0
votes
3answers
54 views

iphone - Draw a line in UITableViewCell when background view is set

I have written drawRect as follows. -(void)drawRect:(CGRect)rect { [super drawRect:rect]; CGContextRef cxt = UIGraphicsGetCurrentContext(); CGContextSetLineWidth(cxt, 2.0); ...
0
votes
0answers
48 views

Draw many vertical lines in OpenGL ES

i have a little problem with my app and opengl es. I want to draw many (so 200) vertical lines with an stroke of 2 pixels and a distance of 5px. My first problem is to draw a line in OpenGL ES, my ...
1
vote
0answers
40 views

Drawing and Animation in iOS

My background is Processing and HTML5 Canvas. Now I want to write an iOS app, and include some kind of canvas, where I can draw shapes and images on, similar to a sketch in Processing (2D). What's ...
1
vote
0answers
105 views

drawInRect a transparent PNG image :Objective C

I have a background view with an image which fill all the view. Above this view, I added another view with backgroundColor [UIColor clear] and the attribute opaque to NO. Here is what I would like to ...
1
vote
2answers
80 views

Draw many lines with Performance

Hey i need a help with building an app. I build an art app, this app is working with interferencies. Thats the reason i need to draw many lines in this app. More lines are better for the ...
0
votes
2answers
53 views

Implementing Eraser functionality for drawing app

I was following this great tutorial at ray wenderlich's site about creating a simple drawing app with UIKit. http://www.raywenderlich.com/18840/how-to-make-a-simple-drawing-app-with-uikit the ...
2
votes
1answer
91 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
1answer
63 views

Gesture to text

I'm trying to develop app, where user is asked a question with possible answers (a,b,d). I want him, to draw his answer. For this, there are some tutorials, e.g.this one. Next part is converting this ...
0
votes
3answers
62 views

How to dynamically draw maps

In an iOS application, I want to draw a United States map with states and counties outlined. I also want to draw individual states with counties outlined. I have researched using Shapefiles to do ...
0
votes
0answers
28 views

Drawing on Ipad [duplicate]

Actually we are devloping an application which shows remote desktop of the server which recieves mouse points from Ipad and performs annotationns/drawing. The same drawing is also performed on Ipad so ...
0
votes
1answer
42 views

Get historcial points ios

Is there any function or algorithm to catch all the points when drawing in iPhone? Like in Android, where we have gethistoical points.
-1
votes
2answers
102 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. ...
1
vote
1answer
92 views

UIView setNeedsDisplay Has No Effect?

I have a UIView-derived view that is drawn only once and never again. Calling [self setNeedsDisplay] has no effect. What could cause this? It doesn't matter whether the drawing code is in ...
0
votes
1answer
126 views

iOS: How to draw a line between two moving objects?

I basically have an array of UIView objects that are on screen. They are being moved randomly around and I would like to have a line connecting each object. In my drawRect method of the UIView that ...
0
votes
0answers
75 views

How to draw shapes and edit those shapes in ios?

I want to draw the shape of the floor with finger touch and have to place rounded buttons at the corners. Those rounded buttons are to be moved to edit the shape of the drawn image. And I have to ...
0
votes
0answers
49 views

How to properly draw with the finger on a zoomed PDF?

I'm gonna throw this one out there hoping that someone has a hint on what I could do. I'm working on this application which is basically a PDF reader. It also has the feature to add comments and ...
0
votes
0answers
24 views

Selection behaviour as that of paint in ios is overriding the old pen strokes

I am creating a paint like app where initially it behaves as pen and in which we can write anything, and on some button click..I am trying to select some area using UIBeizerPath. But that is ...
0
votes
1answer
115 views

How to get image coordinates in iOS app?

I have to implement a signature functionality in my iPad app. I convert the signature into image and after that I want to get coordinates of that image. How could I do it plz help me. Note: I am not ...
0
votes
3answers
49 views

Losing all drawing when app comes in foreground

I am drawing with multiple colors by dragging fingers on the iPhone app but when I minimize the app and then maximizes, I am losing all my drawing as it calls the drawrect method. I don't know from ...
0
votes
1answer
59 views

Draw a line on top of uiwebview i.e. custom drawing on top of uiwebview

How can you draw a line on top of uiwebview? On my app, when the user touches his finger on top of uiwebview and moves the finger (the underlying html content is plain text and not clickable), I ...
-1
votes
1answer
76 views

Why there is a black ouline while using eraser?

Please see the attached image. I have created an app in which user can draw with multiple images but when I am using the Clear Color in order to erase the drawing it is showing the black border around ...
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
0answers
125 views

Free hand drawing not working on UIImageview

I am drawing Free hand drawing in my iPhone application and I have UIImageView as subview in main view. When I draw line on view it works fine on main view but when I am trying to draw on image view ...
0
votes
0answers
60 views

Set Image of Eraser In iOS

I am a iPhone Developer and I am now stuck in some place in development so please help me to resolve the problem. My issue is- I am creating an eraser which is used to erase some part of Image. I ...
0
votes
2answers
260 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 ...
5
votes
2answers
249 views

Draw UIBezierPath That Fades at Ends (Gradient)

I am trying to draw a UIBezierPath that fades out at both ends - from alpha 0 to 1 then back to 0. I basically want to be able to draw a gradient in a UIBezierPath from within drawRect. EDIT: Here's ...
3
votes
1answer
135 views

How to autoresize sublayers

I have an imageview and on button click i draw some bezier paths and some text layer too. on undo I m removed last drawn path and text layer. Now I want to resize my image View to set up in uper half ...
0
votes
0answers
63 views

iOS Drawing image issue

I'm try to create application where I'm use a UIScrolView and I can draw different jpeg images on the appropriate point for each of this images. It is must looks like a video, for example: I have a ...
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 ...
0
votes
1answer
123 views

Draw and Center a Custom UIView as Background Using Auto Layout

I have a BoardViewController (UIViewController) and need to draw centered coordinate lines into its background. For these coordinate lines I created a custom UIView class CoordinateView which are ...
0
votes
0answers
33 views

UIView transparent redrawing

I 've created a custom UIView in which I can draw. My problem is that, when drawRect: is called, I need to re-draw everyhing that is already drawn, before redrawing because the control erases itself ...
0
votes
0answers
57 views

Drawing on a transformed UIView

I'm working on an application that allows the user to scale (zoom) the view for drawing. For example, on iPhone, the actual size of the drawing view (UIView) is 768 x 1024, whereas the screen is just ...
0
votes
2answers
241 views

Touches method in UIViewController and UIView

I'm working on iPad app. My UIViewController contains only a custom UIView with a size of 500wx500h. I implemented the touches methods both in the UIViewController and the custom UIView in order to ...
2
votes
3answers
95 views

Scale Coordinates while Maintaining the Aspect ratio in iOS

I have an array of 2D coordinates that I use to draw curve in a box (w,h). Now I want to scale the coordinates into a box (x,y) where x or y or both are smaller than w and h. The Trick part is that I ...
-1
votes
4answers
137 views

easy to understand complex color picker [closed]

I'm making an app that requires the user to select multiple colors from a color picker and set the probability that some colors will have more than equal chance to be selected. An example: Let's say ...
0
votes
1answer
112 views

Detecting what percent of an drawn image has been “erased”

Let's say I have a solid, irregularly shaped (but enclosed) shape on screen in iOS (one colour). I then want to "erase" portions of that shape by dragging my finger around like you would in a typical ...
0
votes
1answer
110 views

Draw something and copy it on a existing pdf document on iPad

I want to make a simple drawing with finger and insert it in a existing pdf file. I don't know at all how begin this feature. So,first step: make a drawing, second: edit a pdf file and insert the ...
0
votes
0answers
51 views

Drawing text within lines defined in a background image

I am creating a notepad app, and I have an image that I created in Photoshop to mimic a notepad, with horizontal white lines. I added a scroll view on top of the UIImageView to give the feel of a real ...
2
votes
1answer
48 views

Drawing on UIButtons

I'm currently writing an app that has a calendar as one of it's screens. For the calendar I need to place coloured circles under the numbers to represent activities on those days. I was leaning ...
0
votes
0answers
86 views

iOS fastest png picture manipulation at pixel level

How can i manipulate png pixel values, fast, so that i can display my picture at 30 frames/s I like to create something like this Javavscript html canvas example. http://www.kaotik.si/randomWalk.html ...

1 2 3 4 5