Pasting a masked image unto another picture, background shows

I have a photo that I wanted to show just the people and no background.  I masked the photo and have just the people.  Now I want to take that photo and paste it unto another photo that has a blurr background effect.  When I do the paste of  the masked photo the background of that photo that I masked shows on top of the blurr background .  How do I do this paste with only the people that I selected in the mask.
thanks
Mike

Here's a step by step overview of what I did to blur the background behind people:
1.  Duplicate the original image as a second layer.
2.  Mask so that the people only are showing in the top layer.
3.  Use the mask to create a selection of the people only (Ctrl-click on the upper layer's Mask).
4.  Make the top layer invisible and activate the lower layer.
5.  Expand the selection to encompass a few pixels around each of the people.
6.  Edit - Fill - Content Aware (which eliminates the people from the lower layer).
7.  Filter - Blur - (Gaussian or Lens, depending on your preference).
If you did not duplicate your image as in step 1 above, don't worry, you can still get a second copy of the image from what you have:
A.  Duplicate your masked image as a second layer.
B.  Delete the layer mask from the lower layer.
C.  Start with step 3 above.
If it's not clear to you how to accomplish any of these operations, I encourage you to look them up, so that you can become familiar with how to find out how to operate the software, but if you get stumped just ask and I (or someone else) will be happy to elaborate.
The first 2 minutes 45 seconds of this video shows how to do something a lot what you're doing here.  Instead of moving your subjects, blur your background.
http://www.youtube.com/watch?v=vfkjHnsAsvg
-Noel

Similar Messages

  • 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

  • Copy and paste a Text-Layer to another picture - Its not a Textlayer more

    Hello,
    i tried to copy a text-layer from one psd-Picture and i want to paste it into  other pictures:
    var dok_textebene = app.documents.getByName ("text.psd");
    dok_textebene.artLayers["name of the textlayer"] .copy() ;           
    //chage to a other picture
    app.activeDocument =  otherpictureRef ;
    app.activeDocument.paste ();
    //  this is ok, i could copy & paste the layer
    // But it is not any more a text-layer
    //then i tried this code to change the state of the layer to a text-layer
    app.activeDocument.activeLayer.kind = LayerKind.TEXT ;
    But this was not aible, i get an error.
    Does anybody know how i could copy and paste a text-layer ?
    Thanks
    realbutsch

    It might be better to duplicate the text IE:
    var currentDoc = app.activeDocument;
    var dok_textebene = app.documents.getByName ("text.psd");
    app.activeDocument = dok_textebene;
    activeDocument.activeLayer = activeDocument.artLayers.getByName('name of the textlayer');
    activeDocument.activeLayer.duplicate(currentDoc);

  • Thumbnail image is not the same image as the picture that shows when opened

    When I look at a thumbnail image in iPhoto and then I click to open that picture a different picture appears on the screen and the thumbnail image is not opened.  It's almost like they are both within that image, one appearing in the thumbprint and one in the full image.  So if I want to print a thumbnail image I can not find it and if I want to see what is in the folder some don't show in thumbnails.  I think this happens when I transfer from my iPhone to iPhoto and I have deleted some pictures from my phone before the transfer.  The deleted ones I see the thumbnail image of but they are not there when images are opened, and the pictures they override are not there when I try to find them in the thumbnails.  I am only having this problem in two of the iPhoto folders that I have.  I have a large iPhoto library.           

    Back up your iPhoto library, Depress and hold the option (alt) and command keys and launch iPhoto - from the resulting first aid window rebuild thumbnails and if needed repair permissions and if necessary rebuild your database
    LN

  • How can I 'cut and paste' a part of one image to another?

    I have this program the creates great syfi looking planets and some other cool stuff. I creates them
    on a solid black background. I'm hoping there is a way to cut out just that planet and paste it onto
    the sky of another picture. I don't want the black background just the planet. I can go in and make
    the edges look nice after it's done. But I don't know how to do it :-(
    Thank You.

    1. use the selection tool(s) of your choice to select the planet. It helps to give the selection a one or two pixel feather to avoid a cutout look (Select>Feather).
    2. Copy it (ctrl+C in windows, command+C on a mac)
    3. Paste it (ctrl+v in windows, command+v on a mac)
    You will get better results if both images have the same ppi before you start (image>resize>image size. If you need to make a change for one image, make sure Resample Image is OFF.) You can use the Move tool to arrange/resize the object once it's in the destination photo.

  • I used to be able to use the reduce picture ( middle button ) using Firefox and dragging the image to another screen. How do I restore this as the reduce button will not work ?

    The top right corner of the screen allows you to reduce the size of your entire image on Firefox . I used to be able to do this so I could drag the image to another screen . Suddenly I cannot do so anymore from my laptop. What can I do ?

    Could you clarify where you are doing your search?
    ''For Firefox's "Search bar",'' which is the box on the right end of the main navigation toolbar with the icon indicating your currently selected search engine, there is a hidden setting for this:
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the search box above the list, type or paste '''sear''' and pause while the list is filtered
    (3) Double-click the '''browser.search.openintab''' preference to switch it from false to true.
    If you test, does it work?
    ''For searches from other places,'' could you be more specific about where you are entering your query (e.g., address bar, built-in home page, on a search engine site)?

  • (yet another) JFrame background image topic

    So I know there's about 20 other threads asking this same question, but I've read them all and still can't seem to get my code to work. Here's what I have:
    import javax.swing.*;
    import java.awt.Image;
    import javax.imageio.ImageIO;
    public class IndexFrame extends JFrame
        private JButton course1;
        private Image bg = new ImageIcon("background.jpg").getImage();
        public IndexFrame()
         JPanel cp = new JPanel()
             public void paintComponent(java.awt.Graphics g)
              if(bg==null) System.out.println("doh! no pic");
              g.drawImage(bg,0,0,null);
              super.paintComponent(g);
         cp.setOpaque(false);
         setContentPane(cp);
         this.setBounds(100, 100, 1000, 800);
         course1 = new JButton("hi");
         add(course1);
         setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
        public static void main(String [] args) {
         IndexFrame frame = new IndexFrame();
         frame.setSize(300,300);
         frame.setVisible(true);
    }Needless to say, it doesn't work, and I have no idea why. It appears to be loading the pic correctly, because bg is not null (doesn't print the error message). Any help figuring out what's going on would be greatly appreciated!
    On the bright side, I've learned a lot about Swing in trying to fix my problem; here's a question though. Is it ever a good idea to override a Swing object's (e.g. a JFrame) paint method? Or, unlike AWT, should you only override the paintcomponent()? And if so, why?
    Thanks!

    I've had problems with ImageIcon reading. For one
    thing, if it can't find the file, it won't always
    tell you. I had to give the absolute path a number of
    times for it to be able to find the actual image
    file.Hrm, so I guess I assumed it had loaded the file since bg was no longer null. It turns out you were right. I replaced the line:
    private Image bg = new ImageIcon("background.jpg").getImage();with:
    ImageIcon blah = new javax.swing.ImageIcon(getClass().getResource("background.jpg"));
    bg = blah.getImage();in the IndexFrame constructor, and now it magically works! Just for future reference for me, any idea why the first way I did it didn't work? Was I using ImageIcon incorrectly? Also, is there a better way of handling images? I've come across the ImageIO class, but wasn't sure what that was intended for.
    Thanks again!

  • Placing an image into another one

    Please help me with the following problem:
    I'm trying to place an image inside another one. So, I used the magntic lace tool to make the selection, and then copied it and pasted it onto the other image, but only the outline of the shape appeared.
    At first, only a white shape of the image appeared, but after changing some settings (I don't remember which) only the outline of the shape came up. I want the actual image to appear! How can I do this?

    Thank you for that. The cracker package appears to only be the Background (Frondo) Layer, so there should not be an issue with the wrong Layer there.
    I'd run that test mentioned, and just use the Rectangular Marquee Selection Tool, to do a rough outline of the cracker package. You will be on the Background Layer, so that a Copy should capture all of the pixels in the Selection. Then, go to the shot of the men, and Paste. Depending on the resolution of the two Images, you might need to do a Ctrl+T (Free Transform), to Scale, Rotate and also locate that new Layer to suit. Note: to constrain the Aspect Ratio of the pixels in that Pasted Layer, just click on a corner (little square), and hold down the Shift key. You can locate the Layer, as required, by either click-dragging inside the Bounding Box, or by using the cursor keys, or Shift+cursor key (larger increment of movement), until satisfied. Then hover the mouse's cursor outside the Bounding Box, but near a corner, and you will then see an arc with two arrowheads. Just click and move the cursor to Rotate. When done and satisfied, hit Enter, or Dbl-click inside the Bounding Box.
    That should do the trick. If not, then please let us know more.
    If all is well, it's a simple matter to create a Layer Mask for the cracker package Layer. To create that Layer Mask, one can use an number of Selection Tools, or the Pen Tool to create a Path to be turned into a Selection (my choice for situations similar to yours), that will become your Layer Mask to hold back the extra background pixels from the Rectangular Marquee. The beauty of a Layer Mask is that you can always go in and refine it. You can also directly paint onto, or paint away that Layer Mask. By using a small, soft-edged Brush, you can refine the Mask neatly. If you make a mistake there, or wish to add/remove from that Mask, just hit the X key to swap the colors of the Brush from black to white and back. I like Layer Masks for the level of refinement, and also for the ability to come back in and edit, as all you are doing is holding those extra pixels out of the Image, years later. Just be sure to do a Save_As PSD with the Layer and Layer Mask.
    Good luck, and hope this helps,
    Hunt

  • 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

  • How do I keep my selections the same size when placing in another picture?

    Using PSE 4, I am trying to take my head from one picture (Using the selection tool, etc) and place it in another. The problem is, whenever I try to do that, it changes sizes; gets smaller. Yesterday, I tried to take a part of larger picture and place it into a smaller picture. I tried to resize the background picture but it made the cutout I placed on top of it humungous. I just want to know, is there anyway to keep the actual size of something you cut out, and place in another picture, that same size no matter what? By the way, I have literally been using PSE 4 for 3 days. If you answer, please speak in layman's terms as much as possible. Thank You.

    The size, in pixels, is staying the same. Most of the time, this is the way you should think of image size. Working in inches is only meaningful when you are about to print.
    In your example, if the piece you have added is too small, select it and use Transform to make it bigger. This is upsampling, so quality may be compromised.

  • Tab Control picture background?

    Could you get me someone advice how can I put in Tab Control (from palette Containers) picture background from file i PC? 
    Thanks a lot

    Hello,
    First, add and agrandisser your tab control.
    Second, go to edit and click on customize control ...
    Third, click on import file (choose your picture), then click on change customize mode (dial key).
    Finally, go to edit and click past, adjust your image and then save and return to précedent mode.
    Good Luck!!

  • Dragging One Image Onto Another

    The book, Photoshop Layers, by Kloskowski, starts the subject of Masks on p. 94 by telling the reader to open two images, then use the Move tool to drag one onto the other so that they are in the same document.
    A picture of what that should look like shows, in the Layers palette, image A in the Background layer, and image B residing in Layer 1. Each thumbnail shows an entire image (not a checkered thumbnail with a small image within it).
    As the title indicates, the book is designed for Photoshop users. I use Elements 6 but have been able to perform most of the tutorials; however, the above instructions baffle me. I cannot fathom what he is talking about.
    In Elements 6, How can I drag one image onto the other? I start out with two images in the bin - and the move tool does not work on bin images. I have tried various workarounds but the results do not look like the Layers palette picture he shows. For instance: File/New/Blank File does not work.
    As to my level of knowledge: I am very comfortable with layers of all sorts and understand/use them. I am also familiar with Elements. So, if you will, assume I am not a neophyte, even though my question may seem very basic.

    Normally this won't matter, but there are situations where it does change what you bring in; like rasterizing an EPS file, for instance. In full PS, it creates smart objects from the files you use the command on.
    A text layer, for example, is no longer editable after being placed. But for most images, I suppose it would be okay.

  • Trying to subtract one image from another

    I am a graduate student in a biology laboratory and I have been given the task to remove autofluorescence from our fluorescent microscopy images and I have found a way to do it, but I would like to improve it.  Unfortunately, I know very little about photoshop (mostly learned by playing around with things).
    What I need to do is take two pictures which show the same section of tissue but with different wavelengths of light (one picure in green, one in red) and subtract one image from the other.  So far I have converted the two images to greyscale then did "Apply Image" to subtract image 2 from image 1.  Then I convert Image 1 back to RGB and adjust the channels so I only have one color showing (green).  It has been effective but I would like to adjust things a bit.
    First, is there an easy way that I can adjust the brightness/contrast/levels of the image 2 to match the images levels to image 1--both images have certain parts of the image that are conserved.  Can I get photoshop to look at a specific area on image 1 and allow me to adjust that same area in image 2 to the same brightness/intesity?
    Second, I tried to make an action for this process, so I can give it to the other people in the lab so they can quickly do the same technique.  When I get to the Apply Image step it asks for the name of the image that I am working with which should change each time I do this technique.  Is there another approach other than using the Apply Image feature which will allow me to subtract image 2 from image 1 that would work in an action.
    If you need anymore clarification or an example of the pictures let me know.

    Put both images on individulal layers, and set the blending mode of the topmost one to "Difference". Adjust layer transprency as desired.
    If you add an adjustment layer, you can link it as a clipping mask to one layer. You can then paint on the associated layer mask to make it only affect certain areas.

  • I need to know how to take a person out of a picture and then add it to another picture?

    I need to know how to take a person out of a picture and then add it to another picture? I am on version 9.0 for photoshop elements.

    Try this:
    In Editor, go to the expert tab.
    Open picture B, the one you wish to select something from to add to another picture.
    Use one of the selection tools, e.g. selection brush, lasso tool, to select the object. You will see an outline ("marching ants") once the selection is complete
    Go to Edit menu>copy to copy the selection to the clipboard
    Open picture A, then go to Edit>paste
    Use the move tool to position object from picture B.
    In the layers palette you should see picture A as the background layer, and object B on a separate layer.

  • Overlay one image over another one.

    Hi,
    I am trying to overlay one image over another one.
    (example ..
    First images 1) This will have complete picture like the passport picture with background
    Second Image 2) This will have some specific parts(background of above) whitened
    Result picture 3) This should have the passport picture with out any background just the person.
    Is this possible using intermedia ??
    Thanks in advance.

    dude, not too sure the dept. of homeland security is going to be cool with doing that.
    unless you can make me a passport from Guam.

Maybe you are looking for

  • Macbook pro 2011 running slow

    Problem description: my computer has been running ridiculously slowly to the point I am wondering if I am supposed to be upgrading to a different computer?  Applications, documents, everything takes forever to open. Also Microsoft Word crashes pretty

  • New imac 27"

    Hi all,total newbie here so please excuse if this is in wrong part of forum. This is another firewire question.(one week old imac) I have a fairly old panasonic dv camcorder which has a small four pin dv in /out socket upon getting my mac I realized

  • Exception caught by adapter framework: RfcAdapter: receiver channel not in

    Hi friends, I am  doing a file-RFC-file scenario. This is based on the blog: /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit The company ID is sent to the RFC through a xml file. RFC will return the company details which will b

  • Cannot connect to the console.

    Getting the following error when trying to connect to the console Using VMware vSphere Mobile android client 1.4.610000. "The console has been disconnected. Close this window and re-launch the console to reconnect." I am able to connect with a comput

  • 2 icons of the same file

    Why do I have two icons of the same file of my iBooks Author?