Is it possible to import an image w/ transparent background from photoshop?

Hello,
I was wondering if it's possible to import an image which contains a transparent part of it into Motion, so I can later add in images and videos underneath that layer.
Thanks for your time.

hi again,
there are two ways to do this. In Photoshop you can elect to have a transparent background, if you erase your image to show the chequered background, Motion will do the same.
Or from within Motion you can apply a mask to an image to have it show whats underneath. Apply the mask using the mask tools in the toolbar to the image, then step over to the Inspector, hit the mask tab and select the type as subtract. That will punch a hole in your image revealing whatever is underneath it.
thanks
adam

Similar Messages

  • Image with transparent background in Photoshop and InDesign exports strangely to PDF...

    Hey, I really hope you can help!
    Ok, I've made a catalogue in InDesign and there is say, an orange border. I've imported an image to layer over the orange border and it has a clear background. In photoshop it has no background and is simply the black outline. However, when i export the Indesign to pdf and print it out, the logo is there with its black part, but it is inside a non-outlined box and the background is sort of transparent, it displays orange, but displays a weird hue of orange, and it stands out... ive got it with a few other pictures, not sure what im doing wrong when i save the image either in photoshop or when exporting or what! I'm self taught, (with the help of this forum and youtube) so ill really appreciate any help. I could post an image but on screen it looks ok, its only seen when i print the catalogue, it's really strange!!! it's not just my printer either - thought of that - ive tried it on three at three different locations and with different pdf files to see if it was just one image. Sadly it's a good 220 on one 108-page document!!
    If you wish to chat rather than post, you can skype me as charmywoo
    im just grateful of any help!!
    Kind regards,
    Charmaine
    Using: Indesign and photoshop 5.5 and operating on pc win 7 - i can also edit on a mac if necessary (if it resolves the issue)

    Thanks loads Bob, just as you posted that, i found that link on another thread and came back to post it and you beat me to the punch! So thanks loads!
    So if my printer is going to print this catalogue in litho print, rather than digital, do i still have to go back and flatten etc ?? I've separated the catalogue off to 108 individual pages with bleeds etc and it looks like I've got a fun friday night opening each one of them !!! rats!!
    thanks loads, kind regards,
    Charmaine

  • Is it possible to import and export Config Toll Configuration  from one sys

    Hi All,
    Is it possible to import and export Config Toll Configuration  from one system to Another system (QUS/PRD), for especific service.
    Kindly let me know the pro and corn of it and step by step process
    Thanks alot for your time.
    Thanks
    AB

    Yes...It is certainly possible but then you would need to bring OS level j2ee filestructure as well and there are lots of changes at OS level in *.properties file and then at configtool level changes related to hostname, system numbers and port numbers etc.
    This is not much difficult but not impossible also if you do it very carefully. Please note that SAP DOES NOT SUPPORT THIS METHOD.
    alternatively, you can use sapinst to export-import j2ee filesystem from source to target which inturn would require to do configtool export/import and then changes at configtool level.
    Do let us know your requirement so that we cud help you in case you are facing any issues.
    cheers !!!
    Ashish

  • Help! Trying to import image with transparent background

    I'm trying to import a picture that has a transparent backgound so when i layer it over video its just the picture itself not the canvas it was made on.
    In photo shop I made it on a transparent canvas.
    Whats my next step?

    Thank you.
    I have made my image with a transparent background in photoshop, now I need to bring it into final cut pro maintaining that transparent background, so I can layer it on video.
    How to I do this?

  • Framing image with transparent background png frame

    hi,
    i'm trying to find a way to frame images with transparent background png frames...
    what i'm doing now is
    1-drawing my image on a panel
    2-creating a 2nd image using the frame's filename, stretching this 'frame-image' to a size slighlty larger than that of my main image and drawing the 'frame-image'
    the problems with this method are:
    1-depending on the width of the frame, the frame sometimes hides parts of the image (thick frame), and sometimes there is a gap between the frame and the image (thin frame).
    2-if the image file containing the frame is larger than the frame (Ex: The image is 300x300, the frame is centered in this image and is 200x200; as opposed to the image is 200x200 and the frame takes up all the space), when i position the 'frame-image' near the top left corner of the image i want to frame, the frame appears at the wrong place (shifted down and to the right). This is due to the fact that i'm placing the top corner of the created 'frame-image' and not the frame, who is not in the top corner of my 'frame-image'.
    Is there a way to do what i'm trying to do???
    My ideas (which i don't know how to achieve are)
    1-To 'analyse' my transparent background png file and
         1-only keep the frame,
         2-calculate the frame's thickness
    OR
    2-Let java do the analyzing for me and tell it to frame my image with the frame in the png file
    please feel free to ask for more explanations if my description/question is confusing,
    thanks.

    Have you looked into the Border interface? If what you really want to do
    is put a custom border on a component, you may be able to do it this way.
    Anyway, here is some code that stacks and centres 2 images. It's not hard to do.
    import java.awt.*;
    import java.awt.image.*;
    import java.io.*;
    import java.net.*;
    import javax.imageio.*;
    import javax.swing.*;
    public class Example extends JComponent {
        private BufferedImage backgroundImage;
        private BufferedImage foregroundImage;
        public Example(BufferedImage backgroundImage, BufferedImage foregroundImage) {
            this.backgroundImage = backgroundImage;
            this.foregroundImage = foregroundImage;
        public Dimension getPreferredSize() {
            int w = backgroundImage.getWidth();
            int h = backgroundImage.getHeight();
            return new Dimension(w, h); //assuming this is bigger
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            int w = getWidth();
            int h = getHeight();
            //paint both, centred
            int x0 = (w-backgroundImage.getWidth())/2, y0 = (h-backgroundImage.getHeight())/2;
            g.drawImage(backgroundImage, x0, y0, null);
            int x1 = (w-foregroundImage.getWidth())/2, y1 = (h-foregroundImage.getHeight())/2;
            g.drawImage(foregroundImage, x1, y1, null);
        public static void main(String[] args) throws IOException {
            URL url1 = new URL("http://weblogs.java.net/jag/Image54-large.jpeg");
            URL url2 = new URL("http://weblogs.java.net/jag/DukeSaltimbanqueSmall.jpeg");
            JComponent comp = new Example(ImageIO.read(url1), ImageIO.read(url2));
            final JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(comp);
            f.pack();
            SwingUtilities.invokeLater(new Runnable(){
                public void run() {
                    f.setLocationRelativeTo(null);
                    f.setVisible(true);
    }

  • Is it possible to have video with a transparent background in dps?

    Is it possible to have video with a transparent background in dps?. Basically i've animated some elements in apple motion and want to incorporate them as an overlay (with the indesign page background showing through).

    You could do it with an image sequence but AFAIK there’s no support for alpha channels in video.

  • HT4641 Importing graphics with with transparent backgrounds such as .psd or .eps

    I want to use this for an art project for my sons class. Can I import .psd files with transparent backgrounds as per Word, to retain the clear cut shape/opacity of background. Or can I import .eps illustrator files with transparent backgrounds? Thanks.

    If you need transparency - as I stated - you need to convert the image to GIF. PSD is a layered graphic workspace file specifically for PhotoShop; EPS can be read by more applications, but is still basically a graphic print format. It might serve your customer needs, but wouldn't be the format I would recommend for general distribution. Typically you wouldn't embed EPS in another file, it would be the container for the print ready document (and the concern for transparency would be somewhat moot).
    However, I'm not familiar with the intimate details of your project or customer needs, so take that for what its worth.

  • Printing Images with Transparent Background

    Sorry if this question has already been asked, but I couldn't find anything similar to it in a search through the archives.
    I have a couple of images with transparent backgrounds in a document, much like the shells and the blue flowers in the "Classic Brochure" template in Pages 2.0.1. These images show up perfect on the screen, and when printed as .pdf files, but when I print to either an hp color laserjet 4600 or an hp laserjet 1320, the images show up with a clear box around them; the colors under the box (where it should be transparent) are faded and slightly blurred. This happens both with my document, and the unaltered "Classic Brochure" template. I've tried moving various objects backwards and forwards, but it doen't seem to have any effect. It even happens with one of the text boxes I have in the document.
    Another odd thing is that the printed "box" isn't the same size as the box that appears when you click on the object in the document. It's a bit bigger. I've seen other posts about problems with hp printers, but I'm not sure it's related. Any insight would be appreciated.
    MAF
    iMac Intel Core Duo   Mac OS X (10.4.7)  

    http://indesignsecrets.com/eliminating-ydb-yucky-discolored-box-syndrome.php
    Bob

  • Giving a black and white line work image a transparent background

    I am working in Photoshop CS4 (mac).  Currently, the image is comprised of black line on a white background.  How do I go about giving the image a transparent background?

    A day later, I have still not figured out how to accomplish what it is I am trying to do. 
    I have not yet tried what you have suggested in the last post and am about to go at it once again.  I should mention two things.  1. My  goal is to drop this image into InDesign (cs4) when completed. 2. The image has interior space betwen the line work/image itself that I would like to contain transparency.  Not sure if I am being clear here. The issue lies in when I actually drop the image into InDesign.  While the image appears to already have a transparent background, once it is dropped into InDesign, the image then assumes an opaque/white background.

  • How I could find that an image have transparent background

    Hi All,
    I have an image with transparent background placed in an ellipse item.
    Is there exist a way using which I can find out that placed image have a transparent background?
    Regards,
    Alam

    This may help you find your iTune account:
    Frequently Asked Questions About Apple ID
    Without knowing your old account info there is nothing you can do.

  • Image with transparent background als foreground of a button

    I'd like to build an app with buttons using the phone's accent Color as Background and an Image with transparent Background as foreground of the button. It should look like the tiles on the start screen of WP8.1.
    The following code doesn't work (no foreground appears)
    <Button x:Name="myButton" Background="{ThemeResource PhoneAccentBrush}">
     <Button.Foreground>
         <ImageBrush ImageSource="/Assets/myImage.png"/>                    
     <Button.Foreground>
    </Button>
    Are there any ideas?
    Thanks
    Martin

    Hi mfv_technet,
    The Foreground property is used to get or set a brush that describes the foreground color. So we can not bind the Foreground to a image,
    if I do not misunderstand you, in my mind if we want to set the button look like the tiles on the start screen of WP8.1, maybe you can try to refer to the following xaml:
    <Button x:Name="myButton" Foreground="Red" Background="{ThemeResource PhoneAccentBrush}" Margin="116,136,0,363" Width="195" Height="141">
    <Button.Content>
    <StackPanel Orientation="Vertical">
    <Image Source="/Assets/myImage.png" Width="80" Height="80"></Image>
    <TextBlock Text="Button"></TextBlock>
    </StackPanel>
    </Button.Content>
    </Button>
    The result:
    If I have misunderstood you, please feel free to let me know.
    Best Regards,
    Amy Peng
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Importing a graphic with transparent background

    I have a graphic that has a transparent background in Photoshop. When I import it into Indesign, it has a white background. Is there a way to keep the transparent background when importing?

    A quick test shows it works perfectly for me. Created a regular Photoshop document, transparent background, some text on an otherwise empty layer. Saved as PSD. Placed into InDesign CS4. Transparency all around.
    Did you, by any chance, not use the proper import ("Place") function but used copy-and-paste to get it into InDesign?

  • Is it possible to import illustrator images?

    I ask because I have sort of.
    I imported an image, but the transparent areas show as black in Aperture. I guess its sort of seeing it as PDF?

    Hi Air7, it's possible with Aperture 3.2.2, but only in Sow Leopard. It does not work in Lion (one of the reasons why I don't upgrade). But it's only for having all your graphic files in one place. If you wan't to work with the ai file, you must first export it on your desktop and open it from there.

  • Lightroom 5 - Importing Your Images | Getting Started with Adobe Photoshop Lightroom 5 | Adobe TV

    Discover how to quickly download and import your images into Lightroom. Then, decide which method is the most efficient for your workflow.
    http://adobe.ly/11iaqIz

    I don't have a card slot on my Macbook pro  it's about 4-5 years old. I have a Canon EOS 500. When i want to import i use a cable that plugs from the camera into a USB port downloading in either iPhoto o Photoshop. Can I do this also with lightroom or do I need to get a card adapter?
    Thanks, Patrick

  • Importing Images into Flash CS4 from Photoshop 7

    Hello,
    I've created an image in flash, basically the image is a ring which has then been divided into 3 equal segments, each segment exists on its own seperate layer with and has a transparent background. I want to make ach of these segments into a button on flash, so I've imported them across and converted them into buttons, however the problem I have is that when it gets imported into flash, it creates a box around each segment which is what flash sees as the full button, this means when you roll over a blank piece of the segment flash recognises it as rolling over the button. Is this just an inherent problem from importing from photoshop into flash or am I doing something wrong?
    Thanks
    Sean

    Check the settings:
    Edit/Preferences.../PSD File importer...
    And then load the *.psd file without the background.
    And certainly there is no change in flash...

Maybe you are looking for

  • How to make button background color chnage

    Hi In my custom application having 12 buttons, out of  12 buttons one button should look totally differance than other buttons like button background color to red color. we found two solution even though  those are not adopted to my solution 1. CSS t

  • Q10 - how to filter emails?

    After a recent switch to the new Q10 it appears that all email filters that i had set up for my blackberry service have been disabled. Clearly, the ability to filter emails (newsletter, etc) from being forwarded to the bby is a key feature of the bby

  • Powershell - Checking existance of a sql stored procedure exists

    Hi I have Googled for this answer but not able to clearly find an answer. I'm not sure how to go about this but....I need to write a Powershell script to check for the existance of a specific Stored Procedure. This is to save me time in my current jo

  • How come gifs don't work when you save it in photo album

    I've been trying to look at the gifs I saved in photo album but it doesn't work, how do I get it to work without having to open it in mail

  • Change Multiple Choice Options from A, B, C to 1, 2, 3?

    I am using Captivate 8.1. I need to create a multiple-choice quiz where the answer options are 1, 2, and 3 instead of A, B, and C. I can't find a setting anywhere that lets me change the "numbering" (for lack of a better term) format of the multiple-