Save files as png in Ph CS4

Some files don't give an option to save them as png. Is it possible to get to it somehow.
Thank you for your help.

What are those files’ Color Modes?
Anyway you could always try using File – Save for Web & Devices.

Similar Messages

  • Photoshop is no longer letting me save files as .pngs...Anyone else have that problem?

    Photoshop is no longer letting me save files as .pngs...Anyone else have that problem?

    Is your file RGB, Indexed or Grayscale, 8 or 16 bit/channel? It won't save to png otherwise.
    Gene

  • Save files as PNG to original folder, using droplets in Photoshop CC 2014

    I want to save RAW images from Lightroom as PNG and found a method online that involves using a droplet in PS. I created this droplet with an action in PS that involves saving an image file as a PNG, to a folder which I call 'PNG files'. To get a PNG file the procedure goes like this:
    From Lightroom the image is saved as a TIFF in a new folder within it's original folder
    After saving the image, the droplet is used automatically from Lightroom;
    The TIFF image is opened in Photoshop, and saved as a PNG in the 'PNG files' folder
    My issues with this is that (1) it creates an unneeded TIFF file and (2) The final PNG image is not saved in the folder of the original RAW file. Ideally I'd like to convert the TIFF to PNG in Photoshop and overwrite the TIFF file with the final PNG file. However with the way Photoshop "Save As" and "Save for Web" functions are set up, I must choose a specific folder for the PNG file, which means that all the resulting images end up in one folder, instead of in whichever folder the TIFF file was saved to. With droplets there is an option to "Save and Close" which would overwrite the original TIFF file with the final file. However this bypasses the action where I saved the image as a PNG, so I'd essentially be overwriting one TIFF file with another TIFF file.
    The situation now is that for the sake of organization I'd have to (1) delete the TIFF files after each export and (2) Move the final PNG files to the folders I want them to be in. This of course would be time consuming.
    If you could help me with this problem I'd be extremely grateful! With the medium I'm using PNG files display much better than JPG. Now I just want to achieve a smooth workflow.

    When you record the action to Save As PNG (not save for web) it doesnt matter where the location is.
    You will override this in the droplet.
    Action- states a location of 2014/06/04 (irrelevant)
    Droplet- Overrides the location.
    The Save and close portion of the droplet does just that. A location is never asked for.
    The preference in Photoshop- ensures the png is saved alongside the tiff.

  • Photoshop CS3 won't save files as ".png"?

    I have the same problem as the creator of this thread...
    http://au.answers.yahoo.com/question/index?qid=20080417004746AAjYbui
    ...except, his solution did not work for me. In Adobe Photoshop CS3 for Mac, I cannot "Save For Web". The button is there, but it is disabled for some reason...
    I have the image in RGB Mode as everyone says it should, and have kept it in 8bt resolution. I can save everything as ".psd", ".jpg", and many other files - but not ".png". It simply does not appear in the drop-down menu when I select "File - Save As".
    Also, people have mentioned an "Alpha layer" or "Alpha channel", but I do not know what those are.
    Please advise on how I can fix this without having to reinstall, if possible.
    Thanks!

    Check the bit depth and color mode of the document.
    And check that the plugins are installed.

  • Screen grab (option,shift,4) now saves file as png for default

    Any way to save it off as pdf as a default? I'm not talking about the grab utility... Thanks!

    If you are confident enough to use a Terminal command instead of third party software [which only invokes the Terminal commnd anyway]:
    To save once again in PDF format instead of PNG format: 

1. Open Terminal 
2. Type the following: 

defaults write com.apple.screencapture type pdf
    3. Press Enter 

To Remove this behavior and change the format back to png: 

1. Open Terminal 
2. Type the following: 

defaults write com.apple.screencapture type png
    3. Press Enter


  • Saving files as jpg from InDesign CS4 js

    Hi, Kasyan.
    You originally gavy me this script to re-save files as pngs, and now I need it to re-save them as jpgs instead. I made some changes, but I must have missed something, because it's not working. Could you take a look at it:
    #target indesign
    var myDoc = app.activeDocument;
    var myFolder = Folder.selectDialog ("Select the output folder for JPG images");
    SetDisplayDialogs("NO");
    OpenFiles();
    SetDisplayDialogs("ALL");
    UpdateAllOutdatedLinks();
    alert("Done");
    function OpenFiles(){
         for (var i = myDoc.links.length-1; i >= 0; i--) { // process links collection backwards since it's changing!
              var myLink = myDoc.links[i];
              if (myLink.linkType != "Joint Photographic Experts Group (JPEG)"){
                   var myImage = myLink.parent;
                   var myImagePath = myLink.filePath;
                   var myImageFile = new File(myImagePath);
                   var myNewPath =  myFolder.absoluteURI + "/" + GetFileNameOnly(myImageFile.name) + ".jpg";
                   CreateBridgeTalkMessage(myImagePath, myNewPath);
                   Relink(myLink, myNewPath);
    function CreateBridgeTalkMessage(myImagePath, myNewPath) {
         var bt = new BridgeTalk();
         bt.target = "photoshop";
         var myScript = ResaveInPS.toString() + "\r";
         myScript += "ResaveInPS(\"" + myImagePath + "\", \"" + myNewPath + "\");";
         bt.body = myScript;
         bt.onResult = function(resObj) {}
         bt.send(100);
    function ResaveInPS(myImagePath, myNewPath) {
         try {
               var myPsDoc = app.open(new File(myImagePath));
                 if (myPsDoc.mode == DocumentMode.CMYK) {
                        myPsDoc.changeMode(ChangeMode.RGB);
               var docName = myPsDoc.name;
              var myJPGSaveOptions = new JPGSaveOptions();
              myJPGSaveOptions.interlaced = false; // or true
              myPsDoc.saveAs(new File(myNewPath), myJPGSaveOptions, true);
              myPsDoc.close(SaveOptions.DONOTSAVECHANGES);     
         catch (err) {
              try {
                   app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
              catch (err) {}
    function Relink(myLink, myNewPath) {
         var newFile = new File (myNewPath);
         if (newFile.exists) {
              var originalLinkFile = new File(myLink.filePath);
              myLink.relink(newFile);
              try { // for versions prior to 6.0.4
                   var myLink = myLink.update();
              catch(err) {}
    function SetDisplayDialogs(Mode) { // turn on-off DialogModes in PS -- don't want to see the open file dialog while the script is running
         var bt = new BridgeTalk;
         bt.target = "photoshop";
         var myScript = "app.displayDialogs = DialogModes." + Mode + ";";
         bt.body = myScript;
         bt.send();
    function UpdateAllOutdatedLinks() {
         for (var myCounter = myDoc.links.length-1; myCounter >= 0; myCounter--) {
              var myLink = myDoc.links[myCounter];
              if (myLink.status == LinkStatus.linkOutOfDate) {
                   myLink.update();
    function GetFileNameOnly(myFileName) {
         var myString = "";
         var myResult = myFileName.lastIndexOf(".");
         if (myResult == -1) {
              myString = myFileName;
         else {
              myString = myFileName.substr(0, myResult);
         return myString;
    Thank you.
    Yulia

    On first sight:
    myJPGSaveOptions.interlaced = false;
    JPEG save options don't have an 'interlaced' property; that was for PNGs only. Check Photoshop's Script Help for the specific JPEG options.

  • Why can't I save as my photoshop cs4 file to .png file? I don't see any option now?

    Hi,
    why can't I save as my photoshop cs4 file to .png file? I don't see any option for saving .png in Save As diolog box now? It was working fine until yesterday. Neither I can open a .png file nor save my psd file to png file?
    Please help. I am using Microsoft Window XP Professional and Photoshop CS4.

    In Photoshop CS4, .png open/save support was provided by a plug-in.  It is possible the plug-in has been deleted or moved, or has become unavailable to Photoshop because of a change in file protections.
    Do you have the file PNG.8BI on your system.  It should be here on a 32 bit Windows system:
    C:\Program Files\Adobe\Adobe Photoshop CS4\Plug-ins\File Formats\PNG.8BI
    -Noel

  • How do I save a word pdf file to png file for up load onto FB

    how do I save a word pdf file to png file for up load onto FB

    What is a Word PDF file? There are Word files and there are PDF files. What does your question have to do with Boot Camp, the subject of this discussion group?

  • I have used Image Capture to scan images/documents and then saved them as either PDFs or PNG files.  For some reason, just this past week Image Capture will no longer save the file.  It scans, and the Scan Results window pops up, but it won't save file.

    I have used Image Capture to scan images/documents and then saved them as either PDFs or PNG files.  For some reason, just this past week, Image Capture will no longer save the file.  It scans, and the Scan Results window pops up, but it won't save file.
    The file name has no special character in it, just letters and no spaces.
    I have done this in the past and it has worked, but now it will not.
    I have not upgraded any software, that I am aware of.
    After scanning, the Image Capture pops up the Scan Results with the file name in the window, but neither the Scan Results nor the Image Capture window responds to inputs.  The Image Capture window is frozen, with only the "Overview" and "Cancel" buttons active (but non-responsive).
    Is this a software issue or a scanner hardware issue?  I am using a HP Photosmart C6200 series printer/scanner on a network using a Time Capsule airport.
    Thanks.

    I had the same problem.
    Got a 90% fix.  Apparently the Mavericks preferences won't work with Yosemite, so I just deleted the Image Capture preferences.
    Unfortunately, the "Scan to" folder seems to be permanently set to the Pictures folder.
    1.  Quit Image Capture
    2.  Go to Finder > Go > Home, which opens up your home folder (named after your user name)
    3.  Open Library > Preferences > com.apple.ImageCapture.plist - Drag this file to the Trash
    4.  Start "Image Capture", click "Details" and change all your settings as you prefer
    5.  Quit and restart "Image Capture".   Notice it remembers all your settings except "Scan to" folder.  It insists on saving to "Pictures".
    That's as far as I was successful.  I tried changing the "Scan to" folder to "Desktop", but on launch, Image Capture always sets it back to "Pictures".
    This is what I tried:
    6.  Download and install "Pref Setter" from http://www.nightproductions.net/prefsetter.html
    7.  Quit "Image Capture".  Right-click on "com.apple.ImageCapture.plist" and open with Pref Setter.
    8.  Search for "Pictures", which finds "~/Pictures" (the tilde character at the start means your home directory).
    9.  Double-click on "~/Pictures" and change it to the folder you prefer.  I like "~/Desktop"
    10. Choose File > Save then Quit from Pref Setter.  Note that re-opening the plist file still shows "~/Desktop"
    11. Start up "Image Capture" -- on startup, "Image Capture" sets "Scan to" folder to "Pictures"
    I consider this a bug.

  • Illustrator CS4 wont save files, please help?

    You can edit a file, go to save, close it down, then when you re-open it the changes made have not been saved?? No error message or warning pops up, and it all looks ok like it has saved properly, until you open it up again. This also happens when you use 'save as' command if you use the original file name. If however you type in a different file name - it saves ok. But obviously that is not great as you cant now trust or rely on the save mechanism of the programme, to make sure any changes to artwork have been stored!! I have never seen an issue like this, it is worrying, I hope somebody can help?
    Thanks.
    We are running CS4 on windows7 - yes PC!!!

    We save in EPS, and its not just one file, its a variety of different files and it seems to be random as to which files it does it on, some work fine - some don't. And it can be anything from a minor text change to a colour change, it doesnt seem to matter on the change made, it reacts the same.
    The files are saved over a network connection to a large external hard drive.
    Its really puzzling and now starting to cause problems as we do a fair bit of work in it, and can't trust one of the most important features, and that any changes that have been done have been saved and stored!
    Hope maybe you can help with any thoughts at all.
    Cheers.
    Date: Thu, 24 Jun 2010 03:41:40 -0600
    From: [email protected]
    To: [email protected]
    Subject: Illustrator CS4 wont save files, please help?
    What file format do you save it in?
    What kinds of changes did you make in that file?
    Where do you save the file (removable or network media)?
    >

  • I get this message "Cannot save the file as the font "ArmenianLSU-italic" could not be embedded because of licensing restrictions. Turn off the pdf compatibility option and try again. I have this file from when I had CS4. It worked then. I trying to make

    I get this message when I am trying to save a file that was done in CS4, now using  CS6 "Cannot save the file as the font "ArmenianLSU-italic" could not be embedded because of licensing restrictions. Turn off the pdf compatibility option and try again." Even if I start a new file I unable to save it with this font. I need to use this font.

    Then you need to outline all text before savng the PDF.
    Make sure you do this on a copy of the file.

  • Illustrator Batch - Save for Web PNG - File won't close

    I am trying to convert several AI / EPS files to PNG file at 800 px.
    I've tried using a batch incorporating either export as PNG and Save for Web  - and neither on is working well.
    The batch I built simply transforms the graphic to 800 px - Save for Web - then closes the file. Or exports the file as PNG at 800 px.
    The problem is that the Save for Web Dialog box opens up each time or it simly doesn't export a file. I've tried checking off the various different surpress options in the batch dialog box - but nothing seems to work.
    Your help is greatly appreciated.

    Thanks for your answer but the images are not for web.
    I need to enlarge them because they have a lot of detail and I need to send them to someone to be checked. The only place I can save as Gif is on the "Save for Web"  dialog and Gifs have the smallest size/best quality ratio for the images I need.
    I don't understand why when executing the batch process it stops at the "save window" waiting for me to click on "Save".
    Nevertheless, thanks anyway

  • How can I add a PSD logo watermark file to an image in CS4 or Lightroom3?

    Hi,
    I have a psd file with my company logo as a watermark. How can I add that file to an image in CS4 or Lightroom3. I am sure it is really simple and I am just a bit dopey but would appreciate the help.
    Thanks.
    Natalie

    This is fully explained in the help file. Hit F1 and go to using the watermark editor, you will see there is is also a video tutorial so I won't repeat the advice here.
    You will need to change the PSD to a PNG in order to use it and retain any transparency layers. Open the file in Photoshop and choose save for web, then select either the PNG 8 or PNG 24 preset and save a copy of the file.

  • Word 2007 won't save files with Acrobat Pro 9.0 Installed

    Last night an issue started occurring while trying to save a document in MS Word 2007 (part of an Office Ultimate install).  After about 10 hours of trying several suggestions from a variety of forums and MS suggestions I found that the only time I cannot save a file by traditional means is when Acrobat is installed.  I tried updating Acrobate and had the same thing happen.  MS says all that's left for me to do is get an answer from Adobe (I have to wonder if it's a copout).
    Steps taken so far:
    Disabled the PDF add-in - still unable to save Word files
    Removed PDF add-in - still unable to save Word files
    Removed entire CS4 suite - Word was able to properly save files
    Installed only the parts of the suite that I use frequently (Photoshop, Soundbooth, Premiere, Acrobat) - unable to save Word files
    Removed Acrobat Pro 9.0 - Word saves files properly again
    When I say it will not save a file I've tried the keyboard shortcuts for Save/Save As, Choosing the Save/Save As from drop down, and even attempted to save by closing the document.  When prompted with the option to save changes I say yes and nothing will happen, I have to close the document with nothing saved.
    I hate the idea of reinstalling Acrobat each time I need to use it to keep Word functional.  I've seen a ton of threads on other forums related to this issue.  Has anybody else seen this or know about a fix/work around?  Any help is appreciated.  Please let me know if additional detail is necessary.
    The operating system for the affected computer is Windows 7 32-bit.

    I installed each update individually (6 of them) and rebooted after each update.  Opened Word and attempted to save a document (after each update/reboot), the documents still cannot be saved (previously created documents still cannot have new detail saved).
    Decided to delete the Office folder in the following path: C:\Program Files\Adobe\Acrobat 9.0\PDFMaker\Office
    Opened up word and Acrobat went through an installation processes, to replace what was removed I assume.  After this was done I attempted to save a document and was still unable to do so.  Went back and deleted that Office folder in the above path again.  When opening Word this time I cancelled the installation process that Adobe was trying to complete.  Preventing the install of the settings and PDF add-in allowed documents to be saved again in word.
    I decided to try to remove the innactive add-in from my Word Options and received the following error message:
    "The connected state of Office Add-Ins registered in HKEY_LOCAL_MACHINE cannot be changed"
    Due to my deleting that folder?
    I suppose I could cancel that installation that initiates each time I open Word (or any other Office program that benefits from Acrobat Add-ins) but that will be a bit of an annoyance.
    Anybody have another suggestion, know what may need to be deleted from the registry to prevent the Add-ins installation when opening Word, or know where that setting can be changed?
    Hopefully getting close to a resolution

  • "Could not save (file name) because the file is already in use or left open."

    Hello,
    When I tried save as a file, I get an error msg:
    "Could not save (file name) because the file is already in use or left open."
    The file is not open anywhere accept Photoshop.
    Mac Pro, OSX 10.5.6
    Photoshop CS4.
    I searched the forum but could not find anything even though i'm sure someone already asked it.
    would love to get a solution for that.
    thank you,
    shlomit

    There is a problem with both Photoshop and InDesign, then we can blame wich ever it is.
    1. I open a .psd file in Photoshop CS4 by double clicking it in Bridge
    2. This image is placed on a page in a open InDesign document.
    3. Doing some changes in Photoshop on the image.
    4. Trying to save and get this error message (this topics subject)
    5. Deleting the image from the page in ID doc, it is the only one in the document.
    6. Can't still save file.
    7. Closing ID completely and now I am able to save the file.
    I tried turning of Live preflight in Indegisn but that didn't help.
    So probably the fault is InDesign or the MacOS. I didn't have this problem with CS3. It is a stupid problem because this type of workflow is pretty common and one would expect it to be solved by now.
    Jan Suhr
    Stockholm, Sweden

Maybe you are looking for

  • [SOLVED] Remove completely Gnome and GDM (without messing MATE)

    Hi everybody, I wanted to try the new Gnome on my laptop and I installed it following the wiki with the command: sudo pacman -S gnome gnome-shell gnome-extra gdm I really like it (both the "standard" and the classic interfaces), but unfortunately it

  • IMovie'11 on my mac won't start.

    Just keeps bumping in the dock and the app takes up a large amount of cpu usage, what to do? I have a Unibody MacBook (2008 modell) running the latest snow leopard os Intel Core2Duo 2,0 ghz with 2 gb of ram, It's perfectly able to run iMovie'11 but i

  • Few DVDs Seem to Work with My Intel Solo Mini

    when I put in a dvd, such as saving private ryan, the dvd shows up in the finder as a blank dvd and I am unable to read the contents or play the dvd in the dvd player. When I tried to play the lord of the rings extended dvd one half od the movie woul

  • I want to copy my iPod music to an old iPad, how

    I want to copy my iPod music to an old iPad, how

  • UME property not found

    Hi Experts, I am not able to see the UME property ume.r3.connection.master.client in configtool. In fact none of the UME properties mentioned in below given link , did not work. I have my release SAP Netweaver PI 7.11.5.0  Any idea what is the issue?