Can't load PNG images in CS3

I'm unable to load PNG images using Photoshop CS3. Whenever I attempt to do so, I get a message saying, "Could not complete your request because it is not the right kind of document."
Help on this matter would be much appreciated as I am fairly new to using Photoshop.

I am thinking it is a png file from fireworks.

Similar Messages

  • Why You Can't Load Some Images On Your 5th Generation ipod

    Why You Can't Load some images on your 5th Gen ipod.
    - OK here is the scoop: I could not load some images on my 5th gen ipod and yet other images would load no problemo. Images were JPEG, jpg, PSD (all approved image types for the 5th gen ipod)
    - After doing several tests like restoring the software on the ipod, reinstalling itunes I still could not find the problem, then I noticed as soon as I would open an image in Photoshop CS2/CS3 that was otherwise loading on the ipod no problemo, when I would save that same image in Photoshop the image would not load in my ipod.
    - So after playing with several settings in Photoshop I found the problem:
    -In Photoshop go to File handling:
    -Image Previews:
    - And click on:Never Save
    You do not want to save a photo with a "Image Preview" when saving any file type that you want to load on your 5th gen ipod. it would seem the ipod will not accept any images with a "Image Preview" embedded into the file, JPEG, PSD, jpg etc.
    I hope this will help some of you because I just waisted a whole day to find this out the hard way.
    Cheers,
    Mac Fans
    BTW I use a Mac Pro/Intel OSX Tiger 10.4.9

    Also I just found out when you are saving an image in Photoshop uncheck the " Embed Color Profile" box.
    So do not embed your images with a "Preview" and DO NOT embed a "Color Profile" when saving images in Photoshop or the images MAY not load on your ipod.
    Have Fun
    Message was edited by: MacPro77

  • Is the any place can down load a copy of CS3 Master collection disk 1

    Is the any place can down load a copy of CS3 Master Collection disk 1.
    I bought Adobe Creative Suite 3 Master Collection.
    it has never been registered.
    It ALL INSTALLS OK, WITH THE EXCEPTION OF ILLUSTRATOR.
    I was told to go to your fttp site I did so and it is funny but you have the creative suite there for CS, CS2, CS4, CS5 and CS5.5 but not CS3.
    There is Illustrator CS3 there but not sure if that will work with the Master Suite and the Master Suite serial number.

    Please go through the mentioned link and download the CS3 Master Collection: http://prodesigntools.com/download-adobe-cs4-and-cs3-free-trials-here.html

  • Can someone adjust png file in cs3 in css

    can someone adjust png file in cs3 in css

    8 Bf is a bit much for waves. Better wait for it to die down to 5 Bf max.

  • Loading PNG image file from Applet?

    Hi All,
    My applet running on IE6 and it will often loads 100 PNG image files from a webserver.
    Size of PNG file is about 60Kb so 100*60=6000 Kb ~ 6M.
    In theory, the applet will took 6M of memory to store all 100 files. In practical, it tooks about
    6M* 25 = 150M of memory, that make my applet run in out of memory sometimes.
    I know the reason, may be the brower/applet convert the PNG file format to BMP file format before showing on the screen.
    So the main point here is the applet should not loads all 100 files into the memory,
    it should loads only 10 files at the same time, another 90 files should be cached in memory as PNG file format, not BMP image file format to save the memory usage.
    Is this solution possible in applet field?
    If it is possible how can I implement it?
    And please show me better solution if anys.
    Many Thanks.

    I know the reason, may be the brower/applet convert the PNG file format to
    BMP file format before showing on the screen.This sounds VERY unlikely! Why should the browser do that? And the applet does what you have coded I hope!
    Your problem is probably somewhere else. And it has nothing to do with applets I presume. Use a heap analyzer tool to find out what hogs the memory. A thorough code review can't hurt either. If you still thinks it is the images though, then just don't load them all at once then.

  • How can i load a image into a midlet?

    Hi, i placed the png file together wif the midlet in the src directory.
    Image img = Image.createImage("title.png");
    I tried the above code but when i try to load the image in got this error
    Failed loading image.
    anione can help?

    just place your file in /res/ directory not in /src/

  • Load PNG Images and draw on them.

    I have to load a png image in a JPanel and then draw on this image. How is the way to do it? I've tried several ways but I don't achieve nothing.

    Hi,
    Re:
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>
    ...I guess the conclusion is even though you can use PL/SQL to get the
    PNG images into the database - like we've done here. There is no real
    point, because one cannot retieve them with standard Java Intermedia
    calls.
    <HR></BLOCKQUOTE>
    On the contrary - I just grabbed a PNG image from our 9i test system, uploaded it using the photo album servlet demo to my 8.1.7 database (which doesn't 'do' PNG) and retrieved it using the same servlet. My Netscape came with the QuickTime Plugin, so the PNG image got displayed as would any other image.
    OK, I admit I had to admit modify the demo a little, but it is just a sample after all, not a full-blown, production web application. For upload, all I had to do was trap the exception raised when it tries to create the thumb-nail. There were 2 changes for retrieval. For the thumb-nail page, if there isn't a thumb-nail, ie getContentLength() == 0, then it displays the text "[view image]" instead of the thumb0nail image. For the full-size page, it only generates the height and width tags if getHeight() and getWidth() both return non-0 values. I didn't have to modify the method that actually delivers the data at all. It just uses the BLOB, MIME type and content length (which you sent when you loaded the image, right?!). The height and width tags aren't required. They just speed things up if present, because the browser knows ahead of time how much space to reserve, so can keep rendering the page, rather than wait for the image to arrive.
    Re:
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>
    Can't begin to explain how sad this makes me :(
    <HR></BLOCKQUOTE>
    Cheer up! :-)
    Simon
    null

  • Load png image and save it

    I am loading a png file and saving it again with following code. The newly created image file is smaller size and poorer quality. How can I retain size and quality of the image?
    ===========================================
    File input = new File(imgFilePath+"img1.png");
    BufferedImage im = ImageIO.read(input);
    Graphics2D g = im.createGraphics();
    File output = new File(imgFilePath+"out2.png");
    ImageIO.write(im,"png",output);
    ===========================================

    Would a moderator please change this topic back to not solved.
    @Noel: I tried exactly what you said, copying the image to itself so the source and target would be the same size.  It does not work.  I do understand that you respond to many posts and can't actually try to reproduce every issue.   However, in this case, if you did try it on the posted image you would see that the problem is as I described it.
    @Acidiclnk: Thank you for reproducing the problem. Unfortunately, I checked your response as the correct answer, but now realize that it does not solve the problem. What you suggest shifts the position of the image from its as loaded position.  Then, as you said, copied images do register with the original.  The problem is, the shifted image no longer lines up with the other maps of my texture.
    It took me awhile to find the commands you described, as they are a bit different in my CS4 ("Align Layers to Selection > Vertical Centers", etc).  When I tried them, the pasted image was correctly registered with the original.  Unfortunately, as I mentioned, the image is no longer aligned with the other maps of the texture.
    For this particular case, since there were large, uniform areas in the image, I temporarily added fiducial marks to the problem image and one of the other maps.  Then, after copy/paste, I moved the shifted copy until it's fiducial was aligned with the other map, then removed the fiducals.  (I could not use MTSTUNER's Duplicate Layer suggestion, since duplicating it to a new image created a new image with the same problem as the original).
    To summarize: PhotoShop loads this image in one position, but aligning the centers or copy/paste moves it to another position.  I would be happy to know why this is so.  I did verfy that it's unique to PhotoShop as copy/paste works without the shift in another graphic editor.  Any insights would be welcome.

  • How can I add .PNG images to templates without getting a white background?

    I'm having problems with a image field when I add a .png image which doesnt have a background it is showing up with a white background. Is it possible to use images in templates so you can overlay them on something else?

    Hi, You can do this but only with a PNG with a palette of 256 colors (maybe GIF as well) so doesn't get a lot of use, good enough for image buttons and the like, but might be ok for your image as it does not have that many colors. Otherwise radzmar's suggestion would be the better approach.
    This is the link I was tring to find (in your previous thread) that tells how to do it using GIMP (a free image editor), http://smartforms.business.gov.au/DeveloperResources/Pages/HintsandTips.aspx ,  but the one I have uploaded here comes from photoshop (in photoshop it is called an indexed png).
    Regards
    Bruce
    p.s. I'm always on the lookout for a new beer to try if this one you would recommend? 3% and all.

  • IWeb 09, Pages 09, and Keynote 09 can't load iPhoto images in media browser

    Ever since yesterday, my iWeb 09, Pages 09, and Keynote 09 have been experiencing problems loading iPhoto 09 images in the media browser. I have no problems loading my audio files, movie files, and widgets, but when it comes to iPhoto picture files, the system just hangs. Luckily, it doesn't crash; it just says "Loading iPhoto images" forever.
    I'm guessing that the problem is with iPhoto 09, because the media browser has no problems loading my Aperture picture files.
    Does anyone have any ideas how I can get iWeb, Pages, and Keynote to load my iPhoto pics in the media browser?
    Thanks!

    1. Quit iPhoto.
    2. Go to your Pictures Folder (or where ever you have your Library) and find the iPhoto Library there (Your Donor Library).
    3. Right Click on it, and from the resulting menu select ‘Show Package Contents’. A Finder window will open and the Library will be exposed.
    4. Find the following files
    AlbumData.xml
    AlbumData2.xml
    and move them to the desktop.
    5. Close up the Library and restart iPhoto. This will force iPhoto to rebuild those files which are key to sharing.
    Then restart the other apps and see does that help.
    By the way: where is your Library? On the Start Up Disk? On an external?
    Regards
    TD

  • Issues loading png images in flex 4.

    For some reason in my application when I use specific PNG images they will not load.  They do not have a high dpi, nor are they very large.  For example : will not load in an mx:Image component, but will.  Does anyone have any idea what the difference between the two would be?
    the mxml I'm using is something like <mx:Image source ="IMG/imagename.png"/> where IMG is a folder in the main directory.  Both images are only stored in those locations yet one will load and the other will not.    
    This is incredibly perplexing to me, and I'd appreciate any assistance.

    I would first try, in your IMG folder, renaming badfile.png to xbadfile.png and then duplicating goodfile.png to badfile.png, without changing any of your code.  Then run it and verify that you do see the png.  I.e. make sure that the problem really is with the png and not with your code somehow.

  • How  can I  load an  image  in a scene?

    I want to load an image in a scene and I have tried it using the
    steve morris example( HAVI example ) , I am using a STB and when I send my xlet I don�t see this imagen at the tv.
    Source code is available from
    http://www.interactivetvweb.org/resources/code/havi/HaviXlet.zip
    Somebody knows another way to do it ???

    I assume you mean a JLabel as an AWT Label cannot display an Image.
    // POINT THE IMAGE BACK TO THE SERVER FROM WHICH THE APPLET WAS DOWNLOADED
    // BY USING GETCODEBASE(). OMIT THAT AND YOU WILL SEE THAT YOU GET A SECURITY
    // EXCEPTION AS THE APPLET WILL TRY TO LOCTE THE IMAGE ON THE LOCAL MACHINE AND
    // APPLETS BY DEFAULT CANNOT ACCESS RESOURCES ON THE CLIENT
    // assumes .gif file exists in same directory as HTML running the Applet
    Image image = getImage(getCodeBase(), "ImageName.gif");
    ImageIcon icon = new ImageIcon(image);
    JLabel - new JLabel(icon);
    // check out the getScaledInstance() method of Image class to resize your image

  • Why Mail can´t load html images when it should?

    Hi, This is odd: Mail 6.2 seems unable to load html images on e-mail received even if the preference is set properly. Any clue?

    not at all. It happens since I´ve upgraded to Mountain Lion a few days back

  • Loading an image into CS3 from Lightroom

    Sorry to repeat this request but:
    I am running Lightroom on a laptop with Windows Vista. If I make changes to an image in the develop module of Lightroom, and then right click on the image, go to Edit in CS3, and Edit a Copy with Lightroom adjustments, CS3 boots up but no image appears within CS3.
    I did have both CS2 and CS3 on my hard drive. I removed CS2 with no benefit. I removed Lightroom, and re-installed a purchased version but still the same problem. Edit - Preferences - External Editing shows Edit in Photoshop CS3 and Additional External Editor Photoshop.exe. Trying this latter option to open the image in CS3 also fails.
    Any ideas??
    Thanks

    Uninstall and reinstall PS CC 2014.  This fixes things for most people with this problem and there are many.

  • Can't load large image (png)

    I have a sandbox web page with large image (png file 26000x13000, 14MB packed/330MB unpacked). I can open it in IE but firefox display page without image. I have 1,2GB of free RAM, how can I adjust settings to make allow firefox display the image? Currently there is no difference if I use unpacked BMP, it doesn't work as well. I would prefer to stay with PNG since it's only 14MB on disk.

    Is there an error message?
    We've been able to load more than 100MB files.
    Try setting SQLNET.EXPIRE_TIMEOUT=0 in the sqlnet.ora file
    Fenella

Maybe you are looking for