CS5: Putting a chair from one image on a rug in another

I'm going to make this really simple:
I took a photo of a chair. I selected it, did an inverse, and deleted that stuff. So now I have a chair on a transparent background as a separate file.
I have a jpg of a rug. I changed the perspective/etc. with the 3D tool. How do I put the chair on the rug?

Another way to do it is to right-click the layer the chair is on, choose Duplicate Layer, then in the dialog that comes up select the rug image you want to put the layer onto.
Even another way is to select-All then copy the chair, then make the rug image current and paste.
-Noel

Similar Messages

  • How can I take an item from one image and move it to another image?

    How can I take an item from one image and add it to another image, and rotate it to fit?

    Carefully select the objects of interest in one image and then copy, scale and position them into the other image. Then touch up the composite.
    Have to Love Photoshop for Retouching Images!

  • Is it possible to clone an object from one image and paste it on another image?

    Is it possible to clone an object from one image and paste it on another image in Aperture?

    As Frank said,
    but Aperture has a nice clone tool - the drawback is, that it only works within one image.
    What I sometimes do - as a workaroud, when I want to use the clone brush, is to combine the image I want to clone from and the image I want to clone into, into one single image by printing them together to pdf as jpeg. Then I can clone from the second to the first, for example, to be able to add an fairy to a flower: Picking up the head of the fairy in the right image and brushing it into the left one. Occasionally I prefer the Aperture brush to the Photoshop lasso.

  • How do I put the audio from one clip over the video of another clip?

    So I have two videos, and I want to replace the audio of the first with the audio of the second. Sorry, I'm new to 08 and have been trying to suss this out for ages so I'd really appreciate any advice you guys can give.

    This thread seems to be on the same subject and is very helpful.
    http://discussions.apple.com/thread.jspa?threadID=2072620&tstart=50
    The Working with Audio clip also included the solution for extracting the audio from a clip at the very end of the video. Having to know the secret handshake of shift-command and dragging is really not intuitive, but such is progress....

  • Moving layers from one image to another in tabbed windows

    I don't know if it's currently possible, but I've tried every which way.  But I have 8 adjustment layers I want to move from one image
    to another in the tabbed window interface.  Once selected, COPY LAYERS is grayed out.  I tried to ALT + DRAG them to the image tab I wanted to move them to but it never focuses the tab and I cannot move the layers over.

    Well if I knew the feature exists in one way or another, I wouldn't have posted it in the Feature Requests.  It was because it seemed to be absent that I did.
    I enjoy a tab-less experience, however I abhor how PSCS5 handles non-tabbed documents in Windows 7 taskbar.  it opens a unique block for each open document you have.  So if I have 20 images open as I'm slicing up a design, I have 20 Photoshop CS5 blocks at the bottom.
    I don't like the Windows 7 "Taskbar Grouping" because when you click on Photoshop, it doesn't just go to Photoshop like it should, it instead opens up a menu for you to then select Photoshop (and focus it as wanted) or select an open image.
    These all seem to be steps backwards...

  • How do I copy layers from one image to another?

    I am editing figures for a journal and I need arrows for multiple images.  Is there a standard arrow?  I can only see free hand.  If I use a free hand arrow I then want to copy it to the other images for consistency.  How do I copy or share layers between images?

    There are many arrows in the shape tool, or you can set the line tool to have an arrowhead in the tool options. You can copy/paste layers from one image to another, or drag a layer from the layers panel into the main image window of another image and then use the move tool to position it. You can also drag into the thumbnail in the photo bin, but you'll still need to bring the image up to adjust the positioning.

  • How to put a string from one Frame to another Frame?

    Dear all,
    How can I put a String from one Frame to another Frame?
    When the application started, the Frame 'WindowX' will be displayed. After you press the 'openButton', a whole new Frame (inputFrame) will be shown. In this Frame )(inputFrame) you can write a String in a TextField. After pressing the okButton, this String will be sent to the first Frame 'WindowX'.
    But does anyone know how to realize the sending part?
    I've tested this code on Win98 SE and JDK1.2.2.
    Hope someone can help me. Thanks in advance.
    import java.awt.*;
    import java.awt.event.*;
    public class WindowX extends Frame implements ActionListener, WindowListener
         private Button openButton;
         private TextField resultField;
         public static void main(String [] args)
              WindowX wx = new WindowX();
              wx.setSize(300,100);
              wx.setVisible(true);
         public WindowX()
              setLayout(new FlowLayout());
              openButton=new Button("open");
              add(openButton);
              openButton.addActionListener(this);
              resultField=new TextField(10);
              add(resultField);
              resultField.addActionListener(this);
              addWindowListener(this);     
         public void actionPerformed(ActionEvent evt)
              if (evt.getSource()==openButton)
                   inputFrame ip=new inputFrame();
                   ip.setSize(200,80);
                   ip.show();
         public void place(String theString) //this doesn't work
              resultField.setText(theString);
         public void windowClosing(WindowEvent event)
              System.exit(0);
         public void windowIconi......
    class inputFrame extends Frame implements ActionListener,WindowListener
         String theString = "";
         Button okButton;
         TextField inputField;
         WindowX myWX=new WindowX();   //??
         public inputFrame()
              setLayout(new FlowLayout());
              inputField=new TextField(10);
              add(inputField);
              inputField.addActionListener(this);
              okButton=new Button("OK");
              add(okButton);
              okButton.addActionListener(this);     
              addWindowListener(this);     
         public static void main(String[] args)
              Frame f = new Frame();
              f.show();
         public void actionPerformed(ActionEvent evt)
              if (evt.getSource()==okButton)
                   theString=inputField.getText();
                   myWX.place(theString);   //??
                   dispose();
        public void windowClosing(WindowEvent e) {
        dispose();
        public void windowIconi......
    }

    Thanks for your reply!
    But I got an other problem:
    I can't refer to the object (wx) made from the main Frame 'WindowX', because it's initialized in 'public static void main(String [] args)'...
    Hope you can help me again... Thanks!
    import java.awt.*;
    import java.awt.event.*;
    public class WindowX extends Frame implements ActionListener, WindowListener
         private Button openButton;
         private TextField resultField;
         public static void main(String [] args)
              WindowX wx = new WindowX();   //!!
              wx.setSize(300,100);
              wx.setVisible(true);
         public WindowX()
              setLayout(new FlowLayout());
              openButton=new Button("open");
              add(openButton);
              openButton.addActionListener(this);
              resultField=new TextField(10);
              add(resultField);
              resultField.addActionListener(this);
              addWindowListener(this);     
         public void actionPerformed(ActionEvent evt)
              if (evt.getSource()==openButton)
                   inputFrame ip=new inputFrame(wx);
                   ip.setSize(200,80);
                   ip.show();
         public void place(String theString)
              resultField.setText(theString);
         public void windowClosing(WindowEvent event)
              System.exit(0);
         public void windowIconi....
    class inputFrame extends Frame implements ActionListener,WindowListener
         String theString = "";
         Button okButton;
         TextField inputField;
         WindowX parent;
         public inputFrame(WindowX parent)
              setLayout(new FlowLayout());
              this.parent=parent;
              inputField=new TextField(10);
              add(inputField);
              inputField.addActionListener(this);
              okButton=new Button("OK");
              add(okButton);
              okButton.addActionListener(this);     
              addWindowListener(this);     
         public static void main(String[] args)
              Frame f = new Frame();
              f.show();
         public void actionPerformed(ActionEvent evt)
              if (evt.getSource()==okButton)
                   theString=inputField.getText();
                   parent.place(theString);
                   dispose();
        public void windowClosing(WindowEvent e) {
        dispose();
        public void windowIconi..........
    }          

  • How to put the data from one excel sheet in another excel sheet

    hi ,
    I want put the data from one excel sheet in another excel sheet in seq. order Eg: I have one excel sheet in which i have 3 col. Name , Sno. , Email along with data .I want to put data from this sheet to another excel sheet in the following orders of col. Sno,Name, Email .
    While loading data in another sheet , i have to perform validation like char field should n't contain numeric values and vice versa .
    Let me know on this soon ..
    regards
    Prashant

    Well, you can issue separate queries with the ordering you need from each tab in the spreadhseet. You can open an ODBC connection from a VBA macro, select a sheet, run a query, select another sheet and run another query. As for the validation, you can do this in Oracle via stored procedures or again in VBA code.

  • Using the content aware move tool, I want to move an item from one image to another image but it does not seem to work. I think I need two layers on one document so how do I do this

    Using the content aware move tool, I want to move an item from one image to another image but it does not seem to work. I think I need two layers on one document so how do I do this

    Good day!
    A simple Paste does not work for you?
    It should place the clipboard content as a new Layer which you can then move around.
    If there is any chance that the elements need to be scaled, rotated etc. I would prefer to place them as Smart Objects (File > Place …) and do the masking that is specific to the images themselves in those.
    Regards,
    Pfaffenbichler

  • Paste from one image to another I get 'Paste Path'?

    Photoshop CS4  / Windows 7
    When I try to copy and paste from one image to another I get 'Paste Path' in the layers menu, but no pasted image appears. What have I done? - IM

    You probably have a path selected in the Paths panel in that image (or a Vector Mask active but that's the same thing). Go to the Paths panel and deselect the active path before copying

  • Replacing colour/texture from one image onto another?

    Desperately need some guidance here as this has been driving me nuts....
    I want to use the colour and texture from one photo onto my own design. Now, using the rubber stamp tool I am able only to clone a certain area that moves with the cross hair, but how can I clone a section from one photo and use that as a fill to create another design? In other words, clone a colour from one photo as a colour fill for another design?
    Even using the colour replace tool and selecting source: image I am left with the colour pallette as the destination and cannot use the colour from the image to paint my new image from it.
    Thanks a heap

    If I want to copy a single color from one image to another, here's what I'll do:
    Create a new rectangle in the source image
    With the rectangle selected, use the eyedropper to pick a color from someplace in the source image
    Copy the rectangle and paste it in the destination image
    Select the object I want to color and use the eyedropper tool to select the color from the copied rectangle
    (A layer with rectangles of different colors is sometimes handy for setting up a color scheme and using it consistently.)
    You can also create bitmap patterns to use as fills for vector objects. Fireworks comes with quite a few, but it's easy to add your own. Here are a couple of tutorials
    http://www.entheosweb.com/fireworks/patterns.asp
    http://www.peachpit.com/articles/article.aspx?p=30942&seqNum=4

  • Looking for best apple software for image extraction i.e. select an image from one photo and place it on another photo

    looking for best apple software for image extraction i.e. select an image from one photo and place it on another phot

    Cannot guarantee it's the best, but it certainly is the least expensive:
    http://www.gimp.org/downloads/

  • How best to copy keywords from one image to another?

    Hey everyone,
    I can't seem to find a good, obvious way in Bridge CS3 2.1 to copy just the keyword tags from one image to another.
    I realize that one possibility is to create a metadata template for the source image and apply that template to the destination image, but this would be a cumbersome & lame workflow IMHO.
    I also realize that Bridge allows loading and viewing many images simultaneously, and that the same set of keywords can then be applied en masse. I'm sure many users like this workflow, but I'm not one of them. For one thing, this approach is seriously not future-proof. What if the user goes out and takes more photos that fit into those same keyword-categories that were applied to the image group?
    It seems to me that Bridge should allow the user to right-click on the list of applied keywords (at the top of the keywords pane) and see a "copy keywords" command. And then the user should also be able to right-click on an image and see a "paste keywords" command.
    Comments appreciated,
    Thanks,
    Brad

    There are many arrows in the shape tool, or you can set the line tool to have an arrowhead in the tool options. You can copy/paste layers from one image to another, or drag a layer from the layers panel into the main image window of another image and then use the move tool to position it. You can also drag into the thumbnail in the photo bin, but you'll still need to bring the image up to adjust the positioning.

  • Transfering white balance from one image to many images.

    I'm starting to shoot with a gray card to get better color representation in my portraits... I typically shoot RAW.  I've read that you can save the white balance info from one image ( in a DNG file?) and transfer it to other images that are either JPEG or RAW ( as long as the initial image is a RAW). Anyone know how to both save the info, then transfer it?

    It doesn't directly address your question, but another way - sometimes useful for a group of modestly sized set of photos taken in the same light - is to open them all in Camera Raw (e.g., by opening them all in Photoshop), then using the Select All function and adjusting the white balance settings (or choosing a preset).  When done, press Done, and those settings will be saved for each of the images.
    -Noel

  • The float in windows option is grey and not accessable ? How can I copy from one image to another ? Elements 11

    The float all in windows option is grey and not accessible ? How can I copy from one image to another ? Elements 11

    You really are not getting this.
    "I guess I am still completely shocked that as a parent we can't download something for everyone to use."
    Why do you continue to think this although we keep telling you that this is not the case.
    You do NOT have to purchase anything twice.  You can share the music with as many ipods as you like in your household.
    The ipods are designed to sync with your computer regularly.  You should have been syncing these other ipods with your computer all along, thus transferring the purchases to your computer where that music can be synced to as many ipods as you like.
    Take on of the ipods with the music in it.  Open itunes on your computer.  Plug in the ipod.  Do not sync.  Click File>Transfer Purchases  This will transfer the purchases from the ipod to the computer.  Make sure that you have authorized your account on the computer:  here are directions for that. http://support.apple.com/kb/HT1420
    Unplug the ipod.
    Plug in the other ipod with purchased music.  Do not sync.  Click File>Transfer Purchases  This will transfer purchases from the ipod to the computer.
    You can now plug in any of the ipods, select what you want to sync and sync.
    Have a look at the manual for the ipod.  http://manuals.info.apple.com/en_US/iPod_touch_iOS4_User_Guide.pdf

Maybe you are looking for

  • Aging g4 just keeps going but is more ram worthwhile?

    I have a g4 that was purchased in 2000. I have never had a problem with it and probably haven't turned it off 50 times since I bought it. My question is that I can't afford a new computer but is it worth putting more RAM in it now in view of it's age

  • Mistake in the creation of report painter

    Good, I have created a report and on having executed it it(he,she) gives me the following mistake: The line of formula 068 does not possess operandos of lines N º message: GR370 Diagnosis The lines of formula link between(among) yes the lines of repo

  • Press 1 if you think Verizon Customer Service is Awful

    I consider myself Verizon's idea of the "perfect" customer.  First, I have the FIOS Bundle package (phone, internet, TV) with all the bells and whistles, including all the movie channels and sports packages.  And, until very recently, I was a longtim

  • ITunes can't authorize on more then 5 computers.

    Hello, I have built a few machines and can no longer authorize iTunes because I have authorized on more than 5 computers. The error message tells me to unauthorize one of the computers but they no longer exist for me to do this. How do I get my accou

  • `my bookmarks are suddenly in dropdown menu called "bookmarks bar"

    The bookmarks in my bookmarks bar have disappeared from the bar - they are now in a dropdown menu on the bookmarks bar called (of course) "bookmarks bar".  How do I get rid of this dropdown menu and return the bookmarks to their original positions al