How to draw a line on a pic

CCan I draw a line on a photo in the photo app. ??

No, but there are many annotation applications in the App Store. To start try Skitch.

Almost all drawing applications allow you to set photos, then draw over them, too.

Tags: iPhone

Similar Questions

  • I have Adobe Acrobat XI and can not know how to draw a line.  I need to redline some documents but can not.  Does version XI even not this feature?

    I have Adobe Acrobat XI and can not know how to draw a line.  I need to redline some documents but can not.  Does version XI even not this feature?

    Yes, Acrobat Pro XI and standard have this ability.
    There is the comment > Annotations > online tool.
    There is the comment > Annotations > tool bar.

    In the Properties dialog box for one, you can select a desired color (i.e. red).
    So, in properties, you can check a choice to make this the default value of the tool.

    Basically, all versions of Acrobat (including the new "DC") offer this feature.

    If you work with a scanned image that has been placed in the PDF don't forget to use the OCR to get an output of a 'real' text - Acrobat provides a feature of OCR.

    Be well...

  • How to draw the line under STROKE and fill of an object in illustrator cc? Ideas: D...

    How to draw the line under STROKE and fill of an object in illustrator cc? Any ideas ...

    Aleksandar,

    If I (put) understand it, you will need to divide the object. You can:

    (1) select the object and Ctrl / Cmd + C + F, and then remove the filling of the copy and the blow of the original;

    Draw 2) and drag the new piece down between Division 1 objects) in the layers palette, or select 1 copy) and Ctrl / Cmd + C + F + X + F or similar.

  • How to draw a line in Muse?

    I think that it is a stupid Questtion, but I can't.

    How to draw a line?

    Draw a rectangle with 1 Pixel in height and no respect.

    If you want to dashed or dotted lines:

    http://forums.Adobe.com/ideas/1944#comment-5008

  • How to draw a line between two buttons?

    Hello.

    I want to do two mobile buttons attached to a line. When changing the position of any button you change in the appearance of the line of course.  I know how to draw a line, but after MOUSE_DOWN and I don't know how to remove an old monotube and how this line to appear all the time?

    My code

    btn2.addEventListener (MouseEvent.MOUSE_DOWN,
    mouseDownHandler3);
    btn2.addEventListener (MouseEvent.MOUSE_UP, mouseUpHandler3);
    btn3.addEventListener (MouseEvent.MOUSE_DOWN, mouseDownHandler3);
    btn3.addEventListener (MouseEvent.MOUSE_UP, mouseUpHandler3);

    Set a mouse down Manager (the user is dragging)
    function mouseDownHandler3(evt:MouseEvent):void {}
    var object = evt.target;
    We have to limit them by dragging to the area inside the canvas
    object.startDrag ();
    }
    function mouseUpHandler3(evt:MouseEvent):void {}
    var obj = evt.target;
    obj.stopDrag ();
    spisujemy x, y
    var x2Pos:Number = btn2.x;
    var y2Pos:Number = btn2.y;
    var x3Pos:Number = btn3.x;
    var y3Pos:Number = btn3.y;
    trace (x3Pos);
    trace (y3Pos);
    var roundObject:Shape = new Shape();
    roundObject.graphics.lineStyle (2, 0 x 990000,. 75);
    roundObject.graphics.moveTo (x2Pos, y2Pos);
    roundObject.graphics.lineTo (x3Pos, y3Pos);
    this.addChild (roundObject);
    this.removeChild (this.getChildAt (this.numChildren-1));
    }

    Source. FLA: http://www.mediafire.com/?y2tyzz4zxun

    Here is a solution that you can adapt for two or more buttons...

    var btns:Array = [btn2, btn3]; instances in concert

    handlers all btn
    function setBtns (): void {}
    for (var i = 0; i)
    inclinometer [i] .buttonMode = true;
    inclinometer [i] .addEventListener (MouseEvent.MOUSE_DOWN, grab);
    inclinometer [i] .addEventListener (MouseEvent.MOUSE_UP, drop);
    }
    }

    setBtns();

    inspired by ECCAS btns lines all while occurs wildfire
    function drawLines(e:Event=null):void {}
    Graphics.Clear;
    graphics.lineStyle (2, 0xFF0000);
    ((graphics.moveTo(btns[0].x+(btns[0].width/2), btns[0].y+(btns[0].height/2));

    for (var j = btns.length - 1; j > = 1; j-) {}
    ((graphics.lineTo(btns[j].x+(btns[j].width/2), btns[j].y+(btns[j].height/2));
    }
    }

    managers
    function grab(event:MouseEvent):void {}
    event.target.startDrag ();
    addEventListener (Event.ENTER_FRAME, drawLines);

    }

    function drop(event:MouseEvent):void {}
    event.target.stopDrag ();
    removeEventListener (Event.ENTER_FRAME, drawLines);

    }

    drawLines();

  • How to draw a line on Illustrator uses Excel via VBA coordinates

    Void line_viaCoordinates()

    Set appRef = CreateObject ("Illustrator.Application")

    IAPP Dim As New Illustrator.Application

    Dim idoc as Illustrator.Document

    Dim Illustrator.PathItem As isquare

    Define the idoc = iapp. Documents.Add

    Dim lineList (4)

    lineList (0) = Array (50, 50)

    lineList (1) = Array (50, 100)

    lineList (2) = Array (100, 100)

    lineList (3) = Array (150, 80)

    lineList (4) = Array (90, 200)

    "my question is: how to turn this painting (50, 50) in table (LINE B1, RANGEC1)..." So whatever the number, I type this cell to Excel, Illustator it will use as input to draw the line.

    Define isquare idoc =. PathItems.Add

    iSQUARE. SetEntirePath (lineList)

    Isquare = Nothing set

    Define the idoc = Nothing

    Define the iapp = Nothing

    End Sub

    You can use the range or cell objects to get a reference to your range values

    in this example, the data is on the A1 to B5

    Dim lineList(4)
    
    lineList(0) = Array(Cells(1, 1).Value, Cells(1, 2).Value)
    lineList(1) = Array(Cells(2, 1).Value, Cells(2, 2).Value)
    lineList(2) = Array(Cells(3, 1).Value, Cells(3, 2).Value)
    lineList(3) = Array(Cells(4, 1).Value, Cells(4, 2).Value)
    lineList(4) = Array(Cells(5, 1).Value, Cells(5, 2).Value)
    
  • How to draw a line when running

    I need to draw a line at run time, and I found this myShape.graphics.moveTo '(100, 100);  myShape.graphics.lineTo (200, 200); "but do not know with certainty how to declare myShape, I think he needs 2 lines to declare correctly, right?

    :

    var myShape:Shape = new Shape();

    addChild (myShape);

    myShape.graphics.moveTo (100, 100);

    myShape.graphics.lineTo (200, 200);

  • How to draw a line under the first paragraph

    Hello

    I am trying to solve a problem: my text field should be divided into two parts, horizontally. First part is intended for a log book, and the second is for the body. I need to divide them visually tracing a line between them. The logic is to take the first paragraph and make a summary. The rest is the body. So I need to be able to get the height of the first paragraph in order to draw the line at the right position. And I will have to adjust its position whenever the user scrolls the text.

    Any ideas how to on this subject?

    see you soon,

    Jan

    There is a discussion about the various ways to do it in this thread:

    http://forums.Adobe.com/message/3382440#3382440

    You will also find the recent message on the blog useful:

    http://blogs.Adobe.com/tlf/2011/01/decoration-example.html

    -robin

  • How to draw the lines automatically

    In LabVIEW I must draw a line automatically (both vertically and horizontally) the user will define the vertical and horizontal number lines.

    Is this possible with LabVIEW

    Thanks in advance

    You move to the point of departure of the line using "move the pen", and then draw the line using "draw the line".

    Repeat for each line. (using for example a for loop and autoindexing on positions).

  • How to draw a line (with the line segment tool) then draw another line, from those previous anchor point. When I try immediately draw another line on the other anchor lines it try to turn instead.

    I'm following a course of basic fundamental illustrator on Lynda. The video of "draw straight lines" is troubling me. They draw a line with the line segment and then draw another line coming out the anchor point at an angle.

    Here's where it is troubling me - when I try to drag a line to the anchor point trying to transform the first line, I drew. (the line cursor turns into a selection tool) I can't draw another line connecting the first.

    Advice would be great because it's driving crazy me.

    See you soon,.
    Kyle

    Yes, it is irritating. You must clear the previous line first. If you want to make sure that both ends are perfectly aligned, start by turning on the guides. If you want two lines to be part of the same way, you should use the tool pen instead.

  • How to draw a line in Captivate 8?

    I must be missing something obvious, but there is no option of the straight line in the menu forms in Captivate 8 as it was in version 7. and I can't find any other way to draw a line of in Captivate.  I spent some time looking for the forum and the web but only found references using the forms menu in earlier versions.  What Miss me?

    Some features are missing for reactive projects: http://helpx.adobe.com/captivate/kb/top-issues-captivate-8.html

    Ray, free polygon and free forms are on the list. But for normal projects is available. Problem is that not all the form are visible under the large button shapes, you must choose one, then go to the properties panel to see more in this category. Space-saving, I agree.

  • How to draw a line without anti-aliasing?

    I need to create lines for the selected underline buttons in a video menu. If I create a straight line with the line drawing tool line is anti-aliased. According to the position, it has more or less anti-aliasing and as yet will not display the colo complete them lines have different thickness or length. Is it possible turn of anti-aliasing for the daw line tool? I saw no option.

    As a solution, I found only the possibility to use the selection tool and then fill it out. The resulting sharp edges.

    Marcus

    Shape layers are always smoothed, but the nature of the beast, if the shape is not exactly on the limits of the pixels.

    The question is not to disable anti-aliasing, which is impossible for a shape layer - the trick is to get the shape traced on the limits of the pixels.

    Unfortunately there is no option to draw lines on the limits of pixels, but because of some options new added by the Adobe creative team you CAN draw rectangles on the limits of the pixels by selecting the rectangle tool and choosing this option:

    -Christmas

  • How to draw a line in time

    I want to draw a line, so that it looks, it is the transition from one point to another. Basically as it is drawn from point A to point B. I am able to draw a line with ActionScript, but I need to put a little interval in there (maybe 1/2 - 1 second) so that it looks like the line is drawn.

    Does anyone have any suggestions.

    Thank you.

    Dave

    might as well use onEnterFrame, pretty easy if the line is straight, if you're going to angle or curve you will need to use a little math to determine the next point. But for a left right right example of ot, try:

  • Graphics.drawText: How to draw a line of text with words in different colors?

    BB OS 5.0.0

    I'm watching the documentation of the API for graphics and I can't determine how can I use Graphics.drawText to draw a single line in two colors.

    I get the content from the server and in my class that extends the field, layout and painting methods. In the paint method, I need to use drawText to paint the contents from the server in two colors, such as:

    New coffee blends available at the counter & - 1 hour ago

    I thought that the following drawText could be useful, but I don't see how I can use it with two colors. Ideas, samples or advice would be greatly appreciated.

    public int drawText(StringBuffer aText,
                        int aOffset,
                        int aLength,
                        int aX,
                        int aY,
                        int aFlags,
                        int aWidth)
    

    You will need two calls drawText, each following a call setColor for the font you want for this particular piece color.

    In order to calculate the offset x from the second drawText compared to the first, use font.getAdvance (firstString) (where the police is your graphic police present, accessible via graphics.getFont ()).

    Use simple methods and you will get your results faster.

  • How to draw a line connected?

    Just trying to create a traditional slide with boxes that are joined by lines.    I do not use a sensitive project.   But it doesn't seem to be seeking a way to create an organization chart nice with connectors (lines) that connect to the forms and move when you move the shape.  Do I have to draw this kind of thing outside 8 Captivate?

    Thank you

    Captivate has no connector, sorry.

Maybe you are looking for

  • Do we need an anti virus for Mac?

    A friend of mine sent me this link on Intego anti virus. https://www.Intego.com/Mac-Security-blog/the-State-of-Mac-security-in-2016/?UTM _ medium = email & utm_source = macsecurity2016 & utm_campaign = m_content macsecurity2016_offer_en & ut = blog H

  • How do I move/transfer all files/folders etc. from one user to another-windows xp sp3

    because I couldn't get some apps to work reading under my username, I created a new user and they work, but I don't want the two users.  How can I mover everything of the old user to the new user?

  • Icons color of blackBerry Smartphones...

    How to get to home page only my msn color icon?... What about other icons? I think that my BBM used to have the color, but it is no more... Help...

  • Tags of ventilation

    HelloIn technical terms, it is possible to record two or more failures. And only the ventilation that is labeled as regulatory could roll up to spec of formulation and LIO.Is it possible for users to roll up the marked ventilation as regulatory in fo

  • How to call a pl/sql procedure to an event handler in NetBeans IDE

    I want to call a procedure from a button click event handler in NetBeans and also pass a parameter to the procedure. How I have here a this?