Problem with Transparent Background

Something happened and now when I go to edit a photo, something weird is happening.
If you notice the border of the overlapped... thats how the work area in CS4 should look but its not. I dont know whats wrong.
Running Photoshop CS4 on 32 Vista Home Premium. ATI 4800 series graphic card...

I think you confused me. I thought you were having an issue with the photoshop border.
Now it sounds like you are having an issue with the document it self.
Should I assume you are talking about a new blank document?
If so, when you create a new document the pop up window will let you specify a background color such as white or a transparent background.
After the document has been created and you have a white background. Select the layer in the layers palette and double click on it and click OK. This will unlock that layer. Now you can use any of the selection methods or go to the menu and select>select all. You should see a dotted line around the outside edge of the document, this tells you the entire document is selected. Just hit the delete key and the white background will be replaced with the transparent background.

Similar Messages

  • Creating animations with transparent backgrounds?

    I'm running into some problems when using After Effects to create animations with transparent backgrounds for Keynote...
    I use animated gifs and short quicktime movies with uniform backgrounds as source files, use color keying to take out the backgrounds, preview them to see if they look OK, render the results as RGB+alpha, and... they don't show up as transparent in Keynote. They work in Powerpoint, however. I've tried outputting as .mov, as .gif, as premultiplied vs straight alpha... no joy. Can someone explain (or point me to an explanation) of how Keynote differs from other programs in its handling of transparency? What am I missing?

    Using a TYPE_INT_ARGB BufferedImage worked beautifully. I had played around with Image for hours, but it never occurred to me that BufferedImage would be needed. :)
    many, many thanks,
    Steven

  • How do I transfer a .psd file to illustrator that can then be placed in Muse as a .svg with transparent background?

    I just wrote all this up in another thread.  I did not realize at the time that the last post was in 2014, so I'm giving it a go here.
    I am currently trying to create an .svg using Photoshop .psd file (with layers in tact).  I'm new to these products so it may be obvious to others that the above intention was to eventually place the .svg in some sort of website creation software such as Muse.  Which is precisely what I am attempting. However, I am getting a white background once I place or copy and paste into Muse.  My starting .psd has a transparent background without any hidden layers causing this problem.  To test this I placed the .psd file into Muse and it still has a transparent background.  However when opening or placing this file into illustrator, it picks up a white background. If I do exactly as described above, I still get the same result.  So far I have tried:
    1) Simple copy and paste from Photoshop .svg to illustrator to Muse.  Result - white background.
    2) Placing the .psd in illustrator, then placing the .svg file in muse.  Result - white background.
    4) I have also tried the every combination of 1 and 2. - Result - white background.
    3) I have now created a path in Photoshop from the text layer to yet again attempt the above methods.  Result - white background.
    I'm including an image of the object I am trying to place with transparent background, but I have both a flattened rasterized version, a version complete with layers and a third (.svg) with the corresponding objects.  I am completely new to Illustrator as of today so any help would be greatly appreciated.  Thanks.
    Link to .psd file "Welcome text"

    I was having some difficulties getting the correct dimensions of one of my objects, I eventually solved this problem without using svg.  It was pretty simple when I stopped trying to over complicate things.  I just linked the object to a near by object in photoshop, merged and placed it all as one.  It looks great now.  Thanks for your reply.  You are correct, SVG was not the answer.

  • 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

  • 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);
    }

  • QuickTime with Transparent Background

    > This message is in MIME format. Since your mail reader
    does not understand
    this format, some or all of this message may not be legible.
    --B_3234432307_151173
    Content-type: text/plain;
    charset="ISO-8859-1"
    Content-transfer-encoding: 8bit
    Hi
    I am having problems in publishing a file done in Flash- a
    logo spinning,
    and I want the background to be transparent. Under Publish
    Settings, I have
    the following:
    ALPHA: Alpha-transparent
    Layer: Auto
    And checked the Flatten (Make self-contained).
    However when I import the file into another application-
    Apple�s Motion, I
    get a white background- which is what I have originally. Am I
    doing
    something wrong?
    I even check the track in QT Pro and set the Movie Properties
    but it is not
    becoming transparent. I appreciate any tips on it.
    Thank you.
    Kelvin
    --B_3234432307_151173
    Content-type: text/html;
    charset="ISO-8859-1"
    Content-transfer-encoding: quoted-printable
    <HTML>
    <HEAD>
    <TITLE>QuickTime with Transparent
    Background</TITLE>
    </HEAD>
    <BODY>
    <FONT FACE=3D"Arial"><SPAN
    STYLE=3D'font-size:12.0px'>Hi<BR>
    <BR>
    I am having problems in publishing a file done in Flash- a
    logo spinning, a=
    nd I want the background to be transparent. Under Publish
    Settings, I have t=
    he following:<BR>
    <BR>
    ALPHA: Alpha-transparent<BR>
    Layer: Auto<BR>
    <BR>
    And checked the Flatten (Make self-contained).<BR>
    <BR>
    However when I import the file into another application-
    Apple&#8217;s Moti=
    on, I get a white background- which is what I have
    originally. Am I doing so=
    mething wrong? <BR>
    <BR>
    I even check the track in QT Pro and set the Movie Properties
    but it is not=
    becoming transparent. I appreciate any tips on it.
    <BR>
    <BR>
    Thank you.<BR>
    <BR>
    Kelvin </SPAN></FONT>
    </BODY>
    </HTML>
    --B_3234432307_151173--

    I've never gotten it to work either. I usually set the
    background to something not used in the animation, like bright
    green, and then composite the video. I've never used Motion, so I
    don't know if this is possible.

  • Movies with transparent backgrounds don't display in KN4

    In KN4, movies with transparent backgrounds (such as the countdown timers sold by KeynoteUser.com) no longer display when the show is presented. They clearly function when creating the slide, but not during presentation. I'm running the show on a MacBook Core Duo with 10.4.10 and GMA 950 graphics chips with 64 MB VRAM. This might be an issue with the GMA graphics chip although the movies worked perfectly with KN3 and earlier. Has anyone else observed this problem?

    The Keynote 4.0.1 update has fixed this problem. Thanks Apple!

  • Using animated gifs with transparent background.

    Hi guys,
    Keynotes 6.2.
    I have been onto apple support with this problem.
    I add a transparent animated gif to my project.
    It show as a movie correctly in the presentation but when exported as quicktime or HTML the movies fail.
    We eventually found out that quicktime does not support animated gifs. ( support.apple.com/kb/ht3775 )
    So I exported the animation onto a folder with all the frames separately and brought them into final cut pro.
    I then followed these tutorials on how to export with transparent background. ( http://provideocoalition.com/mspencer/video/fcp-x-and-alpha-channels and http://www.larryjordan.biz/fcp-export-transparency ).
    I now have a quicktime movie that if I bring back into Final Cut Pro it has a transparent background.
    However when I bring into keynotes it still has a black background. (presumably keynotes does not recognise the  Apple Prores 444).
    Any ideas how I can achieve what I need. ?
    I am using a program called crazytalk animator and can output with transparent background. Animated Gif or a series of image stills BMP, JPEG, TGA or PNG.
    Cheers
    SteveW

    This has been an ongoing issue for me since I switched from Powerpoint to Keynote. Most of the animated gifs with transparent backgrounds that I used with Powerpoint are no longer transparent in Keynote. You may want to search for those earlier threads on this topic...
    To summarize: I've had to open up my animated gifs in After Effects and use the Color Key effect to restore transparency, with mixed success.
    Good luck!

  • Illustrator cc image looks pixelated after saving with transparent background

    as the title states; image looks pixelated after saving with transparent background...
    i created a logo in adobe illustrator cc and i wanted to saved it for web in order to be able to copy and paste the logo where ever I wanted but the image looks extremely pixelated after saving as an png, and for web. Is there a solution for this?
    Any help is appreciated.
    Thank you!!
    Jon

    What DPI did you save as:
    You should always save as 300dpi, then you can always reduce  the size as needed.
    Another thing, don't copy and paste, that always causes that Problem.
    In Acrobat you should open Tools Menu click on Content Editing  the Add Image.
    Then click on image and choose Properties and place where you want and size as you desire.

  • How to create typography jpg with transparent background?

    I am creating jpg artwork of typography to place on WIX.com and need to create the jpg with transparent background behind the font. Any suggestions that work?

    You're welcome.. If this solves the problem, be sure to mark the solving answer correct. This makes it easier for other users to find solutions for similar issues.
    Benjamin

  • Fancy zoom pics with transparent background

    hello,
    i have successfully setup fancy zoom in my iweb site (based on the various tutorials found on the web), but there is one problem i'm having. the pics i'm using are .png with transparent background and the background renders properly in safari. however in firefox the background always shows as white. i have double checked my pics and i believe they are fine and again in safari the background renders transparent, but i can't figure out what's causing the background to show white in firefox? i'm guessing it's something in the css maybe but i'm not sure. any ideas at all? i have noticed some people posting in the forum regarding fancy zoom so hopefully someone know... note: the zooming part is working fine in either browser...
    thanks,
    rick

    I love you!!!
    Well, you know what I mean.
    It worked, thank you, thank you, thank you.
    I figured it was a simple solution, and it was. Thanks Varkgirl.

  • Animated gif with transparent background

    When I import in Keynote an animated gif with transparent background. The background becomes white. I did the following tests:
    If I extract a single image from the animated gif and import it in keynote the background is actually transparent but it becomes white when I import the whole gif.
    I also checked with other applications (NeoOffice) and the animated gif does come out with a transparent background.
    Do I do something wrong in Keynote ?

    This has been an ongoing issue for me since I switched from Powerpoint to Keynote. Most of the animated gifs with transparent backgrounds that I used with Powerpoint are no longer transparent in Keynote. You may want to search for those earlier threads on this topic...
    To summarize: I've had to open up my animated gifs in After Effects and use the Color Key effect to restore transparency, with mixed success.
    Good luck!

  • Want to create an oval vignette in photoshop elements 10 with transparent background for printing w

    I am fairly new to PSE and I want to create an oval vignette in Photoshop Elements 10 with transparent background for printing on white paper using MS Publisher. Using the white background on inverse selection makes a slight line impression and either it should have a defined "frame" or nothing.
    Appreciate any guidance.

    Try with the Elliptical marquee tool:
    On the tool's option bar set feather 25-40 px (experiment)
    Drag out the Ellipse to embrace the object
    Go to Layer>new>layer via copy, or CTRL+J
    Your selection should fade out as a vignette and be surrounded by transparency
    Save this layer via File>save for web, select PNG-24, and tick "Transparency"

  • I place a psd file with transparent background on another layer in my InDesign document. The layer b

    I placed a psd file with transparent background on another layer in my InDesign document. The layer below has a color (RGB). When the psd file is placed it changes the color on the layer below. I've tried other psd files thinking something is wrong with my file, but get the same result. I have tried for days to figure this out. Can anyone help me?

    Wow, thank you! That was fast. I googled that question to death and even bought (another) book on CS5 and never saw that answer. Thank you so much. You made a very good ending to my day! I'd buy you a beer if I could!!

  • Images with transparent backgrounds in MDM

    I've got several images in MDM with transparent backgrounds, yet when i look at these in image manager (or thumbnails in data manager) they look terrible. The transparency is black for example, among other issues. These images are all okay in photoshop, they have been saved as .png and imported through the data manager.
    Has this import ruined these image files on the way in? When my search engines etc extract the images, what of the transparencies?

    Hi Adam,
    MDM makes use of Internet Explorer quite frequently. I can imagine that this engine is also used to display images in MDM. However, Internet Explorer in version 6 does not support transparency in PNG images. That is why the black background occurs.
    Since your images after upload are only saved in a binary object in the database, you should not encounter any data loss when using the same images. If you need to create variants, I would consider using Photoshop for the creation of those.
    I hope that helps you further.
    Best regards
    Christian

Maybe you are looking for

  • Invalid,serial,number,error,when,attempting,installation,of,photoshop,CS,how,can,i,fix,ple ase?

    I cannot install creative suite cs2 the message invalid,serial,number,error appears; does anyone know how I can fix,please? The download is from the Adobe site using the serial number they provide prior to downloading

  • Select query to take time

    Hi to all. in table am using xmltype column. table Test designed as empid int type int doc xmltype Test table contains 2 laks records. select query is Select empid,type, doc from Test Where empid=2; while this qry execute more time. without doc selec

  • How can I submit evidence that I am a student?

    I tried to submit evidence that I am a student but apparently exists an error in the system. How can I continue with this process. I already bought my product but I cannot download it yet because I assume that I have not sent evidence yet.

  • Audio fade-in when headset connected

    When I have my headset connected and play a song, it fades in whenever I play a song. That is very annoying, how do I turn that off? Also, why did RIM put that annoying feature there in the first place? I have the curve 8530 with OS version 5.

  • Updating USERSCRIPT file

    I am trying to add new function in USERSCRIPT file. I modified the file and saved it. But new method is still not visible while creating an action link. Any ideas what I might be missing?