Putting an image behind another image

could someone help me. i want to put the an image behind another image. The image on the top will have some invisible parts, and the behind will fill in those parts. How should i do it?
thanks. could you email me [email protected] if you have an answer

check some alpha values
these make the background bit transparent to complete transparent
i hope this community will give u better answers

Similar Messages

  • Add Tags to Document tool put one object behind another or just deletes page content?

    Using Acrobat XI Pro to make documents 508 compliant PDF. I've had a number of issues went using Add Tags to document option, it’s put one object behind another or deleting it all together. Also had issues when trying to adjust the reading order, content is moved or deleted. This PDF is created from InDesing CS5
    Anybody know what I'm talking about or have any ideas about how to fix it? Thank

    Content should not ever be deleted by adding tags, but it may appear so since - as you note - objects may go into hiding behind other objects. In theory you can bring them out of hiding by rearrange things in the Order pane, but I have much better luck using the Content pane - it provides a much finer level of control. If text is hidden behind a shaded box, for example, I will move the box above the text in the Content order, then usually convert the box to an artifact if it is not one already.
    Hope this helps.
    a 'C' student

  • How can I bring other application to front, or put AIR app behind another application?

    The simple case is that I'm launching a browser URL. However,
    I'm finding that the browser does not come to the front, it's
    opened behind the AIR application. What I really want is to bring
    the browser to the front. What might work is to send the AIR
    application to the back. Can either be done?

    "there is no way to send your AIR app go to the back of the
    desktop display stack"
    Okay, I found NativeWindow.orderToBack(), and it seems to
    send the window to the back of the entire desktop display stack...
    seems to be what I want. Am I missing something?
    I intentionally leave the window in fullscreen mode, which
    means when the user exits the browser/app that is now over top of
    it, they are back to their presentation in fullscreen mode. Now if
    only AIR could open those .pps files directly without the browser,
    and it would be perfect.

  • How can I make an image appear partially in front and partially behind another layer in Adobe Illustrator?

    How can I make an image appear partially in front and partially behind another layer in Adobe Illustrator?

    Put the image behind the layer (at the back of it or on a layer below). With it still selected, Copy.
    Now Paste in Front (Ctrl+F). Depending on your Paste Remembers Layers setting, you may have to bring the newly pasted copy to the front, or to the upper layer.
    Draw a shape over the image to define the portion of it you want to appear "in front."
    With the shape and the image selected, clip the image using the shape. (Object > Clipping Mask > Make)

  • Putting an image behind the desktop?

    How do I put an image behind my desktop icons?

    Apps can't do that sort of thing because it requires control of the parts of the phone that Apple does not want people to control.

  • I had all photos on a Windows desktop.  Got a mac laptop, installed LR5, and put all images from Windows onto an external hard drive.  When I go to import them into LR on the Mac, they are all locked.  Help, please.  Thanks

    I had all photos on a Windows desktop.  Got a mac laptop, installed LR5, and put all images from Windows onto an external hard drive.  When I go to import them into LR on the mac, they are all locked.  Help, please!

    "I plugged the external into the Mac and moved a folder of images onto the desktop.  It looks like it went from read only to not locked.  Is this possible?"
    Yes, that's exactly what happened. If you buy another drive, you could copy from your existing drive to the new and your files will be read/write. The new drive will have to be formatted as an HFS drive (that's the Mac's format). If you need to format it, you use Disk Utility which is in the Utilities folder on your Mac. Be careful with that -- it wipes out whatever is currently on the drive. Make sure you format the right drive.
    I keep all my images on an external drive, too. In fact, I have two matching drives and sync them so I always have a backup.

  • Putting an Image in my CoordinateArea

    Hey,
    I would like to be able to place an image within my CoordinateArea, and I also want this image to be able to respond to being clicked on when the mouse is clicked between certain co-ordinates. Here is my code so far...
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.MouseEvent;
    import javax.swing.event.MouseInputListener;
    public class tourWelby extends JFrame {
    JLabel label = new JLabel();
    JPanel panel = new JPanel();
    Point clickPoint = new Point();
    Point cursorPoint = new Point();
    private static void createAndShowGUI() {
    JFrame.setDefaultLookAndFeelDecorated(true);
              JFrame frame = new JFrame("TourWelby");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              tourWelby controller = new tourWelby();
              controller.buildUI(frame.getContentPane());
              //Create and set up the content pane.
              frame.getContentPane().setBackground(Color.BLACK);
              // Create the menu bar
              JMenuBar menu = new JMenuBar();
              menu.setBackground(Color.BLACK);
              //Build the menus.
              JMenu file = new JMenu("File");
              file.setBackground(Color.BLACK);
              file.setForeground(Color.WHITE);
              JMenu test = new JMenu("Test");
              test.setBackground(Color.BLACK);
              test.setForeground(Color.WHITE);
              // Install the menu bar in the frame
              frame.setJMenuBar(menu);
              menu.add(file);
              menu.add(test);
              //Display the window.
              frame.pack();
              frame.setVisible(true);
              frame.setResizable(false);
              frame.setSize(800,700);
         private void buildUI(Container container) {
    container.setLayout(new BoxLayout(container,
    BoxLayout.PAGE_AXIS));
    CoordinateArea theArea = new CoordinateArea(this);
    container.add(theArea);
    label = new JLabel();
              label.setBackground(Color.BLACK);
              label.setForeground(Color.WHITE);
    resetLabel();
    container.add(label);
    public void updateCursorLocation(int x, int y) {
    if (x < 0 || y < 0) {
    cursorPoint = null;
    updateLabel();
    return;
    if (cursorPoint == null) {
    cursorPoint = new Point();
    cursorPoint.x = x;
    cursorPoint.y = y;
    updateLabel();
    public void updateClickPoint(Point p) {
    clickPoint = p;
    updateLabel();
    public void resetLabel() {
    cursorPoint = null;
    updateLabel();
    protected void updateLabel() {
    String text = "The cursor is at ";
                   if (cursorPoint != null) {
    text += "("
    + cursorPoint.x + ", " + cursorPoint.y + ") ";
    label.setText(text);
         public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    public static class CoordinateArea extends JComponent implements MouseInputListener {
    Point point = null;
    tourWelby controller;
    Dimension preferredSize = new Dimension(800,700);
    public CoordinateArea(tourWelby controller) {
    this.controller = controller;
                   setBorder(BorderFactory.createMatteBorder(3,3,3,3, Color.RED));
    addMouseListener(this);
    addMouseMotionListener(this);
    public Dimension getPreferredSize() {
    return preferredSize;
    //Methods required by the MouseInputListener interface.
    public void mouseClicked(MouseEvent e) {
    int x = e.getX();
    int y = e.getY();
    if (point == null) {
    point = new Point(x, y);
    } else {
    point.x = x;
    point.y = y;
    controller.updateClickPoint(point);
    repaint();
    public void mouseMoved(MouseEvent e) {
    controller.updateCursorLocation(e.getX(), e.getY());
    public void mouseExited(MouseEvent e) {
    controller.resetLabel();
    public void mouseReleased(MouseEvent e) { }
    public void mouseEntered(MouseEvent e) { }
    public void mousePressed(MouseEvent e) { }
    public void mouseDragged(MouseEvent e) { }
    How do I go about putting an image in the CoordinateArea and making it clickable? Do I need to use an ImageIcon?
    Thanks in advance.

    Hi again everyone. I've gone and rethought my code and started again from scratch. Here is what I have come up with..
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseEvent;
    import java.awt.event.*;
    public class tourWelby extends JFrame  implements MouseListener {
    public void mouseReleased(MouseEvent e) { }
    public void mouseEntered(MouseEvent e) { }
    public void mousePressed(MouseEvent e) { }
    public void mouseDragged(MouseEvent e) { }
    public void mouseExited(MouseEvent e) { }
    public void mouseClicked(MouseEvent e) { }
    public static void main (String args[]) {
         new tourWelby();
         public tourWelby() {
         super("Test");
        Container content = getContentPane();
         Point clickPoint = new Point();
         Point cursorPoint = new Point();
         JLabel label = new JLabel();
         label.setText("Test");
         label.setBackground(Color.WHITE);
         label.setForeground(Color.WHITE);
         JPanel theArea = new JPanel();
         theArea.setPreferredSize(new Dimension(800, 600));
         theArea.setBackground(Color.BLACK);
         theArea.add(label);
         theArea.addMouseListener(this);
         addMouseListener(this);
         content.add(theArea);
             pack();
             setVisible(true);
         setResizable(false);
    }Basiclly now, I think I need to add the mouseListener to the JPanel. However I'm not sure where I need to put the "public void updateCursorLocation" code and such that I had before (before, I used some samples of code from another program, and I wasn't entirely sure how it worked). If someone could help me (again!) with getting the MouseListener to change the label on the JPanel, to reflect where the cursor is (as in my previous code) I would again, be most appreciative. Thanks.

  • How I can put an image like a intro for a gallery?

    I see a books with an image like a intro for a gallery or for a widget, example, in an page there is a imagen, I tap in the image and an gallery opens, how I can make this in my book? How I can put an image and when I tap in the image a gallery opens or a widget opens?

    Hello Apple 4r1
    You could do this in Keynote I am sure.
    Create a simple two page Keynote document.
    The first slide will have the "INTRO Image" once press this slide can then automatically open up the second slide with a transition automatically.The second slide can hold all the images on the one page and just play over time each image for a set amount of time each before end of time.
    I hope that helps some what.
    Another great little piece of software that builds widgets that can be used within iBooks Author is Hype from the app store.
    Regards,
    Nigel

  • Is it possible to put an image on an image?

    Help!I'm beginning to work with AD.I work on HTML.Is it possible to put an image(logo in .png) on an another image(it's another backgound for first image and text).
    I have the backgrund yet and i want to put these two pictures on each other(overlap).Please help

    Hi
    You could place one image as a css background image, and the second image in the html, (positioned using css).
    PZ

  • I want to put an image from google as my background

    I would like to put an image that i searched on google as my background, but I forget how to do it. Please help me.

    Changing the wallpaper
    You can customize both the Lock screen and the Home screen by choosing an image or photo to use as wallpaper. Choose one of the supplied images, or a photo from your Camera Roll or another album on iPod touch.
    Change the wallpaper: Go to Settings > Brightness & Wallpaper.

  • How can i load or put an image into array of pixels?

    i am doing my undergraduate project , i am using java , mainly the project works in image manipulating or it is image relevant , few days ago i stucked in a little problem , my problem is that i want to put an image scanned from scanner into array or anything ( that makes me reach my goal which is go to specific locations in the image to gather the pixel colour on that location ) , for my project that's so critical to complete the job so , now am trying buffered image but i think it will be significant if i find another way to help , even it isn't in java i heared that matlab has such tools & libraries to help
    thanks .....
    looking forward to hearing from you guys
    Note : My project is java based .

    Check out the PixelGrabber class: http://java.sun.com/j2se/1.5.0/docs/api/java/awt/image/PixelGrabber.html
    It's pretty simple to get an array of Color objects - or you could just leave it as an int array - though it can be somewhat slow.
    //img - Your img
    int[] pix=new int[img.getWidth(null)*img.getHeight(null)];
    PixelGrabber grab=new PixelGrabber(img,0,0,img.getWidth(null),img.getHeight(null),pix,0,img.getWidth(null));
    grab.grabPixels();  //Blocks, you could use startGrabbing() for asynchronous stuff
    Color[] colors=new Color[pix.length];
    for(int in1=0;in1<colors.length;in1++){
    colors[in1]=new Color(pix[in1],true);  //Use false to ignore Alpha channel
    }//for
    //Colors now contains a Color object for every pixel in the image//Mind you, I haven't compiled this so there could be errors; but I've used essentially the same code many times with few difficulties.

  • I can't figure out the Keynote title option. I'm a newbie so forgive my ignorance. I want to put an image in the swing arm, but I can't figure it out.

    I even tried opening in Motion and inserting it there, but when I bring it back to fc it's not there. I also want to change the background to an image or at least solid white. When I put an image in the Dropzone it doesn't show up. Any help would be GREATLY appreciated!

    To change the title background to use a clip in the drop zone, do just as Jim said.
    Also, place the clip that want to appear in the "swing arm" right below the title in the timeline.

  • How to put an image in a data grid in Flex Builder 2

    Hi All,
    I need to populate a data grid with some text data received
    from a web service and, in a particular column of the datagrid, I
    have to put an image depending of a specific data returned me by
    the web service.
    It seems that there is the possibility to add an image in
    data grid column with the cellRenderer properties, but this
    property is available only for ActionScript 3.
    I'm developing an application in Flex Builder 2 that run
    ActionScript 2 and cellRenderer properties is not available. Is it
    right?
    If no, I will can use this cellRenderer properties in my
    application. Please, can you show me an example?
    If yes, there is a way to insert an image in datagridcolumn
    with ActionScript 2?
    Thank you very much
    Regards

    Flex Builder 2 uses Actionscript 3.
    You will need to write a renderer for for this column.
    There are a lot of examples of datagrids with images in them.
    here is one from the livedocs
    http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Live Docs_Book_Parts&file=cellrenderer_072_28.html

  • How to put an image in the popup help of a page item?

    I am using APEX 2.2. I want to put an image in the help text of a page input item.
    This is the help text:
    Some help text....
    <p><img src="&APP_IMAGES.auto_lov.jpg" /></p>This is rendered as:
    <p><img src="wwv_flow_file_mgr.get_file?p_security_group_id=0&p_flow_id=103&p_fname=auto_lov.jpg" /></p>As you can see, the application id is not returned.
    If I put exactly the same text in a html region, the image is correctly displayed:
    <p><img src="wwv_flow_file_mgr.get_file?p_security_group_id=844129086577364&p_flow_id=103&p_fname=auto_lov.jpg" />So, is it possible at all to put in image in the popup help text of a page item?

    I solved it by putting the jpg file in an images directory on the web server instead of in the database. Not really what I want, but it works.
    <p><img src="&IMAGE_PREFIX./apps/auto_lov.jpg" /></p>

  • How do I put an image in the background of a JDesktop?

    I have made a program that has a JDesktop. Just need to know the coding to put an image in the background of the JDesktop. Any suggestion?

    Add a JLabel that holds a picture to it. Make sure it's in the back layer.

Maybe you are looking for