Photoshop files not opening

When I save my pics after I've adjusted them on Photoshop, I'm unable to get prints made from any photoshop.  I've saved them as a jpeg, but that hasn't helped.  I know I can  print off from home but I want to solve this problem.

If I understand the issue, what you are saying is that you have Opened Images in Photoshop, adjusted them, and finally Saved them to JPEG. Then, you send those resulting JPEG Images to a printing service, and the files do not Open for that service. Is that correct?
You state that the files do not Open at the printing service. What software are they using?
What are the specs. that the printing service have requested?
How do your specs. for the Saved JPEG's differ from those specs.?
Did the printing service get any error messages in their software, when attempting to Open those JPEG's? What were they, if they did?
Which printing service are you attempting to use?
Good luck,
Hunt

Similar Messages

  • Adobe Photoshop files not Opening in LR

    In 2002 I saved a bunch of photos in the Adobe Photoshop format rather than TIFF or JPEG.   I can't seem to recognize these photos with LR4.    However, I can launch the photos with CS5 without a problem.    I want LR to recognize these photos because I am now using LR to organize all of my photos.    Any thoughts.  

    hmmmm.    I am not sure of the difference.   I think I was using PS 3 or 4 back then and when I saved the files (imported from a Polaroid slide scanner) I used the PS save option format (Photoshop).    I don't see an extension on the files, but when I "GET INFORMATION" on my Mac it indicates the format is Adobe Photo shop.
    I suppose I would open all of these photos in CS5 and resave in a format that would be recognized by LR, but that would be very painful because I have many hundreds.

  • Photoshop will not open some of my files

    I recently had a hard drive crash. I sent it to a recovery company and they returned my files on a new hard drive. Many of the images were recovered but some show up as CR2 files or psd files that photoshop will not open. The message says that this is a file format that PS does not recognize. These files seem to be no different from my other CR2 files and psd. files but the thumbnails don't show up in Bridge and PS will not open them. Can anyone tell me how to get these files to open?

    I thought this following suggestion to use GIMP to open stubborn PSD files was brilliant:
    http://forums.adobe.com/message/3306200#3306200
    you may also want to try using the DNG converter with your CR2 files:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4923
    it's worth a try, but it's a long shot.

  • I have cs5 and bought new camera olympus e-m1 photoshop does not open raw files is there a patch for it?

    I have cs5 and bought new camera olympus e-m1 photoshop does not open raw files is there a patch for it?

    Familiarize yourself with these tables
    http://helpx.adobe.com/creative-suite/kb/camera-raw-plug-supported-cameras.html
    Camera Raw-compatible Adobe applications
    The E-M1 was first supported by Camera Raw 8.3 which is only compatible with CS6 and CC. It is not compatible with CS5 or lower and never will be.
    Some options:
    Upgrade to CS6
    Join the Cloud
    Download the free Adobe DNG converter, convert all the Raw E-M1 files to DNGs then edit the DNGs in CS5
    Camera raw, DNG | Adobe Photoshop CC

  • Photoshop will not open unless as Admin but that causes other problems

    Hi all,
    There are two problems:
    1.  If I don't run photoshop as an administrator
    2.  If I run photoshop as an administrator.
    1.  If I don't run as administrator, Photoshop will NOT open.  I can't even open .psd by double clicking them.  Can't open from the installed directory, can't open from shortcuts.  It only works if I right click run as admin or set properties to run as admin. 
    I am the only user for the system, and I have even taken ownership of all files.  Yet, it still requires me to run as admin.  I am running CS5 with windows 7 64bit.
    2.  If I run as admin I cannot drag or drop files into PS.  As detailed in here - http://forums.adobe.com/message/3640635.  I can open files manually through file menu, but dragging and dropping is disabled (shows a circle with a slash when i drag into PS). Their solution in the forum was to remove running as admin.  But if I do that, I get problem 1.
    Any ideas?
    Jason

    Option 1:  Clearly something went wrong when installing Photoshop, or you have changed permissions on your system for some part(s) Photoshop needs to access.  Verify, for example, that you have Full Control access to the root of the hard drive you have identified as scratch.  A reinstall of Photoshop might correct this.
    Option 2:  Windows UAC is likely the culprit here.  Some folks choose to turn off UAC completely, which means you'll be running everything as Administrator all the time, but that should not be done without FULLY understanding what UAC does for you and what additional measures you'll take to ensure your system doesn't get infected with malware.
    -Noel

  • Getting Message as "File not open", when I ran background Job

    Hi,
    I developed a Migration Program, Which reads the data from Application serever and procced with further process in back ground mode.
    Same program is workind fine in Development System in Back ground mode (SY-BATCH = 'X', Scheduled a batch Job). So I transported to Quality system.
    Now When I run the program in background mode (SY-BATCH = 'X', Scheduled a batch Job), getting Message as "File is not Open" at Quality system. So I debugged the Batch job  through "JDBG", and found file opening and reading the content sucessfully.
    But its not working without debugging mode and getting message as "File not open".
    Is there any Authorizations required for background mode (without debugging).
    So can you please help me on this how to solve this issue.

    Try this code:
    DATA: PATH_NAME(80) TYPE C,
            LV_FILENAME TYPE STRING.
      DATA: LW_XSTRING         TYPE XSTRING,
            X_LEN             TYPE I.
      DATA: FILE_AUTH_ERR TYPE REF TO CX_SY_FILE_AUTHORITY,
            FILE_OPEN_ERR TYPE REF TO CX_SY_FILE_OPEN,
            FILE_OPEN_MODE_ERR TYPE REF TO CX_SY_FILE_OPEN_MODE,
            FILE_CLOSE_ERR TYPE REF TO CX_SY_FILE_CLOSE,
            FILE_CONVERSION_ERR TYPE REF TO CX_SY_CONVERSION_CODEPAGE,
            FILE_TOO_MANY_ERR TYPE REF TO CX_SY_TOO_MANY_FILES,
            MESS TYPE STRING,
            W_TEXT TYPE STRING.
      DATA: L_RC TYPE INT4.
    concatenate pathname lv_filename into lv_filename.
    TRY.
          OPEN DATASET LV_FILENAME FOR INPUT IN BINARY MODE MESSAGE MESS.
        CATCH CX_SY_FILE_OPEN_MODE INTO FILE_OPEN_MODE_ERR.
          W_TEXT = FILE_OPEN_MODE_ERR->GET_TEXT( ).
          L_RC = 1.
        CATCH CX_SY_FILE_AUTHORITY INTO FILE_AUTH_ERR.
          W_TEXT = FILE_AUTH_ERR->GET_TEXT( ).
          L_RC = 2.
        CATCH CX_SY_CONVERSION_CODEPAGE INTO FILE_CONVERSION_ERR.
          L_RC = 3.
          W_TEXT = FILE_CONVERSION_ERR->GET_TEXT( ).
        CATCH CX_SY_TOO_MANY_FILES INTO FILE_TOO_MANY_ERR.
          L_RC = 4.
          W_TEXT = FILE_TOO_MANY_ERR->GET_TEXT( ).
        CATCH CX_SY_FILE_OPEN INTO FILE_OPEN_ERR.  "File already open
          L_RC = 5.
          W_TEXT = FILE_OPEN_ERR->GET_TEXT( ).
      ENDTRY.
      IF L_RC = 0.
        L_RC = SY-SUBRC.
      ENDIF.
      IF L_RC <> 0 OR SY-SUBRC NE 0.
    Issue Error message in open file.
       CONCATENATE MESS 'Open dataset failed'  w_text INTO MESS SEPARATED BY SPACE.
       message Exx(yyy) with mess.
          ELSE.        "file exists and can be opened
      ENDIF.

  • PDF File not opening in browser for sharepoint 2010

    Recently we have moved our web application from one server to another in Sharepoint 2010. Back up of entire web application was taken and restored in another server. But in the new server , the PDF files in the document library is not getting opened in browser.
    it always open in browser
    I have already made following changes but didn,t work
    Set browser file handling to Permissive from central admin
    Set "open in browser" in setting s of doc library
    Set the doc library file handling property using $docLib = $web.lists["Your Document Library Title"] $docLib.BrowserFileHandling = "Permissive" $docLib.Update()
    Added "AllowedInlineDownloadedMimeType.Add("Application/Pdf") in web app
    Installed Adober eader in client machine
    Even after trying all these, the PDF files are still opening in Client application(Adobe reader) but not in the browser
    It would have been great help if anybody provide a solution for this. I have been banging head on this for two days

    It would be handy if you didn't double post too.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/81ed0362-4033-4a31-b265-c1aba43c3d14/pdf-file-not-opening-in-browser-for-sharepoint-2010?forum=sharepointadminprevious
    To answer your question, you've tried most things that I normally see working, but there may be an extra solution here for you.  The solution 2 Powershell that deals with updating the Inline MimeType may help.
    http://www.pdfshareforms.com/sharepoint-2010-and-pdf-integration-series-part-1/
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • JNLP file not opening in Windows 8 and IE 10

    I am trying to launch the ROES ordering tool through WHCC prints and it has always worked on my other IE 10 through Windows 7 but on my new computer with Win 8 I cannot get it to launch because of the JNLP file not opening... and it won't work on desktop
    mode either... What do I need to do??

    Hi,
    Have you installed the java Runtime Environment?
    If not, I would also suggest you to refer to the link to install the latest version of Java:
    http://www.java.com/en/
    Please note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Then follow the link to set default programs as Java for the file:
    Choose the programs
    Windows uses by default
    http://windows.microsoft.com/en-US/windows-8/choose-programs-windows-uses-default
    Hope this helps,
    Ada Liu
    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.

  • Photoshop will not open in a Creative Cloud trial,

    Photoshop will not open in a Creative Cloud trial, although Indesign & other programs are fine, says I need an internet connection or the clock is set wrong?

    Only tried the Photoshop Elements, and haven’t change computer name or time
    With kind regards,
    Tim Besley
    Message signature was removed by: PECourtejoie

  • Ive recently updated my mac to OS X 10.10 and now my CS5 illustrator and photoshop will not open...  I uploaded the most recent Java and they still won't open.  Please help

    Ive recently updated my mac to OS X 10.10 and now my CS5 illustrator and photoshop will not open...  I uploaded the most recent Java and they still won't open.  Please help

    Mac,
    Nothing shows up here?
    https://www.adobe.com/account/my-products-services.html#
    With CS5 you must have registered, hopefully under your present Adobe ID.
    I am afraid the chat and phone support are off until the beginning of January.
    Serial number and activation support (non-CC, chat open between 5AM and 7PM PST/PDT on workdays)
    http://helpx.adobe.com/x-productkb/global/service1.html
    Adobe ID and registration support (non-CC, chat open between 5AM and 7PM PST/PDT on workdays)
    http://helpx.adobe.com/x-productkb/global/service-c1.html
    http://helpx.adobe.com/adobe-connect/adobe-connect-phone-numbers.html

  • Photoshop CS4 not opening & Wacom Cintiq 20WSX driver problem

    Hello,
    I have been using Photoshop CS4 for quite sometime now with no issues. I have just started using a Wacom Cintiq 20WSX and installed all the necessary drivers and now Photoshop will not open (I have seen other threads relating to Intuos tablets but not the Cintiq 20WSX).
    I have unistalled the Wacom drivers and Photoshop will open, on reinstalling the Wacom drivers the problem starts again "Photoshop cs4 has stopped working".
    I am running Windows 7 Home Prem 64bit. Photoshop CS4 has all current updates and I am using the most recent driver for the 20WSX from Wacoms site.
    Any suggestions as this is really really frustrating. (I have not yet attempted to uninstall Photoshop and reinstall it)
    (Incidently I am using the Production Premium CS4 Suite and everyhting else appears to be unaffected -AE, AI are opening with no issues)
    Thanks!

    Hi. I had the same problems with my Intous4 as well, and since both cintiq and Intuos use the same driver it probably is the same.
    Try this. Uninstall the wacom, unplug it, restart the pc. Then download the latest driver from the wacom site (if you didn't already), and install that latest driver alone, without installing the one that came with the cintiq. This is how I solved my problem, it wouldn't open PSCS4 64bit and AE

  • Pdf file not opening on pushing fdf file with F key in Adobe  Reader

    Well i am a novice developer in case of PDF Development.
    The problem which i am facing is:-
    In our application a PDF document submits the data to server and server sends back FDF to client with f key as http path of PDF which is present on web server.
    This all works well in acrobat professional 7.0 but in abobe reader 8.0 the PDF file doesn't open up on pushing FDF.
    On debugging the problem i found out that if server sends response within 480 milliseconds then reader is showing the pdf otherwise it don't shows up.Since in our application it will always take more than this time because of several operation performed to serve the request posted to server,So the
    PDF will never show up in case of reader.
    I was unable to understand what make it special in acrobat professional that session lasts more than 480 milliseconds whereas in reader the session doesn't last that long.
    I really need uregent help on this.
    Thanks in advance for help.

    It would be handy if you didn't double post too.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/81ed0362-4033-4a31-b265-c1aba43c3d14/pdf-file-not-opening-in-browser-for-sharepoint-2010?forum=sharepointadminprevious
    To answer your question, you've tried most things that I normally see working, but there may be an extra solution here for you.  The solution 2 Powershell that deals with updating the Inline MimeType may help.
    http://www.pdfshareforms.com/sharepoint-2010-and-pdf-integration-series-part-1/
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • HT2476 cannot find java runtime and photoshop will not open

    running OSX Lion on iMac Photoshop will not open. It says I need to update Java Runtime, but I do not have any updates. It says I am not connected to the internet and I am obviously since I am here. Help!!!!

    arlene220 wrote:
    I downloaded and it opens, but everytime I quit photoshop I get a crash report! there is nothing different except that I upgraded to Lion. Can I uninstall and run Snow Leopard and if so....how do I do that?
    Also, I just downloaded an upgrade to Topaz and it says cannot install on this computer...it is my main plugin for PS
    If you have gone to the Topaz developer's site and see no update for Photoshop in Lion, then all you can really do is contact them to see if they ever intend to update it.  What verion of Photoshop are you using by the way?
    Otherwise
    http://gigaom.com/apple/how-to-downgrade-from-lion-to-snow-leopard/
    Good Luck
    Pete

  • My Photoshop will not open when I open my creative cloud application manager. Can anyone help?

    My Photoshop will not open when I open my creative cloud application manager. Can anyone help? I am using a mac and all the specifications should be right...

    Simonfals543 do you receive any specific error messages when you try to open Photoshop?

  • Quick Time file not opening

    Suddenly QuickTime 7.5.5 stopped opening the movies stored in one Hard Disc.
    Here are descriptions of how problem occurs:
    1) The preview in finder +column view+ shows only blank space, but not a movie.
    2) Instead of opening the file QT claims that "This is not a movie file"
    3) Not all the movies in the disk are injured but about 80 % of them. There might be in same folder movies that behaves normally and movies that behaves as described above.
    I have restarted the machine few times and repaired the disk with disk utility, with not any couraging results...
    If there were any ideas what the problem might be, and how to fix it, advices would be very much appreciated.
    Screenshots of the problem:
    http://koti.welho.com/tsuonio1/File-not-open.jpg

    Two possibilities spring to mind. One is that the HD itself has been damaged somehow. Try copying one of the "bad" video files to your boot drive and opening from there. If it won't copy, your HD is clearly bad, if it copies and plays then something weirder is going on with the drive.
    The other possibility has to do with the h264 codec you used. Apple's implementation of the H264 standard is a work in progress, they've been gradually adding features that are part of the full standard and may have broken something. If you recently upgraded QT that may be the problem. If you created the files using a third party H264 codec that might explain the playback problems. Also, you should install Perian (www.perian.org) and see if that helps, their codec plays back many formats that Apple doesn't support out of the box.
    You may need to upload one of the bad files to an filesharing website of some kind so that other folks here can download and look at it themselves.

Maybe you are looking for

  • Things that should be in the next update... please don't wait for 2.0

    I've been using adobe products a long time and I have to say that I am a little disappointed there has not been more thought put into things that should just work in a v1 product. Here is the list: Ingest window should be able to be able to take up t

  • BOOTMGR Missing - HP Pavillion dv7-4177nr Entertainment Notebook, Windows 7 64bit

    My husband's laptop  is giving the same BOOTMGR is missing message.  He has a lot of stuff on the computer.  Recovery utility does ot work, neither does the system restore.  The utility to back up files does not work.  I am hoping what I read here wi

  • Planned freight charges

    hi all, I have a req to default to the planned freight charges in the PO. Can someone guide me on the configuration for this in the pricing procedure? which access sequence to you? If there are any documentations on this, would appreciate if you can

  • Versa Mail Treo 650

    I am unable to get/send mails on the Versa mail ,I get the following message " Unable to connect to pop.gmail.com. Please Verify your  server name entry"  the settings are as under - POP has been enabled in my gmail account - Account Name - Gmail - M

  • Android 2.2 Update

    I still have not received my Froyo update.  I talked to a Motorola representitve and she said that they did not know the date of when the updates where going to be finished.  i am thinking of just manually updating my phone.  Will it void my warranty