Photoshop CS 5.1 (v12.1 x64) Trial not saving to JPEG or common formats

I downloaded and installed the PS CS 5.1 trial edition today. All I needed to do was slightly edit a photo and save it as a JPEG so I could use it in a Word document. I successfully opened the JPEG photo I needed to edit and made the changes I wanted to, but I am unable to save the file as a JPEG. I can save to the following formats: PSD, Large Document Format, Portable Bitmap, OpenEXR, TIFF, and Radiance. The "Save for web and other devices" option on the main menu is grayed out and inaccessible. I've updated both Photoshop and my OS with no effect. Supposedly the trial is supposed to be fully functional (one would assume that includes saving to common image formats), but that is not the case here.
Does anyone have advice or a course of action I can take to resolve this?
Thanks!
Josh
System Specs:
MacBook Pro 15.4"
OS X v10.6.8
Intel Core i7 2.0ghz
4GB RAM
500GB HDD
Radeon HD 6490M gfx card

yah, that was the issue...sad thing is I've made this same mistake before...gotta stop working with RAW files so much lol

Similar Messages

  • Trial version Elements not saving as JPEG on Mac Pro?

    Recently purchased MAC Pro laptop. Downloaded Photoshop Elements Trial. Edited picture not saving as JPEG per Etsy when I try to upload to photography shop.  Always does on older computer using Photoshop CS-needed to replace. Will this happen if I purchase?  Also have problems finding picture after editing on MAC Pro? I have had a photography shop for a long time on Etsy and edited using Photoshop CS without problems. But, I cannot afford to upgrade to a cloud - no real financial gain from shop But love doing it . Photoshop Elements actually does everything I need to do.

    Hi princeprincess,
    Thanks for posting on Adobe forums.
    Please tell us if you are getting any error while saving as JPEG.
    Are you saving file on a network drive?
    If yes, Please try to share on the Desktop.
    Regards,
    Sandeep

  • Edited RAW files not saved as .JPEG files

    Before I updated to iPhoto8, when I edited my RAW files they were saved to JPEG files automatically. From the Help documentation, I believe that this should still be happening..... but it isn't.
    Do I have a setting wrong? Anyone know?
    Thanks.

    Check the entry "About nondestructive editing" in iPhoto Help. With iPhoto '08 you will not see the "save" progress bar unless the photo was previously edited in iPhoto 6. Here is a portion of the text:
    Nondestructive editing allows you to try different adjustments and effects at will⎯there’s no danger that successive edits and saves will degrade your photo’s quality. You’re never more than one version away from your original photo. Instead of saving a new version over the previous one every time you edit a photo, iPhoto ’08 simply remembers all your changes as an edit list.
    When you reopen your edited photo to view or do more work, iPhoto then reapplies those edits to the original version. You’ll see where you left off, so you can make incremental changes from there.
    IMPORTANT: For photos imported to earlier versions of iPhoto and never edited, nondestructive editing will apply in iPhoto ’08.
    However, for photos imported to earlier versions and edited either in iPhoto or in a separate application such as Photoshop, nondestructive editing does not apply.

  • Image is not saved in jpeg/bmp file but ok with png

    Hi i am unable to save the image in disk in jpeg format.
    Here is the code.
    public void saveImage(){
    //if no filechooser is there means no image file opened.
            if(fileChooser==null){
                if(errorWindow==null)
                    errorWindow=new ErrorWindow(XXX.getPrimaryStage());
                errorWindow.showErrorWindow("There is no image to save !!\n");
            else{
                fileChooser.setTitle("Save The Image");
                File saveFile=fileChooser.showSaveDialog(XXX.getPrimaryStage());
                if(saveFile!=null){
                    System.out.println("saveFile path= "+saveFile);
                    //get the extension of output image to be saved.
                    //XXX: is the main class name(say)
                    outExtension=*XXX*.getImageExtension(saveFile);
                    //if user does not give extension: set default extension as jpg
                    if(outExtension.equalsIgnoreCase(saveFile.getName())){
                        outExtension="jpg";                   
                        String newPath=(saveFile.toString())+".jpg";
                        saveFile=new File(newPath);                   
                    Task task = new Task<Void>() {
                        @Override
                        public Void call() {
                            Platform.runLater(
                                    new Runnable() {
                                        public void run() {
                                            try {
                                                //The image is inside ImageView->inside ScrollPane-> inside TabPane.
                                                Image curImage=XXX.getCurrentImage();
                                                int width=(int)curImage.getWidth();
                                                int height=(int)curImage.getHeight();                              
                                                System.out.println("cur image width= "+width+" ht= "+height);
                                                bufferedImage=new BufferedImage(width, height,BufferedImage.TYPE_INT_ARGB );
                                                //set the current image to awt Buffered Image
                                                SwingFXUtils.fromFXImage(curImage, bufferedImage);
                                                    imageTabPane=xxx.getImageTabPane();
                                                    Tab tab=imageTabPane.getSelectionModel().getSelectedItem();                                    
                                                    TabPane childTabPane=(TabPane)tab.getContent();
                                                    ScrollPane sp=(ScrollPane)childTabPane.getSelectionModel().getSelectedItem().getContent();
                                                    final ImageView imageView=(ImageView)sp.getContent();
                                                    WritableImage wim = new WritableImage(width,height);
                                                    imageView.snapshot(null, wim);
                                                    System.out.println(" snapShot width= "+wim.getWidth()+" ht="+wim.getHeight());                             
                                                    *ImageIO.write(SwingFXUtils.fromFXImage(wim,null), outExtension, saveFile);*
                                                       //<------ its not working  for png,jpeg,bmp,gif                                          
                                                    // the below lines are working only for png and gif
                                                    OutputStream out = new FileOutputStream(saveFile);                                                
                                                    ImageIO.write((RenderedImage) bufferedImage, outExtension, out);
                                                    out.flush();
                                            } catch (Exception ex) {
                                                Logger.getLogger(FileMenuController.class.getName()).log(Level.SEVERE, null, ex);
                                                //ex.printStackTrace();
                                            System.out.println("finished");
                            return null;
                    Thread th = new Thread(task);
                    th.start();
                }else{
                    System.out.println("File is not saved");
        }//saveImageNote: The above code is executed in ubuntu(10.04) using Netbeans 7.2(Javafx(2.2), java(1.7.0_11).
    When i run(from terminal) separately in a new class with an image in an Imageview( inside a Vbox) and take the snapshot
    of the imageview and write into the file using ImageIO.write(SwingFXUtils.fromFXImage(wim,null), outExtension, saveFile);
    with any extension (jpeg,png etc) it is working fine.
    Please help me.
    Any small hint is also helpful.Please feel free to comment or give suggestion.
    Edited by: 963038 on Feb 17, 2013 7:14 PM

    When i omit the line OutputStream out = new FileOutputStream(saveFile);
    and write only
    ImageIO.write((RenderedImage) bufferedImage, outExtension,saveFile);
    //out.flush();
    then saving the image even in "png" also fails.
    The following is the error code:
    Note : FileMenuController is my file where the saveImage() is wrtten.
    javax.imageio.IIOException: I/O error writing PNG file!
    finished
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1168)
         at javax.imageio.ImageWriter.write(ImageWriter.java:615)
         at javax.imageio.ImageIO.doWrite(ImageIO.java:1612)
         at javax.imageio.ImageIO.write(ImageIO.java:1536)
         at *newciptk.controls.menu.file.FileMenuController$1$1.run(FileMenuController.java:205)*
         at com.sun.javafx.application.PlatformImpl$4.run(PlatformImpl.java:173)
         at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:76)
         at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
         at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
         at java.lang.Thread.run(Thread.java:722)
    Caused by: java.io.IOException: Operation not supported
         at java.io.RandomAccessFile.writeBytes(Native Method)
         at java.io.RandomAccessFile.write(RandomAccessFile.java:499)
         at javax.imageio.stream.FileImageOutputStream.write(FileImageOutputStream.java:124)
         at javax.imageio.stream.ImageOutputStreamImpl.writeInt(ImageOutputStreamImpl.java:91)
         at com.sun.imageio.plugins.png.ChunkStream.finish(PNGImageWriter.java:136)
         at com.sun.imageio.plugins.png.PNGImageWriter.write_IHDR(PNGImageWriter.java:401)
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1135)
         ... 9 more
    javax.imageio.IIOException: I/O error writing PNG file!
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1168)
         at javax.imageio.ImageWriter.write(ImageWriter.java:615)
         at javax.imageio.ImageIO.doWrite(ImageIO.java:1612)
         at javax.imageio.ImageIO.write(ImageIO.java:1536)
         at newciptk.controls.menu.file.FileMenuController$1$1.run(FileMenuController.java:205)
         at com.sun.javafx.application.PlatformImpl$4.run(PlatformImpl.java:173)
         at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:76)
         at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
         at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
         at java.lang.Thread.run(Thread.java:722)
    Caused by: java.io.IOException: Operation not supported
         at java.io.RandomAccessFile.writeBytes(Native Method)
         at java.io.RandomAccessFile.write(RandomAccessFile.java:499)
         at javax.imageio.stream.FileImageOutputStream.write(FileImageOutputStream.java:124)
         at javax.imageio.stream.ImageOutputStreamImpl.writeInt(ImageOutputStreamImpl.java:91)
         at com.sun.imageio.plugins.png.ChunkStream.finish(PNGImageWriter.java:136)
         at com.sun.imageio.plugins.png.PNGImageWriter.write_IHDR(PNGImageWriter.java:401)
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1135)
         ... 9 more

  • LR 2 - tiff file not saving as jpeg when using adjustment tool

    LR2, photoshop CS2, XP, 4gig ram
    ok so here is my workflow
    process raw file in LR2
    export to 16bit tiff
    then to send to my photo libary i have an action set up in photoshop CS2
    image mode - 8bit
    fit image 1200
    save as jpeg
    close
    this works well and i use it nearly every day
    however today I had problems with the action
    it would stop on certain photos and say
    'couldnt complete your request because of a program error'
    when I came to look at which photos were causing the problem i found out that
    ALL photos that wouldnt save to jpeg
    were photos I had used the ADJUSTMENT TOOL on
    A BUG?

    >A BUG?
    No...the error message: 'couldnt complete your request because of a program error' is an indication that your Photoshop preferences are hosed...reset the prefs.

  • How do I prevent Lightroom from creating duplicates if the edit in photoshop is not saved?

    Hello!
    How do I prevent Lightroom from creating duplicates if the edit in photoshop is not saved?
    So... Quite often I choose to 'Edit in photoshop' from Lightroom but then end up not saving the result. (for example, because I just wanted to experiment with the photo, or I'm not satisfied with the results)
    However, Lightroom always creates a copy of the original photo, which stays in the catalog even if the photoshop changes aren't saved.
    Is there a way to stop this, and only add a photo if it has been edited in PS?
    Using LR5 with PS CS6 on a Mac 10.9
    THANK YOU!

    Select 'Open the Image in PS as a Smart Object'. The image will be rendered by ACR in memory without being written to disc until you save it from within PS.

  • Why is photoshop trial not downloading??

    Why is photoshop trial not downloading??

    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand, such as your platform (Mac or Win), exact versions of your OS, of Photoshop and of Bridge, machine specs, such as total installed RAM, scratch file HDs, video card specs, what troubleshooting steps you have taken so far, what error message(s) you receive, if having issues opening raw files also the exact camera make and model that generated them, etc., someone may be able to help you.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • I just purchased Photoshop 11.  The serial number is not valid to get me out of the trial.

    I just purchased Photoshop 11.  The serial number is not valid to get me out of the trial.

    You need to contact Adobe Support either by chat or via phone when you have serial number and activation issues.
    Here are some links to help make contact:
    http://www.adobe.com/support/chat/ivrchat.html
    http://www.adobe.com/support/download-install/supportinfo/

  • Photoshop CS6 Updated itself to Extended Trial

    I have found only one discussion on this subject and it is several years old. I am hoping it is easier to deal with now.
    I purchased Photoshop CS6 full version on CD not the Cloud. I am running Windows 7 64 bit. Today when I opened a file Photoshop said it was installing the trial version of Photoshop CS6 Extended version. I understand that this will cause an issue at some point, based on what I read.
    Has a fix been found for this problem? When I was reading the discussion, by the time I came to page 16 it sounded like there was no real fix at that time.
    Thank you

    It hasn't asked me to enter a serial number. Below is most of the system information given in the program.
    Adobe Photoshop Version: 13.0.1 (13.0.1.3 20131024.r.34 2013/10/24:21:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:12, Stepping:3 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 2693 MHz
    Built-in memory: 8135 MB
    Free memory: 3688 MB
    Memory available to Photoshop: 7208 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: Quadro K2100M/PCIe/SSE2
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 900, right: 1600
    Video Card Number: 1
    Video Card: NVIDIA Quadro K2100M
    OpenCL Unavailable
    Driver Version: 9.18.13.1269
    Driver Date: 20131028000000.000000-000
    Video Card Driver: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode: 1600 x 900 x 4294967296 colors
    Video Card Caption: NVIDIA Quadro K2100M
    Video Card Memory: 2048 MB
    Video Rect Texture Size: 16384
    Serial number: Tryout Version
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\ellen.NTI\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 917.7G, 646.2G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set

  • Cannot open file or create image in Photoshop CS5 (12.0.4 x64)

    Photoshop starts as normal. When I do File>Open or File>New nothing happens. See demo here http://www.screenr.com/LUkH
    I've searched the webs and see many cases of what sounds like a similar issue, but I cannot get any of the suggested fixes to work for me.
    http://forums.adobe.com/thread/1121162
    http://www.dtg-forums.com/forum/showthread.php?t=668
    http://en.kioskea.net/forum/affich-449-photoshop-cs3-can-t-open-files
    What I've tried so far:
    I've uninstalled, deleted all AppData and ProgramFiles folders, installed, updated. Still no luck. Version 12.0.4 x64.
    I've removed all printers.
    I've done the preferences reset trick by holding down CTRL+ALT+SHIFT when launching Photoshop.
    I've done the super weird ESC and CTRL+SHIFT+S described in the last link above (sounds like nonsense!).
    Photoshop was working fine on this same computer earlier, but one day decided to stop working.
    Can't even access the Adobe Chat support for CS5 even though I paid them a lot for this currently 100% useless software.
    I'm running Windows 7 X64, fully updated.
    Photoshop CS5 (12.0.4 x64). Freshly installed.
    Any help greatly appreciated.

    Transcript from unhelpful Adobe Support, CS5 is no longer supported. Basically this turned into a hopless a rant on my part...
    Tazkir: Hello. Welcome to Adobe Technical Support.
    Tazkir: Hi magnus.
    Magnus Olstad Hansen: Hi. My Photoshop is no longer able to open images or create new images. I've tried everything I can imagine would help at this point, and I really need some advice. I've also asked the community here (http://forums.adobe.com/message/5720427#5720427). Please advice what I can do to be able to use the product I've bought from you?
    Tazkir: Please allow me a moment while I look into your account & verify the details.
    Tazkir: Could you please provide me the email address registered with Adobe?
    Magnus Olstad Hansen: (email)
    Tazkir: Thank you for the email address.
    Tazkir: Just to confirm you were able to open Photoshop before.
    Magnus Olstad Hansen: That is correct. It's been working before, on the same computer.
    Tazkir: I am sorry to inform you that I could have really helped you . But this issue is not under our support area. I am sorry to inform you that the concerned team will be available after .I request you to please contact us back via same live chat after .so that your issue will be handled and resolved by the concerned team.
    Tazkir: Is there anything else I can help you with?
    Magnus Olstad Hansen: after ... when?
    Tazkir: During week days.
    Magnus Olstad Hansen: Ok. I've made so many failed attempts at getting help with this issue, could you please leave a note for the relevant support team and have them contact me at (email) ?
    Magnus Olstad Hansen: It would be easier for everyone, I imagine.
    Magnus Olstad Hansen: Or even if they just reply to the forum post.
    Tazkir: I am sorry I checked and see that you have Cs5, We don't support CS5 anymore. Please visit the forum.
    Magnus Olstad Hansen: I will never buy software from Adobe again.
    Magnus Olstad Hansen: I already linked you to a forum post, noone can help me there.
    Magnus Olstad Hansen: And Adobe does not care.
    Tazkir: I am sorry for the inconvenience caused to you.
    Magnus Olstad Hansen: Yes. 2 years is not an acceptable lifetime for purchased software.
    Magnus Olstad Hansen: I will be forced to replace my legally purchased version with a pirated one, support and help is better for that software than the legal one.
    Tazkir: Is there anything else I can help you with?
    Magnus Olstad Hansen: Well, no, I only have this problem.
    Tazkir: Thank you for contacting Adobe. Good Bye.

  • I am trying to download the Adobe Photoshop CS6 Extended Student and Teacher Trial

    I am trying to download the Adobe Photoshop CS6 Extended Student and Teacher Trial and it had me download te assistant. After downloading the assistant, I installed it and I signed in. It wants me to pick a product to download and the Adobe Photoshop CS6 Extended Student and Teacher is not listed. The closest thing to download is Adobe PS CS6. Please help me

    there is no specific trial for S&T. It's just the normal program. S&T is a licensing/ pricing thing, not some technical difference.
    Mylenium

  • I just purchased Adobe Photoshop Elements 13 but my computer is not recognizing my CDRom and I cannot download the program. I tried copying the files on the program disc to my hard drive but get a message the installer will not work. I have the redemption

    I just purchased Adobe Photoshop Elements 13 but my PC is not recognizing my CDRom and I cannot download the program. I tried copying the files on the program disc to my hard drive but get a message the installer will not work. I have the redemption code and serial numbers. Can I download the program online somewhere? If I download a trial version for instance will it allow me to enter my serial number and use it for the full program?

    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.6| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Photoshop CS6 13.1.2 x64 PSD Loading Problems

    I have created a multi-layered UI PSD that's 26.7MB in size. When I open it, the "Reading Photoshop Format" UI comes up for ~3 minutes and it takes more than 4 minutes to finish the load. It eats 5.5GB of my RAM, and writes 99-100% to my DDrive the whole time, creating a 19.8GB scratch file. The dialogue disappears, and the mouse stutters for about 20 seconds and then I can actually interact with Photoshop.
    What's going on here and how can I fix this? It's not saved to be compatible and was created in CS6 from scratch.
    Other PSD files open just fine without issue (I have another 24MB file with just a few layers).
    It's nearly unusable now. Something is very wrong. I have no other issues with my system or software.
    This is on a 4GHz 12GB of RAM Win8 x64 system.

    I am having troubles since the last update too. I can see the import button, but I cannot import my images, JPG and CR2 into Lightroom.

  • I already have bought Photoshop Element13; I already installed the trial version of Photoshop Premier 13. Question: How much would it cost to buy Premier 13?

    I already have bought Photoshop Element13; I already installed the trial version of Photoshop Premier 13. Question: How much would it cost to buy Premier 13?

    Rochar
    This is not Adobe. Rather user to user.
    What did you do....purchase an online download of Photoshop Elements 13 from Adobe. Are you within 30 days of the date of that purchase?
    In that case, please direct this question to Adobe Chat Orders to sort out the details of the purchasing situation and what you would like to do. Consider
    clicking on the following link for Adobe Chat Panel Orders...
    Contact Customer Care
    Premiere Elements
    Membership, Account, Payment
    Payments, Invoices, Orders
    Chat Panel
    If the link does not hold its set, you will need to navigate to the Chat Panel using the above titles as guides.
    Any questions or need clarification, please do not hesitate to ask.
    Thank you.
    ATR

  • Bought a 3 mth subscription card for Photoshop CS6 because my 30 day trial expired & won't work?

    So I bouth a 3 month subscription card for Adobe Photoshop CS6 because my 30 day trial expired.  I followed all the onscreen instructions and it accepted my activation code but when I go to open the Photoshop previously installed it says my 30 day trial has expired...... can anyone help?

    Hi Intertribalvisions,
    Did you get it working? I looked at any subscriptions you had associated with the email address you use here on the forums. I saw Illustrator CS6 but not Photoshop CS6, not sure if that is related.
    -Dave

Maybe you are looking for