Really strange Memory Behavior in Photoshop CS6

I have:
MacPro 1,1
32GB RAM
SSD system disc
separate SSD scratch volume
recently installed OS-X 10.8.5
freshly re-installed and updated PS CS6
PS is configured to use 20GB memory.
I have created this huge psb-file with 53GB (big because it's a stitched pano with several layers, 16bit).
Opening this file again is a nightmare and sometimes fails completely.
When PS starts opening the file, PS takes a long while reading data, using something like 15-20GB RAM and starts to write to the scratch disc, as one would suspect.
Then something bizarre happens.
The checkerboarded window is drawn on screen, but before any real pixel of the picture is displayed, PS fills all available RAM (even though it shouldn't use more than 20B):
Then the Mac starts to build up a swap file which keeps growing and growing on the system disk up to 56GB.
This process takes around 20 minutes while PS is "Not responding".
The console log starts recording HI_WAT_ALERTS and swapon-messages.
If I'm lucky, the whole thing deflates suddenly at some point drawing the pictures and releasing all that RAM.
If I'm not that lucky, PS is suspended with a message "Your startup disk has no more space available for application memory".
Even if there still seems to be space left on that volume.
I maxed out on RAM and even got a larger startup disk to prevent it from filling up with swap completely.
But this doesn't seem to help.
I originally started having this situation with OS 10.7.5.
But a migration to 10.8.5 and a re-install of Adobe CS didn't help either.
Adobe vehemently denies any memory leaks in PS.
Enabling/Disabling GPU display support doesn't change anything.
Does anybody have any ideas what's going on?
Thanks

Lowering the memory for PS doesn't help.
I tried 16GB and 12GB.
Even when limiting PS to 8GB, the situation remains:
While the file is being read, PS grows to 8GB, but "inactive RAM" starts to fill memory until "Free RAM" ist virtually zero.
Then, when the image is about to be actually drawn, PS balloons to 29GB, and OS-X starts to build the huge swap-file:
The startup disk gets real busy paging in and out simulataneously until the swap has grown to about 50 GB.
This takes about 30 minutes, while PS is "not responding".
Then, the pictures appears on the screen, the whole memory thing deflates like a soufflee.
PS goes back to using 8GB of RAM, swap is zero and tons of RAM are free.
GPU accelleration was disabled (don't know how this translates to OpenGL usage).
And my Mac Pro is a 2,1 (mistyped 1,1 in the original post).

Similar Messages

  • Bug in my code or strange memory behavior ?

    Hi, Guys !
    It's been a while since I post something in this forum - trying to use your help when it's really needed.
    So, here we go ...
    (we use Oracle 8.1.7 on Unix box and SQL * Plus 8.1.6)
    While back I wrote "core" PL/SQL package that resides in let's say DB1 database. It has RECORD_EXISTS_FNC function designed to dynamically check If the record exists in certain table/view. Assumptions are that you pass in :
    Table/View name, Column name, and unique numeric value (because by DBA rules all of our Tables have SEQUENCE as a Primary Key. And I plan soon to put in overloaded function to accept unique character value)
    Also every Table has SYS_TIME_STAMP and SYS_UPDATE_SEQuence columns that populated by Trigger before Insert/Update representing Last Update time_stamp
    and how many times record was updated within same second.
    (in case more than one User updates same record in same time - that was written before Oracle had more granular date/time). So function has SYS_TIME_STAMP and SYS_UPDATE_SEQUENCE parameters (optional) accordingly.
    And It looks something like :
    FUNCTION RECORD_EXISTS_FNC
    (iBV_NAME IN USER_VIEWS.VIEW_NAME%TYPE,
    iPK_FIELD IN USER_TAB_COLUMNS.COLUMN_NAME%TYPE,
    iPK_VALUE IN NUMBER,
    iSYS_TIME_STAMP IN DATE DEFAULT NULL,
    iSYS_UPDATE_SEQ IN NUMBER DEFAULT NULL) RETURN BOOLEAN IS
    TYPE REF_CUR IS REF CURSOR;
    CR REF_CUR;
    i PLS_INTEGER DEFAULT 0;
    vRESULT BOOLEAN DEFAULT FALSE;
    vQUERY USER_SOURCE.TEXT%TYPE;
    BEGIN
    vQUERY := 'SELECT 1 FROM ' || iBV_NAME || ' WHERE ' || iPK_FIELD || ' = ' || iPK_VALUE;
    IF iSYS_TIME_STAMP IS NOT NULL AND iSYS_UPDATE_SEQ IS NOT NULL THEN
    vQUERY := vQUERY || ' AND SYS_TIME_STAMP = TO_DATE (''' || iSYS_TIME_STAMP || ''')
    AND SYS_UPDATE_SEQ = ' || iSYS_UPDATE_SEQ;
    END IF;
    IF iBV_NAME IS NOT NULL AND
    iPK_FIELD IS NOT NULL AND
    iPK_VALUE IS NOT NULL THEN
    OPEN CR FOR vQUERY;
    FETCH CR INTO i;
    vRESULT := CR%FOUND;
    CLOSE CR;
    END IF;
    RETURN vRESULT;
    EXCEPTION
    WHEN OTHERS THEN
    IF CR%ISOPEN THEN
    CLOSE CR;
    END IF;
    INSERT_ERROR_LOG_PRC ('CORE_PKG', 'ORACLE', SQLCODE, SQLERRM, 'RECORD_EXISTS_FNC');
    RETURN vRESULT;
    END RECORD_EXISTS_FNC;
    So the problem is when I call this function from let's say
    database DB2 (via db remote link and synonym) and I know exactly that record does exists (because I am selecting those SYS fields before pass them in) - I get the correct result TRUE. The other programmer (Patrick) calls this function within same DB2 database, within same UserID/password (obviously different session), running exactly the same testing code and gets result FALSE (record doesn't exist, but it does !) He tried to Logoff/Login again several times within several days and try to run it and still was getting FALSE !
    I tried to Logoff/Login again and I was getting mostly TRUE and sometimes FALSE too !!!
    I thought may be It has something to do with REF CURSOR that I use to build SQL on the fly, so I changed to NDS
    using EXECUTE IMMEDIATE statement - nothing changed.
    vQUERY := 'SELECT COUNT (1) FROM ' || iBV_NAME || ' WHERE ' || iPK_FIELD || ' = ' || iPK_VALUE;
    IF iSYS_TIME_STAMP IS NOT NULL AND iSYS_UPDATE_SEQ IS NOT NULL THEN
    vQUERY := vQUERY || ' AND SYS_TIME_STAMP = TO_DATE (''' || iSYS_TIME_STAMP || ''') AND SYS_UPDATE_SEQ = ' || iSYS_UPDATE_SEQ;
    END IF;
    EXECUTE IMMEDIATE vQUERY INTO i;
    vRESULT := NOT (i = 0);
    RETURN vRESULT;
    Interesting note : when Patrick doesn't pass SYS parameters (Time_stamp, Update_sequence), or passes NULLs - function always finds the record ! (Statement 2 below)
    May be it has to do with the way TO_DATE () function gets parsed in that dynamic SQL - I don't know ...
    Here's the test code :
    SET SERVEROUTPUT ON;
    DECLARE
    SYS_TIME DATE;
    SYS_SEQ NUMBER;
    bEXISTS BOOLEAN DEFAULT FALSE;
    BEGIN
    SELECT SYS_TIME_STAMP, SYS_UPDATE_SEQ INTO SYS_TIME, SYS_SEQ FROM LOCATION_BV WHERE PK = 1;
    bEXISTS := CORE_PKG.RECORD_EXISTS_FNC ('LOCATION_BV','PK',1, SYS_TIME, SYS_SEQ); -- STATEMENT 1
    --bEXISTS := CORE_PKG.RECORD_EXISTS_FNC ('LOCATION_BV','PK',1, NULL, NULL);        -- STATEMENT 2
    IF bEXISTS THEN
    DBMS_OUTPUT.PUT_LINE ('TRUE');
    ELSE
    DBMS_OUTPUT.PUT_LINE ('FALSE');
    END IF;
    END;
    I asked our DBA, he has no clue about this strange inconsistent results.
    I debugged line by line, extracted that generated SQL and ran it in same account - works fine !
    Does anyone knows or have clues or can help what's going on ???
    I don't know If this is bug in my code or strange memory behavior ?
    (Please let me know If anything unclear)
    Thanx a lot for your help and time !
    Steve K.

    see your other thread
    Bug in my code or strange memory behavior ?

  • Strange cropping activity from photoshop cs6 to lightroom 4.3

    i have never noticed the following activity:
    I edited, including cropping, an image in photoshop CS6. I saved the image as a tif and also as a psd. Both sent to a folder which exists in LR catalog. Both images were revealed in LR with the SYNCHRONIZE FOLDER command.
    Both images are shown in the appropriate folder, BUT BOTH ARE CROPPED MUCH MORE THAN was done in CS6 editing. Approx 1 inch has been removed along the left side (long dimension) of both images as compared to the dimensions in CS6. They happen to be sitting next to the original image in the LR catalog and it is easy to see the unwanted change. The route from CS6 to LR 4.3 was what I normally use.
    WHAR COULD HAVE CAUSED THE APPARENT ADDITIONAL CROPPING SEEN IN LR. Developing in LR crop does allow the image to be restore to proper dimensions by expanding the cropped edge.
    wonder if this makes any sense?
    I have probably set a switch wrong in LR but cannot find my error. Photoshop seems to have performed flawlsessly.
    I use iMac, i7, 10.8.2, 16GB ram.
    vince
    Message was edited by: vinsolo
    Message was edited by: vinsolo

    thank you cornelia, for your reply.
    I really have no workflow as I rarely do more than retouching of photos for others, each of which usually requires an irregular, often trial-by-error workflow. Most of these images are in very poor condition and are less than well photographed.
    The "future project" was really a shortcut to say that i suspected that my client cannot open PSD on her machine and I wanted to have tiffs available for her.
    I am afraid that i have not clearly described what i saw happen. And, it continues to occur with this single image after repeat tests of the same procedure. NONE of the other images in that folder, or any other image I have, responded in the way I attempted to describe. Probably user error-I guess I will never know!
    In any case, I am very grateful that your had the time to respond.
    vince

  • HELP! Odd behavior in Photoshop CS6. Anyone have a solution?

    Hi I am having really odd behavior in CS6. I have reset and cleared preferences. As you can see from the screenshot I have a rectangle shape layer but I have not assigned any shape layer effects to it.  PS is adding a black border on its own and I have no idea how to get rid of it. I have been using photoshop for 20 years and this is driving me nuts. I've never seen this behavior before. If I add a color overlay the line is still there. If I rasterize the shape layer then add a color overly  the outline disappears. But I don't want to raterize my shape layers. Anyone know how to get rid of it? Thank you in advance to anyone who might have a solution.

    You appear to be on Windows, so I couldn't help you anyway.
    But for the benefit of Photoshop Windows users, please consider the following:
    BOILERPLATE TEXT:
    Note that this is 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 (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    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,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    A screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    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!

  • Really Strange Powerbutton behavior

    Hi,
    I have searched the forums for a debugging hint quite a bit, but this is slightly different from the normal "macbook won't turn on" thread. So normally pressing the power button doesn't do anything. However, it usually does turn on when I hold the power-button with ctrlappleshift to reset power management or optionapple+pr to reset the PRAM.
    Now, I say usually because very rarely that doesn't work before I take out the battery and do the holding down the power button for a couple of seconds.
    Any ideas on how to further debug this? My guess is it would be something with the SMC or power management since I would think the success of the two combinations means that it is not the physical button. However, of course it could be totally random that it works when I hold down those combinations. Sometimes it takes up to 15 seconds even with those combinations to work, but I haven't succeeded in just holding down the power button by itself for that amount of time to have any effect.
    Could this be the backup-battery? The computer is about four years old. Any debugging tip is greatly appreciated.
    Best,
    David

    I have the same problem. This power issue came out of nowhere so to speak. I have tried many of the troubleshooting suggestions i.e., commandctrlpower for 3 seconds, the commandoption+pr key option to name a few. My battery is dead and it has not been replaced, so I use the power adaptor. Anyway, this power problem happened once before and after many attempts I got my computer to work, but now it seems that after many many tries, my computer will not turn on. I did add more memory to my computer, could that have something to do with my power troubles? Any help would be much appreciated. Sorry to kinda hijack your post netzwurm. Suggestions for netzwurm and I would be great!! Thank you.

  • Why does Photoshop CS6 "Recover" large files that were properly closed in previous sessions?

    I'm always fighting memory problems with Photoshop CS6, which I work in for 5 to 8 hours every day.  I have a 27" iMac with a 3.4GHz i7 processor, 32GB of RAM,
    AMD Radeon HD 6970M with 2GB Ram and over 1.5TB of available scratch disk space.  After working thru a couple of large images I have to start monitoring RAM use via Activity Monitor and reclaiming RAM via Terminal very often in order to continue working.
    I believe something strange is happening in the background because very often, when I start a new session, PS "recovers" a "large format document"... one that was properly closed in a previous session, and one that I have not asked PS to open.  I can't help but feel like my whole memory usage issue is tied to the system somehow holding onto those "large format documents".  Am I crazy?  Is there any kind of troubleshooting anyone can suggest?
    Thanks!
    Dave

    What version of O SX are you using?
    If your using lion or mountain lion you might see what the restore windows from previous sessions in the General>Preferences is set to:
    lion:
    1. Click System Preferences
    2. Select General
    3. Uncheck Restore windows when quitting and re-opening apps
    mountain lion
    1. Click System Preferences
    2. Select General
    3. Check Close windows when quitting an application

  • Photoshop CS6: ACR Local Adjustment Slider Settings Retained Even When Cancelling Out of ACR

    I've come across something in Photoshop CS6's ACR 7.2, which I don't think for a moment is a bug, but just what I would consider a slightly strange way of how Photoshop CS6 behaves:
    When working on an image in ACR, if you select one of the local adjustment tabs, such as Graduated Filter, and move any of the sliders on the right-hand side, any values you change will be retained if pressing 'Cancel', then opening the image again in ACR and selecting the same tab. I find this surprising, as I would have thought that by pressing 'Cancel', any adjusted settings, since opening the image on this occasion in ACR, would not be retained.
    Furthermore, if you open another image in ACR and select the same local adjustment tab, the same settings that you adjusted in the other image have identical slider settings in that image as well.
    I can see that this behaviour could be viewed as useful, i.e. when wanting to use the same local adjustment on multiple images, as any adjustment of the local adjustment's slider settings, on their own, will have no effect unless you actually perform the selected local adjustment to the image. But, as I say, I would have expected Photoshop to simply not retain any settings you have adjusted, since opening the image on this occasion in ACR, if you don't press 'Open Image' or 'Done', and simply press 'Cancel'.
    Does anyone have any thoughts about this?

    Clearly since those settings are not actually going into the image, but are just preparation for the next pin to be dropped by the local adjustment brush (or are further adjustments done on the last pin selected), Adobe didn't see fit to revert them on Cancel.
    That said, I have to agree; if I were to botch up a bunch of settings I had before and wanted to revert them all, the first thing that would come to my mind is to hit the [Cancel] button.
    I wonder if the disparity between the ways Apple and PC software typically interacts with the user could be at the heart of this...  On PC, adjustments in a dialog are generally "staged" until an [OK] button is hit, so of course [Cancel] throws them away - while on Apple adjustments are often (by convention?) stored permanently as soon as the control is released.
    -Noel

  • Un-Install Photoshop CS6/Re-Install

    I am starting to get some weird behavior in Photoshop CS6 the past couple weeks.
    I purchased my CS6 Design Suite Upgrade through the Adobe Store and it was a Download (vs CD set). Is there anything I can do?

    Perhaps before reinstalling you should try resetting your Photoshop preferences to defaults.
    Press and hold Control - Shift - Alt (or Command - Shift - Option) immediately upon cold-starting Photoshop.  If you're quick enough it will prompt you to confirm deletion of your current settings.
    Reinstalling will NOT reset these settings.
    -Noel

  • Photoshop cs6 error "Could not complete command because there is not enough memory (RAM)"

    Hi, I have a Macbook Pro and the Adobe Creative Suite 6, and all of my other adobe programs run smoothy with the exception of photoshop. For about the past year and a half now, I will very inconsistency receive the error message, "Could not complete ___ command because there is not enough memory (RAM)."  Sometimes this problem gets so bad that I am not even able to open my preferences.
    My computer seems as though it should have plenty of space to run photoshop, and I have taken my computer to a number of differed tech supports, but they have only been able to temporarily make the problem less severe for short periods until it acts up again and completely prevents me from using Photoshop. I recently updated to Yosemite and deinstalled/reinstalled photoshop, hoping that would fix things, but I still get the message almost any time I try to complete a command.
    Your help would be very much appreciated, thank you!
    Adobe Photoshop Version: 13.0.6 (13.0.6 20131025.r.54 2013/10/25:21:00:00) x64
    Operating System: Mac OS 10.10.2
    System architecture: Intel CPU Family:6, Model:42, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 2500 MHz
    Built-in memory: 4096 MB
    Free memory: 1913 MB
    Memory available to Photoshop: 3031 MB
    Memory used by Photoshop: 71 %
    Image tile size: 1024K
    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.
    OpenCL Version: 1.2 (Dec 14 2014 22:29:47)
    OpenGL Version: 2.1
    Video Rect Texture Size: 16384
    OpenGL Memory: 1010 MB
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: AMD Radeon HD 6770M OpenGL Engine
    Display: 1
    Main Display
    Display Depth: 32
    Display Bounds: top=0, left=0, bottom=1050, right=1680
    Video Renderer ID: 16915206
    Video Card Memory: 1024 MB
    Serial number: 92299584759663919723
    Application folder: /Applications/Adobe Photoshop CS6/
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Macintosh HD, 697.5G, 233.0G free
    Required Plug-ins folder: /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/
    Primary Plug-ins folder: /Applications/Adobe Photoshop CS6/Plug-ins/
    Additional Plug-ins folder: not set
    Installed components:
       adbeape.framework   adbeape   3.3.8.19346   66.1025012
       AdbeScriptUIFlex.framework   AdbeScriptUIFlex   6.2.29.18602   66.490082
       adobe_caps.framework   adobe_caps   6.0.29.0   1.276181
       AdobeACE.framework   AdobeACE   2.19.18.20743   66.507768
       AdobeAGM.framework   AdobeAGM   4.26.20.20743   66.507768
       AdobeAXE8SharedExpat.framework   AdobeAXE8SharedExpat   3.7.101.18636   66.26830
       AdobeAXEDOMCore.framework   AdobeAXEDOMCore   3.7.101.18636   66.26830
       AdobeBIB.framework   AdobeBIB   1.2.02.20743   66.507768
       AdobeBIBUtils.framework   AdobeBIBUtils   1.1.01   66.507768
       AdobeCoolType.framework   AdobeCoolType   5.10.33.20743   66.507768
       AdobeCrashReporter.framework   AdobeCrashReporter   6.0.20120720
       AdobeExtendScript.framework   AdobeExtendScript   4.2.12.18602   66.490082
       AdobeJP2K.framework   AdobeJP2K   2.0.0.18562   66.236923
       AdobeLinguistic.framework      17206
       AdobeMPS.framework   AdobeMPS   5.8.0.19463   66.495174
       AdobeOwl.framework   AdobeOwl   5.0.4   79.517869
       AdobePDFL.framework   AdobePDFL   10.0.1.18562   66.419471
       AdobePDFSettings.framework   AdobePDFSettings   1.4
       AdobePIP.framework   AdobePIP   7.0.0.1686
       AdobeScCore.framework   AdobeScCore   4.2.12.18602   66.490082
       AdobeUpdater.framework   AdobeUpdater   6.0.0.1452   "52.338651"
       AdobeXMP.framework   AdobeXMPCore   66.145661   66.145661
       AdobeXMPFiles.framework   AdobeXMPFiles   66.145661   66.145661
       AdobeXMPScript.framework   AdobeXMPScript   66.145661   66.145661
       ahclient.framework   ahclient   1.7.0.56
       aif_core.framework   AdobeAIF   3.0.00   62.490293
       aif_ocl.framework   AdobeAIF   3.0.00   62.490293
       aif_ogl.framework   AdobeAIF   3.0.00   62.490293
       AlignmentLib.framework   xcode   1.0.0.1
       amtlib.framework   amtlib   6.0.0.75
       boost_date_time.framework   boost_date_time   6.0.0.0
       boost_signals.framework   boost_signals   6.0.0.0
       boost_system.framework   boost_system   6.0.0.0
       boost_threads.framework   boost_threads   6.0.0.0
       Cg.framework   NVIDIA Cg  
       CIT.framework   CIT   2.1.0.20577   146758
       data_flow.framework   AdobeAIF   3.0.00   62.490293
       dvaaudiodevice.framework   dvaaudiodevice   6.0.0.0
       dvacore.framework   dvacore   6.0.0.0
       dvamarshal.framework   dvamarshal   6.0.0.0
       dvamediatypes.framework   dvamediatypes   6.0.0.0
       dvaplayer.framework   dvaplayer   6.0.0.0
       dvatransport.framework   dvatransport   6.0.0.0
       dvaunittesting.framework   dvaunittesting   6.0.0.0
       dynamiclink.framework   dynamiclink   6.0.0.0
       FileInfo.framework   FileInfo   66.145433   66.145433
       filter_graph.framework   AdobeAIF   3.0.00   62.490293
       hydra_filters.framework   AdobeAIF   3.0.00   62.490293
       ICUConverter.framework   ICUConverter   3.61   "gtlib_3.0" "." "16615"
       ICUData.framework   ICUData   3.61   "gtlib_3.0" "." "16615"
       image_compiler.framework   AdobeAIF   3.0.00   62.490293
       image_flow.framework   AdobeAIF   3.0.00   62.490293
       image_runtime.framework   AdobeAIF   3.0.00   62.490293
       LogSession.framework   LogSession   2.1.2.1681
       mediacoreif.framework   mediacoreif   6.0.0.0
       PlugPlug.framework   PlugPlug   3.0.0.383
       UpdaterNotifications.framework   UpdaterNotifications   6.0.0.24   "6.0.0.24"
       wrservices.framework     
    Required plug-ins:
       3D Studio 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Accented Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Adaptive Wide Angle 13.0, Copyright © 2012 Adobe Systems Incorporated - from the file “Adaptive Wide Angle.plugin”
       Angled Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Average 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Average.plugin”
       Bas Relief 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       BMP 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Camera Raw 8.7.1 (311), Copyright © 2014 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Camera Raw Filter 8.7.1 (311), Copyright © 2014 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Chalk & Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Chrome 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Cineon 13.0.6 x001  ©2002-2013 Adobe Systems Incorporated - from the file “Cineon.plugin”
       Clouds 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Collada DAE 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Color Halftone 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Colored Pencil 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       CompuServe GIF 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Conté Crayon 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Craquelure 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crop and Straighten Photos 13.0.6 x001  ©2003-2013 Adobe Systems Incorporated - from the file “CropPhotosAuto.plugin”
       Crop and Straighten Photos Filter 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Crosshatch 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crystallize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Cutout 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Dark Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       De-Interlace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dicom 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “dicom.plugin”
       Difference Clouds 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Diffuse Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Displace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dry Brush 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Eazel Acquire 13.0.6 x001  ©1997-2013 Adobe Systems Incorporated - from the file “EazelAcquire.plugin”
       Embed Watermark NO VERSION - from the file “DigiSign.plugin”
       Entropy 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Extrude 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       FastCore Routines 13.0.6 x001  ©1990-2013 Adobe Systems Incorporated - from the file “FastCore.plugin”
       Fibers 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Film Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Filter Gallery 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Flash 3D 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Fresco 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glowing Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Google Earth 4 KMZ 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Graphic Pen 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Halftone Pattern 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       HDRMergeUI 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “HDRMergeUI.plugin”
       IFF Format 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Ink Outlines 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       JPEG 2000 13.0.6 x001  ©2001-2013 Adobe Systems Incorporated - from the file “JPEG2000.plugin”
       Kurtosis 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Lens Blur 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Blur.plugin”
       Lens Correction 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Correct.plugin”
       Lens Flare 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Liquify 13.0, Copyright © 2001-2012 Adobe Systems Incorporated - from the file “Liquify.plugin”
       Matlab Operation 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Maximum 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mean 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Measurement Core 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “MeasurementCore.plugin”
       Median 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mezzotint 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Minimum 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       MMXCore Routines 13.0.6 x001  ©1990-2013 Adobe Systems Incorporated - from the file “MMXCore.plugin”
       Mosaic Tiles 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Multiprocessor Support 13.0.6 x001  ©1990-2013 Adobe Systems Incorporated - from the file “MultiProcessor Support.plugin”
       Neon Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Note Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       NTSC Colors 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “NTSC Colors.plugin”
       Ocean Ripple 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Oil Paint 13.0, Copyright © 2011 Adobe Systems Incorporated - from the file “Oil Paint.plugin”
       OpenEXR 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Paint Daubs 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Palette Knife 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Patchwork 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Paths to Illustrator 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       PCX 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “PCX.plugin”
       Photocopy 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Photoshop 3D Engine 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “Photoshop3DEngine.plugin”
       Picture Package Filter 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Pinch 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pixar 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “Pixar.plugin”
       Plaster 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Plastic Wrap 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       PNG 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pointillize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Polar Coordinates 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Portable Bit Map 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “PBM.plugin”
       Poster Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Radial Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Radiance 13.0.6 x001  ©2003-2013 Adobe Systems Incorporated - from the file “Radiance.plugin”
       Range 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Read Watermark NO VERSION - from the file “DigiRead.plugin”
       Reticulation 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Ripple 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Rough Pastels 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Save for Web 13.0, Copyright © 1999-2012 Adobe Systems Incorporated - from the file “Save for Web.plugin”
       ScriptingSupport 13.0, Copyright © 2013 Adobe Systems Incorporated - from the file “ScriptingSupport.plugin”
       Shear 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Skewness 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Smart Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Smudge Stick 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Solarize 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Solarize.plugin”
       Spatter 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Spherize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Sponge 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Sprayed Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stained Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stamp 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Standard Deviation 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       STL 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Sumi-e 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Summation 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Targa 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Texturizer 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Tiles 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Torn Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Twirl 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Underpainting 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Vanishing Point 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “VanishingPoint.plugin”
       Variance 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Water Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Watercolor 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Wave 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wavefront|OBJ 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Wind 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wireless Bitmap 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “WBMP.plugin”
       ZigZag 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash: NONE
    Installed TWAIN devices: NONE

    Benjamin Root Photography wrote:
    Trevor.Dennis wrote:
    2166Mb really isn't enough for recent versions of Photoshop.
    Hey! Don't knock my system, Trevor.Dennis: Processor speed: 3492 MHz,
    Benjamin
    3.5Mhz?  Do they even make processors that slow?
    I'm trying to think back through Photoshop versions, but IIRC it became hungry for RAM with CS5, but it might even have been CS4.  But certainly from CS5 onwards a 32 bit system was going to be severely compromised with its 3.5Gb RAM limit, of which Photoshop could access only a bit over 2Gb.  You might remember the 4Gb switch that let you use a bit more of your 4Gb of installed RAM.  That worked OK with XP but was still flakey, and third party plugins used to fall over all the time through lack of RAM — at least Photoshop has a Scratch drive.
    So nowadays you can forget trying to use Photoshop on 32bit hardware.  You need 64 bit and at least 8Gb RAM.  So like I said, the OP needs to look deeper into the 'apparent' over heating issue, and put that other 4Gb back in.  I can't even conceive of why a person would cripple their system by removing RAM. _Especially_ when it leaves just 4Gb

  • Photoshop CS6 won't launch and when it does it's really slow...help?

    Hi,
    So my copy of Photoshop CS6 sometimes won't launch and when it does manage to launch fully, it's really slow. I mean ridiculously slow. The only times when I can get it to run even remotely quick is if I shut down my computer, and then restart it and then start up Photoshop CS6 as the first program. Even then it slows down after a while. (And I only have a firefox browser open usually, never more than a couple of tabs at once, so it's not a bandwidth issue)
    Here are my comp specs:
    Samsung
    Processor:
    AMD A6-3420M APU with
    Radeon (Tm) HD graphics 1.50 ghz
    Installed Memory (RAM) - 4.00 (3.48 usable)
    64 Bit operating System running on Windows 7 home premium, service pack 1
    I also did just recently install the new update Adobe had for Photoshop, so that's up to date.
    It's getting really frustrating! I have another program I'm using in the meantime (Paint tool Sai), but I'd really like to use Photoshop CS6.....
    Any help would be greatly appreciated!

    Make sure you updated the drivers from AMD's website, not Microsoft.
    Make sure you are running the 64 bit version of Photoshop, not 32 bit.
    Disable all third party plugins, and try disabling system utilities (we've seen font managers, antivirus, disk backup software, etc. cause slowdowns due to bugs in those utilities).

  • Not enough Ram memory and cannot save due to a program error in photoshop cs6

    Hi, I'm currently a beginner at photoshop cs6, and I've been using it since december last year, mostly to draw stuff and it has worked fine with few to no errors at all.
    However, recently when I've been drawing, the same message keeps popping up over and over again "Can't use (tool) due to the computer not having enough ram" followed by either "cannot save due to program error" or, it just simply crashes.
    This is obviously a something that worries me A LOT since at first, I thought that it was just a small error, but recently, it's been like this for several day s and I've been forced to re-start the computer (and photoshop) countless times... It really slows down my working progress and is VERY annoying to deal with.
    As a beginner though, I don't really know how to fix this. I've been trying to look up some answers on this site, but I've just not found any answer yet...
    I'm currently using photoshop cs6 that's up to date and I've got lots of memory left on my computer, so, I'm wondering. What exactly is the cause of this problem, and how can I fix it? Please answer as fast as you can.. I'm getting a bit desperate...
    Oh, in case you're wondering, they're all saved as PSD files and every single one of them has about 15+ layers on them.

    It would help if you could list a few things:
    1. Your operating system
    2. How much physical RAM do you actually have in your machine?
    3. Under Preferences > Performance, have you allocated "Scratch Disk(s)"?
    4. Also under Preferences > Performance > Memory Usage, what is the "Ideal Range" listed there, and what % is "Let Photoshop Use"?

  • Photoshop CS6 memory leak when idle and nothing open

    Photoshop CS6 runs away with memory after being used and then going idle. If I open up PS and leave it, it will be ok but as soon as I open any file it will go up in memory usage (which is normal) but when I close all files and hide PS the memory will stay high never goes back down. When I close PS and re-open (no files open) again it idles at 300Mb memory but when I open a file then close it and then hide/idle PS it raises and stays around 1.25-1.5 GB if not more.
    I have tried to Purge All, and even hide all menus to no avail. I have even tried to close Suitcase (eleminiate any font issues) and still same problem. I am running PS bone stock, no extra plug-ins. 
    Any ideas on why it would be doing this would be greatly appreciated!
    My Computer:
    Photoshop 13.0.1
    MacBookPro
    OS 10.6.8
    CPU: 2.66 GHz Intel Core 2 Duo
    Mem: 4 GB 1067 MHz DDR3
    HD: 300GB (30GB Free)

    Photoshop is not supposed to free memory when you close documents -- that's normal, because the memory gets reused.
    Yes, opening a file makes the memory usage go up - because space is needed for the document and it's window.
    None of what you said describes a leak, and sounds like perfectly normal behavior.

  • Photoshop cs6 "could not complete command because there is not enough memory (RAM)"

    Hi, I have a Macbook Pro and the Adobe Creative Suite 6, and all of my other adobe programs run smoothy with the exception of photoshop. For about the past year and a half now, I will very inconsistency receive the error message, "Could not complete ___ command because there is not enough memory (RAM)."  Sometimes this problem gets so bad that I am not even able to open my preferences.
    My computer seems as though it should have plenty of space to run photoshop, and I have taken my computer to a number of differed tech supports, but they have only been able to temporarily make the problem less severe for short periods until it acts up again and completely prevents me from using Photoshop. I recently updated to Yosemite and deinstalled/reinstalled photoshop, hoping that would fix things, but I still get the message almost any time I try to complete a command.
    Your help would be very much appreciated, thank you!
    Adobe Photoshop Version: 13.0.6 (13.0.6 20131025.r.54 2013/10/25:21:00:00) x64
    Operating System: Mac OS 10.10.2
    System architecture: Intel CPU Family:6, Model:42, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 2500 MHz
    Built-in memory: 4096 MB
    Free memory: 1913 MB
    Memory available to Photoshop: 3031 MB
    Memory used by Photoshop: 71 %
    Image tile size: 1024K
    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.
    OpenCL Version: 1.2 (Dec 14 2014 22:29:47)
    OpenGL Version: 2.1
    Video Rect Texture Size: 16384
    OpenGL Memory: 1010 MB
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: AMD Radeon HD 6770M OpenGL Engine
    Display: 1
    Main Display
    Display Depth: 32
    Display Bounds: top=0, left=0, bottom=1050, right=1680
    Video Renderer ID: 16915206
    Video Card Memory: 1024 MB
    Serial number: 92299584759663919723
    Application folder: /Applications/Adobe Photoshop CS6/
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Macintosh HD, 697.5G, 233.0G free
    Required Plug-ins folder: /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/
    Primary Plug-ins folder: /Applications/Adobe Photoshop CS6/Plug-ins/
    Additional Plug-ins folder: not set
    Installed components:
       adbeape.framework   adbeape   3.3.8.19346   66.1025012
       AdbeScriptUIFlex.framework   AdbeScriptUIFlex   6.2.29.18602   66.490082
       adobe_caps.framework   adobe_caps   6.0.29.0   1.276181
       AdobeACE.framework   AdobeACE   2.19.18.20743   66.507768
       AdobeAGM.framework   AdobeAGM   4.26.20.20743   66.507768
       AdobeAXE8SharedExpat.framework   AdobeAXE8SharedExpat   3.7.101.18636   66.26830
       AdobeAXEDOMCore.framework   AdobeAXEDOMCore   3.7.101.18636   66.26830
       AdobeBIB.framework   AdobeBIB   1.2.02.20743   66.507768
       AdobeBIBUtils.framework   AdobeBIBUtils   1.1.01   66.507768
       AdobeCoolType.framework   AdobeCoolType   5.10.33.20743   66.507768
       AdobeCrashReporter.framework   AdobeCrashReporter   6.0.20120720
       AdobeExtendScript.framework   AdobeExtendScript   4.2.12.18602   66.490082
       AdobeJP2K.framework   AdobeJP2K   2.0.0.18562   66.236923
       AdobeLinguistic.framework      17206
       AdobeMPS.framework   AdobeMPS   5.8.0.19463   66.495174
       AdobeOwl.framework   AdobeOwl   5.0.4   79.517869
       AdobePDFL.framework   AdobePDFL   10.0.1.18562   66.419471
       AdobePDFSettings.framework   AdobePDFSettings   1.4
       AdobePIP.framework   AdobePIP   7.0.0.1686
       AdobeScCore.framework   AdobeScCore   4.2.12.18602   66.490082
       AdobeUpdater.framework   AdobeUpdater   6.0.0.1452   "52.338651"
       AdobeXMP.framework   AdobeXMPCore   66.145661   66.145661
       AdobeXMPFiles.framework   AdobeXMPFiles   66.145661   66.145661
       AdobeXMPScript.framework   AdobeXMPScript   66.145661   66.145661
       ahclient.framework   ahclient   1.7.0.56
       aif_core.framework   AdobeAIF   3.0.00   62.490293
       aif_ocl.framework   AdobeAIF   3.0.00   62.490293
       aif_ogl.framework   AdobeAIF   3.0.00   62.490293
       AlignmentLib.framework   xcode   1.0.0.1
       amtlib.framework   amtlib   6.0.0.75
       boost_date_time.framework   boost_date_time   6.0.0.0
       boost_signals.framework   boost_signals   6.0.0.0
       boost_system.framework   boost_system   6.0.0.0
       boost_threads.framework   boost_threads   6.0.0.0
       Cg.framework   NVIDIA Cg   
       CIT.framework   CIT   2.1.0.20577   146758
       data_flow.framework   AdobeAIF   3.0.00   62.490293
       dvaaudiodevice.framework   dvaaudiodevice   6.0.0.0
       dvacore.framework   dvacore   6.0.0.0
       dvamarshal.framework   dvamarshal   6.0.0.0
       dvamediatypes.framework   dvamediatypes   6.0.0.0
       dvaplayer.framework   dvaplayer   6.0.0.0
       dvatransport.framework   dvatransport   6.0.0.0
       dvaunittesting.framework   dvaunittesting   6.0.0.0
       dynamiclink.framework   dynamiclink   6.0.0.0
       FileInfo.framework   FileInfo   66.145433   66.145433
       filter_graph.framework   AdobeAIF   3.0.00   62.490293
       hydra_filters.framework   AdobeAIF   3.0.00   62.490293
       ICUConverter.framework   ICUConverter   3.61   "gtlib_3.0" "." "16615"
       ICUData.framework   ICUData   3.61   "gtlib_3.0" "." "16615"
       image_compiler.framework   AdobeAIF   3.0.00   62.490293
       image_flow.framework   AdobeAIF   3.0.00   62.490293
       image_runtime.framework   AdobeAIF   3.0.00   62.490293
       LogSession.framework   LogSession   2.1.2.1681
       mediacoreif.framework   mediacoreif   6.0.0.0
       PlugPlug.framework   PlugPlug   3.0.0.383
       UpdaterNotifications.framework   UpdaterNotifications   6.0.0.24   "6.0.0.24"
       wrservices.framework      
    Required plug-ins:
       3D Studio 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Accented Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Adaptive Wide Angle 13.0, Copyright © 2012 Adobe Systems Incorporated - from the file “Adaptive Wide Angle.plugin”
       Angled Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Average 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Average.plugin”
       Bas Relief 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       BMP 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Camera Raw 8.7.1 (311), Copyright © 2014 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Camera Raw Filter 8.7.1 (311), Copyright © 2014 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Chalk & Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Chrome 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Cineon 13.0.6 x001  ©2002-2013 Adobe Systems Incorporated - from the file “Cineon.plugin”
       Clouds 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Collada DAE 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Color Halftone 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Colored Pencil 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       CompuServe GIF 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Conté Crayon 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Craquelure 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crop and Straighten Photos 13.0.6 x001  ©2003-2013 Adobe Systems Incorporated - from the file “CropPhotosAuto.plugin”
       Crop and Straighten Photos Filter 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Crosshatch 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crystallize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Cutout 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Dark Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       De-Interlace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dicom 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “dicom.plugin”
       Difference Clouds 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Diffuse Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Displace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dry Brush 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Eazel Acquire 13.0.6 x001  ©1997-2013 Adobe Systems Incorporated - from the file “EazelAcquire.plugin”
       Embed Watermark NO VERSION - from the file “DigiSign.plugin”
       Entropy 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Extrude 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       FastCore Routines 13.0.6 x001  ©1990-2013 Adobe Systems Incorporated - from the file “FastCore.plugin”
       Fibers 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Film Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Filter Gallery 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Flash 3D 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Fresco 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glowing Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Google Earth 4 KMZ 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Graphic Pen 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Halftone Pattern 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       HDRMergeUI 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “HDRMergeUI.plugin”
       IFF Format 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Ink Outlines 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       JPEG 2000 13.0.6 x001  ©2001-2013 Adobe Systems Incorporated - from the file “JPEG2000.plugin”
       Kurtosis 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Lens Blur 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Blur.plugin”
       Lens Correction 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Correct.plugin”
       Lens Flare 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Liquify 13.0, Copyright © 2001-2012 Adobe Systems Incorporated - from the file “Liquify.plugin”
       Matlab Operation 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Maximum 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mean 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Measurement Core 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “MeasurementCore.plugin”
       Median 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mezzotint 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Minimum 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       MMXCore Routines 13.0.6 x001  ©1990-2013 Adobe Systems Incorporated - from the file “MMXCore.plugin”
       Mosaic Tiles 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Multiprocessor Support 13.0.6 x001  ©1990-2013 Adobe Systems Incorporated - from the file “MultiProcessor Support.plugin”
       Neon Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Note Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       NTSC Colors 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “NTSC Colors.plugin”
       Ocean Ripple 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Oil Paint 13.0, Copyright © 2011 Adobe Systems Incorporated - from the file “Oil Paint.plugin”
       OpenEXR 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Paint Daubs 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Palette Knife 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Patchwork 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Paths to Illustrator 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       PCX 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “PCX.plugin”
       Photocopy 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Photoshop 3D Engine 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “Photoshop3DEngine.plugin”
       Picture Package Filter 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Pinch 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pixar 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “Pixar.plugin”
       Plaster 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Plastic Wrap 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       PNG 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pointillize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Polar Coordinates 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Portable Bit Map 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “PBM.plugin”
       Poster Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Radial Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Radiance 13.0.6 x001  ©2003-2013 Adobe Systems Incorporated - from the file “Radiance.plugin”
       Range 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Read Watermark NO VERSION - from the file “DigiRead.plugin”
       Reticulation 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Ripple 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Rough Pastels 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Save for Web 13.0, Copyright © 1999-2012 Adobe Systems Incorporated - from the file “Save for Web.plugin”
       ScriptingSupport 13.0, Copyright © 2013 Adobe Systems Incorporated - from the file “ScriptingSupport.plugin”
       Shear 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Skewness 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Smart Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Smudge Stick 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Solarize 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Solarize.plugin”
       Spatter 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Spherize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Sponge 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Sprayed Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stained Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stamp 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Standard Deviation 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       STL 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Sumi-e 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Summation 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Targa 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Texturizer 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Tiles 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Torn Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Twirl 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Underpainting 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Vanishing Point 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “VanishingPoint.plugin”
       Variance 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Water Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Watercolor 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Wave 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wavefront|OBJ 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Wind 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wireless Bitmap 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “WBMP.plugin”
       ZigZag 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash: NONE
    Installed TWAIN devices: NONE

    Benjamin Root Photography wrote:
    Trevor.Dennis wrote:
    2166Mb really isn't enough for recent versions of Photoshop.
    Hey! Don't knock my system, Trevor.Dennis: Processor speed: 3492 MHz,
    Benjamin
    3.5Mhz?  Do they even make processors that slow?
    I'm trying to think back through Photoshop versions, but IIRC it became hungry for RAM with CS5, but it might even have been CS4.  But certainly from CS5 onwards a 32 bit system was going to be severely compromised with its 3.5Gb RAM limit, of which Photoshop could access only a bit over 2Gb.  You might remember the 4Gb switch that let you use a bit more of your 4Gb of installed RAM.  That worked OK with XP but was still flakey, and third party plugins used to fall over all the time through lack of RAM — at least Photoshop has a Scratch drive.
    So nowadays you can forget trying to use Photoshop on 32bit hardware.  You need 64 bit and at least 8Gb RAM.  So like I said, the OP needs to look deeper into the 'apparent' over heating issue, and put that other 4Gb back in.  I can't even conceive of why a person would cripple their system by removing RAM. _Especially_ when it leaves just 4Gb

  • Photoshop CS6 Extended Slow Load ("Measuring Memory...")

    Hi guys!
    Sorry English is not my native language.
    I am run Photoshop CS6 Extended 64-bit (from design premium) on Windows 7, 64-bit with 8GB RAM.
    When I first start PS, it looks like it freeze on the text "Measuring Memory". If I wait for about 30 seconds, it will eventually load and everything works fine. No issues with Save for Web or anything.
    I have read the other threads on this and tried all of these solutions:
    Checked my ram in memtest (15 passes, no error)
    Trash preferences and open again
    Un-install and re-install (tried twice)
    Updated PS to latest with Adobe Update
    Reboot machine
    This happen when I first run Windows, so lack of RAM is not the issue. I have no printers, other hard drive, or remote network drive attached to machine. Scratched disk is set to the boot disk (C:\)
    If it help, Illustrator CS6 and InDesign CS6 load normally.
    Do you have any suggestions to fix this? Thank you!
    Richard Montouchet

    Congratulations on having such a huge amount of memory that it takes 30 seconds to measure it all!    Just kidding - sorry.
    You've done all the things a reasonable person would do...  Some other things I might suggest are:
    1.  Check to ensure your display driver is up to date - go to the web site of the maker of your video card, not Microsoft. 
    2.  Try disabling the Use Graphics Processor setting in Edit - Preferences - Performance, and restart Photoshop.
    3.  Remove any 3rd party plug-ins (reinstall won't remove plug-ins, so I thought I'd mention it).
    4.  Check to see if you have the same behavior with the 32 bit Photoshop as the 64 bit Photoshop.
    -Noel

  • Al ejecutar adobe photoshop cs6 extended me aparece un mensaje de no se ha podido abrir un archivo de memoria virtual por que el archivo esta bloqueado y no se ejecuta la aplicacion

    Al ejecutar adobe photoshop cs6 extended me aparece un mensaje de no se ha podido abrir un archivo de memoria virtual por que el archivo esta bloqueado y no se ejecuta la aplicacion

    Are you able to get to the Performance preferences?  If so, check to make sure your Scratch Disk settings are valid for your current system configuration.
    It's possible you may need to reset your Photoshop preferences to defaults to restore operation.  This is how:
    Press and hold Control - Shift - Alt simultaneously (or Command - Shift - Option if on a Mac) immediately upon cold-starting Photoshop. If you get the keys down quickly enough - and you have to be really quick - it will prompt you to confirm deletion of your current preferences, which will lead to the establishment of a fresh default set. If it does not prompt you, you haven't been quick enough to get the keys down.
    -Noel

Maybe you are looking for

  • Since upgrading to 10.6.8, I can't sync to my calculator and my ipod nano flashes yellow.   Could 10.6.8 have closed some ports needed?

    I have a TI-92+ calculator, and the TI Connect software to sync it. Since the 10.6.8 update, I can't access the calculator to add software. The cable reads as present in System Profiler. Also, my iPod Nano is flashing yellow but not mounting in iTune

  • Dynamic action for IT0015 & IT0014

    Hello All, I want to create a dynamic action for the following scenario: Whenever employee is moved form Payroll area 99 to any other payroll area then IT0015 & IT0014 will be created with the date as effective date (not system current date). I.e if

  • Recursive tables (grouping items)

    I have a requirement to allow Users to create groups of items and groups of groups of items( via web interface). [Any item can fall under any number of groups and any group can fall within any number of groups] I planned to use 2 recursive tables, bu

  • Korean language issue in XI

    Hello y'all, In our file> XI> R/3 scenario, we found the local language coming in through our sender FTP adapter gets garbled. On further analysis, we found in SMLT that Korean package was not imported. We are looking at lang. disc to import the lang

  • Cursor and wa_t_data question (extractor)

    Hi ABAP-meisters, I have a coding question for a generic extractor I am making. The code below uses a cursor to read from table /bic/al_itm1c00 OPEN CURSOR WITH HOLD s_cursor FOR       SELECT *       FROM /bic/al_itm1c00               WHERE /bic/l_lo