How do I edit individual vector graphics on a background layer?

I am using Photoshop CS6.  I have a .psd file with a background layer that has a sublayer called "bitmap". 
I want to resize the rectangles on the background layer, and add additional "button" graphics, but am unable to edit any one shape.

I was a bit confused as there were vector masks and layer masks that I was able to reveal from the Layer menu.

Similar Messages

  • How to copy and paste vector graphics

    I have a program that draws curves and I would like to copy and paste them as a path into Adobe Photoshop.
    I am using the Clipboard class (Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard()), but I
    do not know what string I should use for the StringSelection argument in the setContents method. I tried the
    string that describes my curves in PostScript.
    But that didn't even work for pasting into Adobe Illustrator, although Illustrator is capable of opening
    a PostScript file. (However Photoshop only opens a PostScript file as a bitmap, not as a path.)
    With Illustrator, instead of pasting the curves, it just pasted the PostScript text.
    Please help.
    Thanks.

    For me, freehep is the fifth hit when googling "java vector graphics library". But of course I don't get to "[Access hidden information|http://www.copernic.com/en/products/agent/index.html]" without paying up :).
    For a simpler way: since you already say you can save to postscript, make a temporary ps file and export it in a file list (keywords "java drag and drop files"). Perhaps Illustrator then opens the file and the user can copy/paste it there. Otherwise you have to figure out what Illustrator expects on the clipboard and put it there in the same format.
    Another option might be to use some com wrapper to talk to Illustrator directly (but probably need a commercial com wrapper for that).

  • How to Use the Scalable Vector Graphics API (JSR 226)

    im doin an Application with Maps and locations...
    i need 2 use the Scalable Vector Graphics API (JSR 226)..
    can anyone plz guide me to get it and use the API.. Im using netBeans 5.0
    it will be great help :)
    Regards
    Muhammedh aka MNM

    Thanks Rohan :)
    i did read some stuff from the URLs u gav me :)
    and I manage 2 solve the prob i had :) (Thank God)
    1. downloaded latest version of netBeans (5.5)
    2. Java SDK 6 :D...
    3. the key thing: Wireless tool kit for CLDC 2.5 Beta
    now when u create a project make sure u set the above given tool kit :)
    when u set it.. u get an option 2 select the APIs frm a List.. Check on SVG API :)...
    Other APIs Such as,
    * wireless Messaging API
    * Location API
    and many more...
    Cheers 2 Every1 :)
    regards
    Muhammedh

  • How can I make ANY vector  graphics with graphics2D and save on clipboard?

    I am at my wits end here, and need some help. Simply put, I have a program that creates a basic x-y graph, drawn in a jpanel. I want to create the graph as a vector (emf, eps, svg, I don't care anymore, any of them would be good). But, all I get is a jpg or bitmap.
    I tried using the infamous FreeHEP programs, but it won't recognize the output as anything but "image" which means bitmap/jpg.
         The user enters x/y data, clicks a button, which crreates a jpanel thusly:
    public class GraphMaker extends JPanel {
    static BufferedImage image = new BufferedImage(600, 500, BufferedImage.TYPE_INT_ARGB);
    GraphMaker(double[] xVals, double[] yVals, double[] sems){
    setPreferredSize(new Dimension (600,500));     
    symSize = 10;
    XminV = 0;
    XmaxV = 0;
    // code here just converts input x and y's to pixel coordinates, spacing of ticks, etc...
    for (int i =0;i < ArLn; i++){
    gX[i] = xO + (gX[i] * xRat);
    gX[i] -= xStart;
    gY[i] = gY[i] * yRat;
    gY[i] = yEnd - gY;
    semVal[i] = semVal[i]*yRat;
         Ymin = yEnd - (Ymin*yRat);
         Ymax = yEnd - (Ymax*yRat);
    BufferedImage anImage = new BufferedImage(600, 500, BufferedImage.TYPE_INT_ARGB);
    Graphics2D g2 = anImage.createGraphics();
    g2.setBackground(white);
    g2.setColor( Color.WHITE );
    g2.fillRect(0,0,600,500);
    g2.setStroke(stroke);
    // here I use the values to draw lines and circles - nothing spectacular:
              g2.setPaint(Color.blue);
              int ii = 0;
              for ( int j = 0; j < ArLn[ii]; j++ ) {
    g2.fill(new Ellipse2D.Float(LgX[ii][j] - symOffst, gY[ii][j]-symOffst, symSize,symSize));
    g2.draw(new Line2D.Float(LgX[ii][j],(gY[ii][j]-semVal[ii][j]),LgX[ii][j],(gY[ii][j]+semVal[ii][j])));
    g2.draw(new Line2D.Float(LgX[ii][j]-2.0f,(gY[ii][j]-semVal[ii][j]),LgX[ii][j]+2.0f,(gY[ii][j]-semVal[ii][j])));
    g2.draw(new Line2D.Float(LgX[ii][j]-2.0f,(gY[ii][j]+semVal[ii][j]),LgX[ii][j]+2.0f,(gY[ii][j]+semVal[ii][j])));
                        g2.draw(new Line2D.Float(xLoVal[ii],yLoVal[ii],xHiVal[ii],yHiVal[ii]));
    image = anImage;
    And, when the user clicks on the "copy" button, invokes this:
    public class Freep implements Transferable, ClipboardOwner {
         public static final DataFlavor POSTSCRIPT_FLAVOR = new DataFlavor("application/postscript", "Postscript");
         private static DataFlavor[] supportedFlavors = {
              DataFlavor.imageFlavor,
              POSTSCRIPT_FLAVOR,
              DataFlavor.stringFlavor
         private static JPanel chart;
         private int width;
         private int height;
         public Freep(JPanel theGraph, int width, int height) {
              this.theGraph = Graphs;
              this.width = width;
              this.height = height;
    //******This is the key method right here: It is ALWAYS imageFlavor, never anything else. How do I make this an EPS flavor?
         public Object getTransferData(DataFlavor flavor) throws UnsupportedFlavorException, IOException {
    if (flavor.equals(DataFlavor.imageFlavor)) {
    return GraphMaker.image;
    else if (flavor.equals(POSTSCRIPT_FLAVOR)) {
                   return new ByteArrayInputStream(epsOutputStream().toByteArray());
    else if (flavor.equals(DataFlavor.stringFlavor)) {
                   return epsOutputStream().toString();
              } else{
                   throw new UnsupportedFlavorException(flavor);
         private ByteArrayOutputStream epsOutputStream() throws IOException {
    EPSDocumentGraphics2D g2d = new EPSDocumentGraphics2D(false);
    g2d.setGraphicContext(new org.apache.xmlgraphics.java2d.GraphicContext());
    ByteArrayOutputStream out = new ByteArrayOutputStream();
         public DataFlavor[] getTransferDataFlavors() {
              return supportedFlavors;
         public boolean isDataFlavorSupported(DataFlavor flavor) {
              for(DataFlavor f : supportedFlavors) {
                   if (f.equals(flavor))
                        return true;
              return false;
         public void lostOwnership(Clipboard arg, Transferable arg1) {
    The same happens with FreeHEP - I want the flavor to be EMF, but the program sees an image so it is always imageFlavor. I know I am missing something, but what, I don't know.
    thanks for your help.

    I don't think there's a built-in solution. One workaround I've seen is to create a dummy graphics class that overrides the desired drawing functions. Instead of actually drawing pixels, the object writes postscript commands to a buffer. There also seems to be commercial code that does exactly this.

  • New to FW - how to resize a simple vector graphic?

    I'm brand new to Fireworks and just downloaded the trial version of CS5 a couple hours ago. I hunted around and watched some of the tutorials but haven't found an answer to my question so I'll take the easy way and ask here!
    I've got an existing png file I need to modify to use as elements to a website I'm building in Dreamweaver. There are a couple vector based boxes that I  need to change the dimensions of. They've got rounded corners and a stroke border. Question: How do I simply lengthen the width of these boxes without changing the shape of the corners?

    Jim, double clicking on the objects didn't work for me. Here's what I had to do:
    1. select the object w/ black pointer
    2. go to Modify > Symbol > Convert to Symbol
    3. specify as graphic and enable 9-slice
    4. change the width numerically in the properties inspector.
    Thanks,
    John

  • How can I load bitmaps/vector graphics in my application using only actionscript 3.0?

    I want to have DisplayObject that will randomly contain bitmaps/vectors from some database. I want to implement this using only code. How?

    use the loader class:
    var loader:Loader=new Loader();
    loader.load(new URLRequest("image1.jpg"));
    addChild(loader);  // or, yourdisplayobject.addChild(loader)

  • How to crop or mask vector graphic compositions?

    Hi Team,
    I'm loving Fireworks CS5, and want to take advantage the CSS & Images export features.  This, of course, requires that design elements fit into the rectangles to be used as the "div containers" and do not overlap them.  Often the original design of the element exceeds the dimensions of the container.  Is there a way to crop the composition?
    Here's an example:
    I want to add a bit of shadow at the ends of the rectangles below.
    Step 1:  I've created shadowy elipses to partially overlay the ends of the rectangle.
    Step 2:  I overlay the ends of the rectangle
    Step 3:  Now I'm stuck.  Can't find a way to mask, punch, or crop the resulting composition to produce a result similar to the "flattened bitmap" below.
    Can this be done?  It would be great if I could continue to edit the source components as vectors and didn't have to flatten to bitmap.
    Many thanks,
    Monu

    Sorry Linda,
    Your advice made perfect sense, and paste-inside looks good on screen.  However, when exporting to CSS, I'm getting the error "header_bg_elipse_right overlaps with header_bg".It seems that having the handles poking out beyond the dimensions of the mask upsets the export
    Any other ideas?
    Thanks
    Monu

  • How can I edit individual video frames?

    I have been searching the web and scratching my head trying to figure out a way of scrubbing a bit of content out of a few frames in a video.
    I have iMove (the latest version) and I have Final Cut Express (obviously a few years old now) and would be prepared to buy other software if necessary.
    I think there's only about 10 frames I need to, basically, be able to "draw on" so I can smudge away or draw over the bit on the video we want gone.
    Any ideas or suggestions would be appreciated.
    Martin

    If you have iMovie '11 what you want to do first is go to the iMovie Menu > Preferences > check mark Show Advanced Tools. Now select and drag the closeups from your Event Folder into the Project Browser and drop them dead center on top of one of the video clips where you want the closeup to appear. In the pop-up menu that appears choose Cutaway. iMovie will continue playing the 'background' sound track while the 'closeup' video appears on the screen.

  • Vector graphics with Photoshop Elements 13

    How can I maintain the vector graphics that are saved for Illustrator (AI or EPS) in Photoshop Element 13.   There are a lot of free typography graphics for Illustrator that I would love to use in Photoshop Elements 13
    Mireille

    if you downloaded both the exe and 7z files to the same directory, double click the exe.

  • AIR performance for vector graphics

    Hello,
    I prototyped an app in AS3, and now I want to move it iPhone.  When I had came to this forum before a while back (it was called something else; the Flash to iPhone convertor wasn't a part of Adobe AIR), I got scared by the performance issues reported by the users.  Therefore, I recently bought a Mac Mini to do iPhone development with the intention of porting it using Cocos2d-X.  After going through the APIs and examples, I see that Cocos2d-X is not as good as AS3.  My app uses a lot of vector graphics.  My apps uses 100+ vector Sprites with different fill effects.  I could also apply transformations on them.  I've read the performance for the iPhone has improved, but how is the performance for vector graphics?
    Thanks.

    Does AIR 3 for iPhone use OpenGL ES 2.0 in the backend?
    Judging from this http://www.adobe.com/products/air/tech-specs.html they imply they don't.

  • Lightroom does not create a background layer when editing in Photoshop - on Mac.

    Thought this was a Photoshop problem.  When I select a portion of an image in Photoshop (which has come from Lightroom) and press Delete, it no longer brings up the Fill dialog; it just deletes the pixels.
    After some discussion on the Photoshop forum, I see that now, when I tell Lightroom "Edit in Photoshop", it creates a file which does not have a Background layer, and this causes the Delete key to act differently.  This was not the case several weeks ago, but has just started to happen.  Is there any adjustment I can make to the "Edit In" settings to get a Background layer in Photoshop?
    JK

    You must have changed a setting in Photoshop because  Lr has no influence on how Photoshop treats the background layer.
    There is nothing you can do in Lr to change this behavior of Photoshop.
    What happens in Photoshop is this: For some reason the image is opened with transparent background.Such an image does not have a background layer and the layer at the bottom does not have the constraints of a regular background layer.
    I am not aware of any command or script in Photoshop that would automatically do this on opening a file.
    Try this: Reset your Workspace (>Window >Workspace). If that doesn't help I'd suggest to ask on the Photoshop forum why your Photoshop opens an image with transparent background.
    You could also try to re-install Photoshop, supposedly this would reset any hidden settings that are causing this.

  • How do I convert a bitmap/jpg type image to vector graphics/editable outline?

    Corel Draw 5 did this very nicely but it's obsolete and I can't load it onto this machine (HP all-in-one Pavilion desktop with Windows 8).
    I am working with hand-drawn images but since I need to manipulate the outline/s with a 4 - 12 pixel tool, it would be great to just be editing nodes instead.  Creating the image from scratch as a vector graphic would be a horrible large amount of work and is not feasible at this time.
    Is there any way other than Corel Draw 5 to make the conversion from bitmap-type images to editable vector graphics, ie: editable nodes?
    Thanks.
    PS - I don't have $700 - $1000 to spend on  software at this point but do have Photoshop Elements 11, Premiere 11 and Lightroom, plus GIMP and the usual.  Where should I start?

    For occasional conversions, did you consider 'online bitmap to vector' conversions ? Do a Google search for that.
    For more advanced and free solution, consider inkscape. It's a real vector drawing tool and can convert bitmaps.

  • How to print a Proe .drw ( Vector Graphic ) file to a printer.

    I am having a drawing model (proe .drw file). I want to print this file to a .tif file using java.The print driver is "Informatik Image Driver 3.20".
    .Can some one help me out with the steps involved in this.
    I understand .drw file are of type Vector Graphic. How to print it.
    I also have a corresponding postscript file generated from the .drw file. Is there a way to print this post scritp file to the printer mentioned above to create .tif.
    Any quick help will be deeply appreciated.
    The postscript file content as below
    %!PS-Adobe-2.0
    %%BoundingBox: 0 0 1190 841
    %%Creator: Pro/ENGINEER
    %%Title: c:/temp/xx.plt
    %%CreateDate: 18-Mar-10 17:29:28
    %%DocumentFonts: Times-Roman
    %%EndComments
    %%EndProlog
    %%Page: ? 1
    %%BeginPageSetup
    systemdict /setpagedevice known
    <</PageSize[1190 841]>> setpagedevice
    } if
    %%EndPageSetup
    newpath
    %90 rotate 0 -11.6929 72 mul translate
    /m {moveto} def
    /l {lineto} def
    /rm {rmoveto} def
    /rl {rlineto} def
    /slw {setlinewidth} def
    /srgb {setrgbcolor} def
    /sd {setdash} def
    /gs {gsave} def
    /f {fill} def
    /gr {grestore} def
    /s {stroke} def
    /np {newpath} def
    0 setlinecap
    2 setlinejoin
    0 0 0 srgb
    72 72 scale
    s
    [] 0 sd
    s
    [] 0 sd
    s
    0.02 slw
    1.21121 0.393701 m
    1.21121 11.2992 l
    1.21121 0.393701 m
    15.3242 0.393701 l
    15.3242 11.2992 l
    1.21121 11.2992 m
    15.3242 11.2992 l
    8.01388 7.69355 m
    5.49708 7.69355 2.5168 0 360 arc
    14.2189 7.69355 m
    10.8812 7.69355 3.33771 0 360 arc
    8.03498 5.85547 m
    7.69023 5.85547 0.344747 0 360 arc
    11.1515 5.53362 m
    7.81378 5.53362 3.33771 0 360 arc
    3.33558 4.07796 m
    7.52551 5.0152 4.29347 192.609 398.596 arc
    7.44242 10.0908 m
    4.1278 2.50717 8.2764 66.3911 106.456 arc
    s
    0 0 0 srgb
    0 rotate
    showpage
    ---------------------------------------------

    I did try google. But could not get a solution. Any idea what is the doc flavor for .drw file.?
    Edited by: ekuriakose on Mar 22, 2010 11:47 PM

  • How can I create a vector (editable) stroke?

    All of the tutorials I've found address how to create a stroke from a path, but that stroke is not editable. What I'd like to do is create a vector shape that is only a stroke, not a closed shape. Thanks!

    If you create a vector path and save it in the path palette you can edit it.  When you stroke a vector your laying down pixels.  Pixels can be edited however not with vector tools.  If you want to be able to edit a stroked path using vector graphics a good method is to add and empty layer and stroke that layer. When you want to edit the stroke you delete that stroked layer. Add a new empty layer edit the saved path and stroke the edited path.

  • How do you prevent Acrobat PDFMaker from rasterizing vector graphics?

    I am using the "Create PDF" button (provided by the Acrobat PDFMaker in Acrobat X) to create a PDF from a Microsoft Word 2010 document.
    This works fine, except that vector graphics in the Word document appear in the resulting PDF as raster graphics. (That is, when I zoom in, document text outside the graphics appears smooth, but the graphics are blocky; and text inside the graphics that should be retained as text - it's not converted to curves - is just pixels.)
    The original artwork for the vector graphics is in CorelDRAW X6 (sorry, Adobe!).
    I have exported the following files from the original vector drawing in CorelDRAW:
    - EPS (with TIFF preview)
    - Windows metafile (.wmf)
    - Enhanced metafile (.emf)
    I can insert any of these files into Word okay (Insert > Picture), but the resulting PDF always contains a rasterized (bitmapped) version of the vector graphic ("line art").
    From memory, this didn't use to happen in my previous working environment (Acrobat 8 Pro with Word 2003, using artwork exported from CorelDRAW 12).
    How do you prevent Acrobat X PDFMaker from rasterizing vector graphics? Or is Word 2010 (or CorelDRAW X6) somehow to "blame" here?

    Transparency Flattening is being invoked.
    From the Create PDF button, select Properties, what is your setting for Default Settings? Select High Quality Print

Maybe you are looking for

  • LSMW for uploading assets using BAPI

    Hi. I am trying to upload assets from a flat file into the standard table using LSMW with BAPI. I could upload the assets by calling the BAPI from an ABAP report. But when I use the same BAPI in LSMW it gives an error while maintaining structure rela

  • SEGV Oracle 8.1.6 installer on RH 6.1

    Hi, When I try to install Oracle 8.1.6 on a stock RedHat 6.1 system, the java installer dies on me with the message: SIGSEGV received at bffff1e0 in /opt/orastage/Oracle8iR2/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/linux/n

  • ADF: Tree Refresh after Expanding a node. Please Frank have a look!

    About this post: Re: ADF: Tree Refresh after Expanding a node Frank answered that he doesn't notice that behavior. I found out that this happens if an appication uses a custom skin. In SRDemoSampleADFBC, SRManage.jspx (Management from menu), if you m

  • Problems with the CONTACTS in iPhone

    i'm using a iPhone-4 n i recently updated my iOS to 5.1; the software was succesfully updated but then later on i'm not getting the EDIT option in ma contact list need help

  • Oracle patch in windows...

    Hi experts, i am using oracle 11g(releasae 2) when i run the oracle opatch utility by the following command...i get the error... SQL> $opatch lsinventory -detail 'opatch' is not recognized as an internal or external command, operable program or batch