Drawing an outline around document

When creating a document in illustrator that has an outline (newspaper ad with 2 pt. outline) How do you get it to print within the art board? When I make it the size of the document only part of the line shows up when made into a PDF

set stroke to inside.
or make the artboard larger

Similar Messages

  • How can i draw a outline around an object in a picture

    I am trying to draw around an object in a picture to show the different values and defined edges.  Can anyone help?

    Use one of the selection tools -- lasso, rectangle marquee or elliptical marquee, for example.
    Photoshop Help | Making selections
    Nancy O.

  • White outline around images in pdf

    Ok I've searched google for help and have not found any tips. I'm using CS4. I'm creating a document in indesign. I've placed some psd files into the document. In photoshop they are an object with a transparent background.
    Now they look fine when printing and when viewing in indesign. But when i output as a ps from indesign, then take it into distiller it creates a pdf with a white outline around the image. Why is this happening? See attachement. Outline is on the bottom, it's a really thin line.
    I do file print, select adobe pdf 8.0 then i pick the postscript option, then hit print to save the pdf. I've tried changing from CMYK to leave unchanged for color options. Please help!!!

    Try searching for the term stitching. That should give you plenty.
    In short, what you're seeing is the result of your archaic workflow causing the transparency to be flattened. The preferred and recommended method for PDF creation is through direct export, maintaining all transparency in the document.
    Bob

  • Drawing directly in the document window

    Can anybody provide sample code showing the basics of drawing directly in the document window? I'm thinking of something along the lines of the measure tool (pardon the pun).
    It looks like I'm supposed to use either the Annotator Suite or the Document View Suite to "invalidate" a rectangle in the document, followed by doing the actual drawing with the ADMDrawer Suite. But the documentation in this area is pretty sparse (for example GetDocumentViewInvalidRect and SetDocumentViewInvalidRect refer to a "fudged" invalid rect without explaining what that is) and I don't see anything in the Sample Code folder that explains this feature.
    Are the little text annotations ("path" "anchor") that pop up when using Smart Guides done using this method?
    Thanks,
    John

    (Sound of crickets chirping...)
    Boy, this forum is awfully dead in comparison to the InDesign SDK forum. Is no one writing Illustrator plug-ins anymore?
    But hey, I'll keep posting, if only for my own amusement, about my saga of writing a plug-in.
    I figured out some of the annotation stuff, but I'm still puzzled by some things.
    I started by simply trying to create a tool which would carry a 100x100 box around with it when moved on the screen -- no clicking or dragging yet -- much as the symbol sprayer, for example, has a nice circle (albeit of varying size) around it. I created the tool and added it as an annotator. When it receives a kSelectorAITrackToolCursor message, it simply captures the cursor location in a global and sets the PlatformCursor. When the tool receives a kCallerAIAnnotation message, I have this code:
    extern AIErr toolAnnotate( AIAnnotatorMessage *message ) {
        AIErr error = kNoErr;
        error = sView->ArtworkPointToViewPoint( message->view, &g->cursorPoint, &g->cursorPointScreen );
        g->annoBoundsScreen.top = g->cursorPointScreen.v - 50;
        g->annoBoundsScreen.bottom = g->cursorPointScreen.v + 50;
        g->annoBoundsScreen.left = g->cursorPointScreen.h - 50;
        g->annoBoundsScreen.right = g->cursorPointScreen.h + 50;
        ADMDrawerRef dr = sADMDrawer->Create(message->port, &g->annoBoundsScreen, kADMPaletteFont);
        ASRect myRect;
        myRect.top = 0;
        myRect.bottom = 100;
        myRect.left = 0;
        myRect.right = 100;
        sADMDrawer->SetDrawMode( dr, kADMXORMode );
        sADMDrawer->SetADMColor( dr, kADMBlackColor );
        sADMDrawer->DrawRect( dr, &myRect );
        sADMDrawer->Destroy( dr );
        sAnnotator->InvalAnnotationRect ( message->view, &g->annoBoundsScreen );
    This (should) convert the cursor location (in artwork coordinates) to screen coordinates, set the annotation boundaries based on this location, create the drawer reference, and draw the 100x100 rectangle within this reference. Finally, it invalidates this rectangle as per the Annotation suite documentation.
    I fired up the tool in Illy 10 and saw a single box created down at the 0, 0 point on the page. No box followed the cursor. Hmm. I added an sADMBasic->Beep() to the annotation code and realized what was happening -- my tool was getting an annotation message when first selected, but none when it was merely moved around the screen.
    After some futzing around I discovered that if I added a call to sView->SetDocumentViewInvalidDocumentRect in the TrackToolCursor code, I got an annotate message every time the mouse was moved! I captured the previous cursor position and invalidated the rectangle 50 points on all sides from it. and tried again. Success -- partially.
    At this point, the cursor could be moved around with the box following it. It suffers, however, from the following bugs:
    1) The SetDocumentViewInvalidDocumentRect is in artwork coordinates and so only works at 100% or greater. If I zoom out, my little box leaves trails all over the screen. In addition, if I zoom in, the cursor stutters noticeably -- I assume because Illustrator is forcing a redraw on large portions of the document. I think I can fix both these bugs by recalculating the SetDocumentViewInvalidDocumentRect into screen coordinates. However I note that the circle of the symbol sprayer can be made huge -- as large as the screen -- and it still moves smoothly. So maybe calling sView->SetDocumentViewInvalidDocumentRect is not the way to force annotations. But I haven't been able to discover another way.
    2) When the mouse moves into a palette, the square remains "hung up" at the last position where the cursor was in the document window. I think I can fix this by utilizing the Suspend and Resume notifiers and doing one last InvalAnnotationRect when I get the Suspend notification.
    3) For fun I tried clicking and dragging. Bad news. If I do this, thereafter the entire Illustrator window only redraws iself in the small rectangle that was set when I created the drawer port. By chance I found that if I use another tool that annotates such as the pencil *before* I use my tool, then everything is fine (although of course the box doesn't follow the cursor around anymore because my toolMouseDrag code is empty). How is using a previous tool "fixing" my code? I don't understand this one at all.
    Anyway, I suppose I could fork over a wad of cash and join the ADN and purchase a support case -- but hey, I'm just a hobbyist messing around at this point and facing some rather crappy documentation. Any tips will be much appreciated.
    John

  • How to draw a border around a Textured Plane?

    Hi everyone,
    How does one go about drawing a square border around a textured square plane?
    I've tried using the setBoundaryColor() method, and have set the texture2D's boundaryModeS and boundaryModeT to CLAMP, but no boundary color appears.
    Can someone help?
    Here are some fragments of my code:
    /** My plane **/
    QuadArray plane = new QuadArray(20, GeometryArray.COORDINATES
    | GeometryArray.TEXTURE_COORDINATE_2
    | GeometryArray.COLOR_3
              float length = 0.5f;
              float epsilon = 0.1f;
         Point3f p = new Point3f(-length/2.0f, length/2.0f, 0.0f);
    plane.setCoordinate(0, p);
    p.set(-length/2.0f, -length/2.0f, 0.0f);
    plane.setCoordinate(1, p);
    p.set(length/2.0f, -length/2.0f, 0.0f);
    plane.setCoordinate(2, p);
    p.set(length/2.0f, length/2.0f, 0.0f);
    plane.setCoordinate(3, p);
         Point3f upperborder = new Point3f(-(length/2.0f+epsilon), length/2.0f+epsilon, 0.0f);
    plane.setCoordinate(4, upperborder);
    upperborder.set(-(length/2.0f+epsilon), length/2.0f, 0.0f);
    plane.setCoordinate(5, upperborder);
    upperborder.set((length/2.0f), length/2.0f, 0.0f);
    plane.setCoordinate(6, upperborder);
    upperborder.set((length/2.0f), length/2.0f+epsilon, 0.0f);
    plane.setCoordinate(7, upperborder);
    Point3f rightborder = new Point3f((length/2.0f), length/2.0f+epsilon, 0.0f);
    plane.setCoordinate(8, rightborder);
    rightborder.set((length/2.0f), -(length/2.0f), 0.0f);
    plane.setCoordinate(9, rightborder);
    rightborder.set((length/2.0f+epsilon), -(length/2.0f), 0.0f);
    plane.setCoordinate(10, rightborder);
    rightborder.set((length/2.0f+epsilon), length/2.0f+epsilon, 0.0f);
    plane.setCoordinate(11, rightborder);
    Point3f lowerborder = new Point3f(-(length/2.0f), -length/2.0f, 0.0f);
    plane.setCoordinate(12, lowerborder);
    lowerborder.set(-(length/2.0f), -(length/2.0f+epsilon), 0.0f);
    plane.setCoordinate(13, lowerborder);
    lowerborder.set((length/2.0f+epsilon), -(length/2.0f+epsilon), 0.0f);
    plane.setCoordinate(14, lowerborder);
    lowerborder.set((length/2.0f+epsilon), -length/2.0f, 0.0f);
    plane.setCoordinate(15, lowerborder);
    Point3f leftborder = new Point3f(-(length/2.0f+epsilon), length/2.0f, 0.0f);
    plane.setCoordinate(16, leftborder);
    leftborder.set(-(length/2.0f+epsilon), -(length/2.0f+epsilon), 0.0f);
    plane.setCoordinate(17, leftborder);
    leftborder.set(-(length/2.0f), -(length/2.0f+epsilon), 0.0f);
    plane.setCoordinate(18, leftborder);
    leftborder.set(-(length/2.0f), length/2.0f, 0.0f);
    plane.setCoordinate(19, leftborder);
    TexCoord2f q = new TexCoord2f(0.0f, 1.0f);
    plane.setTextureCoordinate(0, 0, q);
    q.set(0.0f, 0.0f);
    plane.setTextureCoordinate(0, 1, q);
    q.set(1.0f, 0.0f);
    plane.setTextureCoordinate(0, 2, q);
    q.set(1.0f, 1.0f);
    plane.setTextureCoordinate(0, 3, q);
    /** My Texture (using Appearance) **/
    // can't use parameterless constuctor
    Texture2D texture = new Texture2D(Texture.BASE_LEVEL, Texture.RGBA, image.getWidth(), image.getHeight());
    texture.setImage(0, image);
    texture.setEnable(true);
    texture.setMagFilter(Texture.NICEST);
    texture.setBoundaryModeS(Texture.CLAMP_TO_BOUNDARY);
    texture.setBoundaryModeT(Texture.CLAMP_TO_BOUNDARY);
    texture.setBoundaryColor(new Color4f(1.0f, 0.0f, 0.0f, 0.0f));
    planeAppearance.setTexture(texture);
    Is there a better way to do it?
    Thanks in advance for any help!

    Do a control-A (select all). This should put a selection outline around your image. Then do an Edit-Stroke. Define your Width in pixels, Color, and then choose Inside. Set blending to whatever you want (Normal for a solid color) and then the Opacity.
    Play with it. Have fun. Do NOT edit original images - always do an Image-Duplicate before doing edits until you know what you're doing. It is way too easy to make edits and then save that file over your original - losing the source file forever (unless you have a backup).

  • Making a outline around a person in a clip

    I am trying to make a perfect outline around a persons body in a clip and to make a freeze frame of just the person . I know this would be really easy in photo shop. Can anyone help me do this in Fcp or After Effects?
    Stephen....

    You mean something like this, right?
    http://homepage.mac.com/captmench/ZacharyComp264.mov
    Yes, you can do it in AE too... just use your mask pen tool and draw it around the person you want to freeze. There are ways then to freeze frame the image... etc.
    But I did the above in 2 minutes using FCP and Photoshop... you not got?
    CaptM

  • Help! How do I get rid of this annoying outline around text after exporting to a PNG

    I designed a text document in illustrator and it looks great...in illustrator. As soon as I export it to a PNG, an annoying outline around text appears. What do I do?????

    For text or 1-color items you can try the .gif format for sharper edges.
    Try changing the color of your matte to what the colro of the background is. The image will lok bad, unless you put that on top of your background.

  • I'm using CS6 on a Mac. I do I get rid of the red outline around my artboard?

    I'm using CS6 on a Mac. I do I get rid of the red outline around my artboard?

    File > Document Properties: Set the bleed to 0.
    --OB

  • How can I print a booklet without a white outline around the border?

    How can I print a booklet without a white outline around the border? I'd like the front page to be covered entirely.

    You either need a borderless printer, or you have to print on oversize paper and trim off the bleed.

  • How do I add an outline around an image in Elements 10

    I have an image that I created via Elements 10... The main body of the image is black and I am wanting to add a white outline around the image so I can place the image on a black background... Can someone advise how to add an outline including colorizing the outline around the image... Thanks

    Depending on what you want, you may need to add some canvas to give the border a place to be (Image>Resize>Canvas Size) but you can just press Ctrl+A/Cmd+A to select all, then go to Edit>Stroke (outline) selection, where you can choose the parameters of the border stroke. You can't choose Outside for the location, though, since that would put it off the canvas entirely where it wouldn't be visible.

  • How do I create an outline around text please

    hi all, How do I create an outline around text please
    thanks,

    You can see here that you can simply apply a stroke to live text by double clicking the stroke icon in the bottom left of the toolbar and selecting a color. I chose red.
    If you select the text, then go to Type > Create Outlines, you get more options in the stroke palette, like whether the stroke is aligned to the outside or inside of the text object's boundary. The text below is outlined with the stroke aligned to the outside.

  • How to draw a border around shape objects?

    How would I draw a border around something like an Ellipse2D object? I tried using using a BasicStroke in a sub-class of Ellipse but nothing showed.

    nvm, figured it out, I wasn't calling the draw method :)

  • I'm shooting great white screen but when I key out the white background, I have a very thin white outline around my person that I don't know how to soften without loosing some facial opacity. Any suggestions?

    Hi,
    I'm shooting white screen and FINALLY have my lighting, white balance, exposure and focus making a great looking, crispy clip! But when I key out the white background in a short segment, I'm left with a very thin, white outline around my person that I don't know how to soften, without loosing facial opacity. I only tried using the 'Edges' tool. Any suggestions?
    Thanks!

    set the wake-on lan on the main computer
    The laptop's too far away from the router to be connected by ethernet. It's all wifi.
    No separate server app on the laptop, it's all samba
    The files are on a windows laptop and a hard drive hooked up to the windows laptop. The windows share server is pants, so I'd need some sort of third party server running. Maybe you weren't suggesting to use Samba to connect to the windows share though?
    I'm glad that you've all understood my ramblings and taken and interest, thanks The way I see it, I can't be the only netbook user these days looking for this kind of convenience, and I certainly won't be once chrome and moblin hit the market.
    Last edited by saft (2010-03-18 20:38:08)

  • I need a white outline around a movie character, and animate it. Like song 'Stacys Mom'

    In the music video Stacys mom by Foundations of Wayne, theres pictures on the wall of a band playing, with shaky white outlines around their bodys, i want to create this effect around actors / band members in my movie .
    http://www.youtube.com/watch?v=dZLfasMPOU4
    I have Adobe AE CS6

    Either film your talent on a chroma screen and key them out, or it's time to learn about rotoscoping.

  • Why does Internet Explorer display an outline around the hotspot I just clicked on?

    hi all
    Why does Internet Explorer display an outline around the hotspot I just clicked on? what do i have to do to sort this?
    can anyone help please
    gman

    hi hans-g
    thank you for your help and links, was banging my head off the wall the last day . will use forum from now on, really appreciate your help thanks again

Maybe you are looking for

  • Pricing procedure determination in sales order

    Hi Experts, In our business scenario, we have three plants and all plants have different pricing procedure. And we are using same sales area and sales document type for all plants. Currently one customer is purchasing goods from only one plant. So in

  • Photoshop CC hangs when I open or create a file

    This is the error report: Date/Time:       2014-04-08 18:08:41 -0500 OS Version:      10.9.2 (Build 13C64) Architecture:    x86_64 Report Version:  18 Command:         Photoshop Path:            /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app

  • X79A-GD65 8D - Booting problem

    Sorry for the old bump, but any follow up solution that you got working?

  • Period-wise sales

    Dear Gurus, Can anyboy explain the detail sale of a material period-wise. If any standard report, then appreciable. For example, <b>Material   Dec   Jan  Feb  Mar   Total   AB         5       4     8       7       24   BB        6        5     6     

  • Using Query Builder

    Hi Friends, I am having a small issue.. I want to find out all folder names,report name & category using the Query Builder. kindly do the needful. I am using BOE: XI R2 Data Base: Oracle 10 Regards, RAVI