How do I layer digital backgrounds with photoshop elements 2011? [was:Please Help]

How do I layer digital backgrounds with photoshop elements 2011?

What do you mean by "layer digital backgrounds"? Can you explain a little more about what you're trying to do?

Similar Messages

  • How can I save a picture in Photoshop Elements that was emailed to me using Photoshop Elements?

    How can I save a picture in Photoshop Elements that was emailed to me using Photoshop Elements?

    Save the attachment in a folder.
    From the Organizer menu choose:
    File >> Get Photos & Videos >> From Files & Folders
    Navigate to your image and click Open.
      If the photo is embedded, make a copy or screen grab and then whilst it’s still held in memory open the Elements Editor.
    From the menu click:
    File >> New >> Image from clipboard
    Then use File >> Save As
    Then choose jpeg.

  • Very frustrating problem with Photoshop Elements 10 - can anyone help?

    I don't know what's happened, and I haven't changed any of the settings or anything.
    When I open a photoshop file I am currently working on, now, no matter what I do, nothing changes in the actual photo. Even when I delete layers to see if it reverts back to the original photo, nothing changes. When I try adding new layers, nothing happens, when I try adjusting something such as opacity, or brightness/saturation, nothing changes.
    I've tried opening/creating other photoshop files and I have the same problem, so it seems a problem with the actual software, rather than individual files. Even after uninstalling then installing the software, the problem is still there.
    Does anyone have any idea what is causing this? Or could you direct me to a good help forum/source?
    Many thanks

    Welcome to the forum.
    I would go to the Photoshop Elements Forum, and look for Loraclf's post there, or post with your problem, your equipment info, and the problem. Someone there will be able to help you.
    Good luck,
    Hunt

  • Photoshop Elements 6 problem - please help

    hi.  can i download an older version of photoshop elements on my computer without a disk.  i have photoshop elements 6.  my computer had to be totally cleaned and i lost my photoshop and i want to be able to load it again.  i have the original package that has case with serial numbers but the disk is all scratched up and is unreadable.  i really don't want to buy program again if i don't have to.  any help is great.

    Unfortunately even if there were a download it wouldn't help you, since back then disc versions and downloads had mutually incompatible serial numbers. You would need to find another disc to copy to something like a thumb drive on a computer with an optical drive, then copy the files to your desktop to run the installation.

  • I can't open Photoshop Elements 8 (Editor) Please Help

    Hello,
    I am new here and I am hoping I can get someone to help me out.
    I've recently Downloaded Photoshop Elements 8 (trial) for my Brand New Computer (I use Windows 7)
    in hopes of purchasing it after learning the program a little bit, well I'm glad I haven't purchased it yet since I've run into a problem
    I cannot get Photoshop Elements Editor to open, I can however use the organizer.
    I have already tried the following things in hopes of fixing this problem
    Uninstal-Reinstal
    Services, Flexnet and made sure it was on
    Pushed Control Alt and Shift and clicked on the editor button
    all with no luck.
    I'm really hoping someone has had this problem before and can help me out, I was really looking forward to using this program since I also own Photoshop Elements 6 and the same thing happend (I found out it is not compatible and have since uninstalled it)
    Thank you so much for your help
    Micheline

    I am having the same issue exactly.  Could someone please help?  I'm quite frustrated.  I just got a new computer and couldn't wait to try out PhotoShop on it.
    HELP!!
    Thanks!

  • Adobe Photoshop Elements 12 problem please help

    I bought Adobe Photoshop Elements 12 and when I try to go to photoshop and click sign in and I type my password and e-mail address in and click sign in it says please wait for a moment then it closes out and nothing happens and btw i have a pc

    Elements 12 - not working

  • How to prepare Illustrator logo art with Photoshop elements

    I have designed a logo that will be used in a wide variety of print and web applications. It is made up of primarily vector art...outlined type and an icon. But I am using a photo as the background fill inside the icon shape.
    What is the best way to construct the final art files so that I get optimum resolution of the leaf image for the largest applications (window signage) and efficient file sizes for the smaller applications (business card)? I want to provide the client with vector art (not jpegs or tiffs) and still have the photo be the appropriate resolution for a wide range of finished sizes for print and web.

    twob,
    It is quite common to create a number of different files for different purposes.
    Apart from different colour mode for print (CMYK/spot) and web/other screen uses (RGB), obviously print requires higher resolution, and web/other screen uses require raster files.
    The resolution needed for web/other screen uses should be evident in each case.
    The resolution needed for different print tasks depends on a number of things, including kind of printing.
    In this connexion it is important to realize that the required resolution in print depends on size and viewing distance: if you view artwork that is twice the size at twice the distance, you will need half the resolution, in other words the same file size in pixels by pixels. You may say that the required file size (pixels by pixels) depends on the viewing angle.
    This means that a billboard to be viewed at a large distance and a normal page may have the same file size; obviously, the file size for a business card may be smaller.
    Apart from all that, it is possible to recreate a photo like the leaf as vector artwork in Illustrator, and have everything as vector. If you consider that an option, you may post in the Illustrator forum to get started, and/or look round for tutorials; specific ones may very well be sugested in the forum, probably by others over there; it is past midnight over here.
    http://forums.adobe.com/community/illustrator/illustrator_general

  • How do I straighten a photo with Photoshop Elements?

    I opened a JPEG file and went to "Select" and clicked on "Select All", I then selected "Images" and wanted to click on "Transform" but it was "whited out" (not available), the only options that were available in Images were Rotate, Crop, Re-Size and Convert Color Profile.
    I would like to straighten the photo, WHAT am I doing wrong?
    Thanks,
    Bob

    Thank you for your help Little Pale Face, I probably am a little higher than a novice so I use mostly Quick and sometime Guided and as you can probably tell, don't feel comfortable enough to use Advance mode.
    Transform was not an option in either Quick or Guided so I (reluctantly) checked Advance where it WAS an option.
    As I mentioned, I am a novice so I am not familiar with Advance but figured out how to (slightly) shift/straighten the photo but that left a little "blank" space on the bottom and side so I guessed that I had to crop the photo so that only the picture and not the blank area, would appear. I don't know if what I did was correct and assume there must be a better way to straighten photos.
    Thank you Little Pale Face.
    Bob

  • How to merge two java files with InputDialog to select?Please help me!?

    //Addition Java application
    import javax.swing.JOptionPane; // import the class
    public class Addition {
    // main method
    public static void main(String[] args)
    String firstNumber, secondNumber;
    int number1, number2, sum;
    // read the first number
    firstNumber = JOptionPane.showInputDialog("Please enter a integer: ");
    // read the second number
    secondNumber = JOptionPane.showInputDialog("Please enter another integer: ");
    // data type conversion
    number1 = Integer.parseInt(firstNumber);
    number2 = Integer.parseInt(secondNumber);
    sum = number1 + number2;
    // display the result
    JOptionPane.showMessageDialog(null, "The sum is " + sum + ".", "Results", JOptionPane.PLAIN_MESSAGE);
    System.exit(0);
    //Multiplication Java Application
    import javax.swing.JOptionPane;
    public class Multiplication5
    public static void main(String args[])
    int number1, number2, number3, number4, number5, product;
    String firstNumber, secondNumber, thirdNumber, forthNumber, fifthNumber ;
    firstNumber =
    JOptionPane.showInputDialog("Please input an integer");
    secondNumber =
    JOptionPane.showInputDialog("Please input another integer");
    thirdNumber =
    JOptionPane.showInputDialog("Please input the third integer");
    forthNumber =
    JOptionPane.showInputDialog("Please input the forth integer");
    fifthNumber =
    JOptionPane.showInputDialog("Please input the fifth integer");
    number1 = Integer.parseInt(firstNumber);
    number2 = Integer.parseInt(secondNumber);
    number3 = Integer.parseInt(thirdNumber);
    number4 = Integer.parseInt(forthNumber);
    number5 = Integer.parseInt(fifthNumber);
    product = number1 * number2 * number3 * number4 * number5;
    JOptionPane.showMessageDialog(null, "The product is " + product, "Results", JOptionPane.PLAIN_MESSAGE);
    System.exit(0);
    I seek for help to merge above two java application files.
    I need to call JoptionPane.showInputDialog to prompt the user to input the operation, 1 for addition, 2 for multiplication. In this dialog, the user is expected to enter the integer of 1 or 2 for the calculation.
    Please help me ! Thank you!

    Hi CRay,
    You just need to call the main methods of the 2 classes according to "1" or "2" entered.
    It is better if the "multiplication" and "addition" are declared as methods rather than in main methods.
    Example:-
    public static void Addition()
    Then call
    Addition.addition();
    than
    Addition.main(new String[]{});
    as shown below.
    import javax.swing.JOptionPane; // import the class
    public class Test{
        public static void main(String[] args){
            // read which  operation to perform
            String operation = JOptionPane.showInputDialog("Please enter which operation : ");
            if(operation.equals("1")){
                Addition.main(new String[]{});
            else{
                Multiplication5.main(new String[]{});
    }Rose

  • I'm unable to open Photoshop Elements 12 Editor, please help?

    Purchased & opned fine earlier today, however have not been able to open Editor all evening. I'm on windows 7, all help appreciated please..

    How are you opening it? From the welcome screen, from the organizer, from the actual .exe file? Do all those ways fail? No message?

  • How do you do action recording in Photoshop Elements like you can in regular photoshop?

    How do you do action recording in Photoshop Elements like you can in regular photoshop?
    One of my clients is a club promoter and they would like to put their logo on the bottom left of their photos from their events. Usually I can do this by opening the logo (which has like 50% opacity), copying the logo, recording an action set, pasting the logo i copied to memory into the photo, resize the photo and export and close the photo, save the action set and then just batch- automate and choose all currently opened images to run the action on.
    *I mentioned the 50% opacity because I want to put the logo on the photos but not totally hide what's underneath the logo.
    How do I do the same with photoshop elements?
    -Line

    Just another option that may work for you there are a number of relatively cheap and a couple of freeware programs that are listed here, there are many others I am sure.
    http://shareme.com/showall/Batch-Watermark.html
    I have not used any of these so I can not recommend of course but most have trial versions.
    Good Luck,
    Don

  • How do i make a transparent background in Photoshop Elements 13

    how do i make a transparent background in Photoshop Elements 13

    Open the picture file
    Use one of the selection tools to select the foreground
    Place the selection on its own layer (Layer>New>Layer via copy or CTRL+J) - this will be Layer 1
    Delete the background layer
    If you want to save it, use a file format which supports transparency, e.g.PNG

  • We have version 10.5.8 photoshop CS3 for Mac. How do we fix a problem with photoshop not resizing dpi? For example we resized a 72 dpi image to 200 dpi, when we do a pdf analysis it read as 344 dpi.

    We have version 10.5.8 photoshop CS3 for Mac. How do we fix a problem with photoshop not resizing dpi? For example we resized a 72 dpi image to 200 dpi, when we do a pdf analysis it read as 344 dpi.

    Sounds like it's a problem with the Acrobat settings. Did you set them to the same resolution?

  • How can I put a face on another body and make it look real? Can I do this with photoshop elements 13.

    How can I put another face on another body that I find on the web? Can I do this with photoshop elements 13? And If so can I make it look real?

    See this link:
    Google

  • How can I obtain a version of Print Studio Pro that works with Photoshop Elements 13 (64 bit)?

    How can I obtain a version of Print Studio Pro that works with Photoshop Elements 13 (64 bit)?  The advertising refers to Print Studio Pro 2 but all I find available to download is version 1.35.

    Thanks - I did notice that the 2 was a superscript on one site but on another (I think the one for the Pro-10 printer) it was definitely a 2 in line with the rest of the text and separated by a space (at least on my browser).  At any rate, I suspected something of the kind and will simply use Photoshop Elements 11 when I want a pattern print until the change is made.
    If you have an inside line to Canon you might also suggest some changes to their Image Garden program, specifically its handling of DVD label projects.  It has several themes and within each theme several layouts.  As far as they go these are fine but they do not give nearly enough flexibility.   The boxes for insertion of images are useful as is the simple procedure for rescaling the image so it is cropped in varying ways while staying within the fixed box.  However, it should be possible (a) to relocate the boxes on the page and (b) to resize and reshape the boxes - probably by a control which would become available by right-clicking on the box.  For example, there are times when the user might want to include a full 16 x 9 frame shot as one of the images, and in general the aspect ratios of the provided boxes do not permit this.
    I have over the years preferred to use Word for this purpose after setting up masks to expose just the printable area of the DVD or Blu-ray disc, setting up the margins so that the center of the disc is in the horizontal center of the page, and finally introducing text and pictures and adjusting the font size of blank lines above the disc to line everything up properly in the vertical direction.  A typical layout might involve one large picture, located so the center hole and the curved outer edge do not block anything important, or two pictures side by side, or four pictures centered vertically (to minimize the effect of the outer edge of the disc) but possibly of different widths (so as to make both close-ups and wide scenes optimal on the same disc label).  The text then goes above and below the pictures.  All of this works perfectly so I probably wouldn't use Image Garden very often for this purpose, but the inability to resize and relocate the boxes must be very limiting for others as well. 
    Some of the layouts have image locations severely reduced by the edge of the disc.
    As I said ... if you have an inside line to Canon .. but if not, please excuse the length of this post!

Maybe you are looking for

  • Many contacts and calendar events have disappeared

    Many of my contacts and calendar events have suddenly disappeared. Can they be retrieved?

  • Installing OS X on a NEW hard drive

    I just installed a new hard drive on the macbook pro. however, when i run the installation disk it never actually installes os x instead it trys to install the applications, but cant find the drive. How do I install OS X on a new hard drive? Thanks.

  • Position of parameters of a report using a Logical Database

    Hallo all, Is there any way that I can make the parameters defined by me in a report to appear <b>before</b> the ones defined by the Logical Database it is using ? I searched but I couldn't find something relevant. I would like to avoid having to cop

  • How to set font of a row in DataGrid? (FB3)

    I have found examples of how to set the background color of a row based on an attribute of the data item in the row, but I cannot find anything that tells me how to set the font style. Ideally I want to choose either normal or italic based on an attr

  • Enhancement is in active state but not giving result.

    Hi All, Could you pls help me with this. I created an enchancement for a function module MARM_GENERIC_READ_WITH_MATNR.  The enchancement is in active state but not giving the result. The result before and after enchancement is the same. Thanks, GC