Photoshop :: Does Not Release Memory After Closing Document?

May 27, 2012

When I close a large document Photoshop does not release the memory. If I open another document the program is slow and not resposive. If I close out of Photoshop and restart it then load the other document it is quick and responsive again.

View 12 Replies


ADVERTISEMENT

CorelDRAW X6 :: Won't Release Memory After Files Are Closed

Apr 5, 2013

The memory the program is using balloons over time because it does not release memory after you close files.  In the course of a day, the memory the program uses gets into the 8-10 GB range (we have very large files such as vehicle wraps and large full color signage).  The program will start and occupy under 100mb of memory and then when you open a file it will allocate the memory for that file (say 1 GB).  Then when you close that file, the memory isn't released or even re-addressed (it just seems to be in limbo at that point).  So after 2 dozen or so files the memory the app is taking up gets into the multi-gigabyte range....even without a single file open (the app is running with no open documents).

Now the system I am running has 12GB of ram, so I am not running out of memory yet, but it is still quite alarming to look and see only 2 GB of ram free on a 12GB system with no open files...

I cannot imagine why the programmers wouldn't have the app release the memory it's using.  That seems like really sloppy coding to me.  (programming 101: when your app is done with memory, release it.).

The system configuration is as follows:

Core i7 980X 3.33Ghz (6 physical cores with hyperthreading), 12 GB RAM, 4-way RAID-0 SSD HDD array, Windows 7 64-bit, Corel Suite x6 (updated to 6.3).

View 14 Replies View Related

AutoCAD Inventor :: API - How To Release Document Object Correctly

Mar 27, 2012

I have made a VB.Net Add-In for Inventor 2011, in a few functions it opens one or more files or sets a reference to already opened files. The release of the resource to this documents seems to be the problem.

In PDM (Productstream Pro) we want to change document states and there for the documents have to be closed in Inventor. When using some Add-In functions prior to the state change in PDM, we get a message from PDM that Inventor still has the files open but inventor does not show any open files (of course we can not see files that were opened in the background).

Only manual operation to solve this is to close inventor or open the drawing and the part used on the drawing and close them top down (drawing first, then part).

I'm stuck with open files that don't seem to be open.I think this is because the add-in sets a reference to the part used on the drawing and then changes something in the drawing.How do I release the resources correctly?

View 2 Replies View Related

AutoCAD Inventor :: 2011 Add-In - How To Release Document Object Correctly

Jan 26, 2012

I've created a Inventor 2011 Add-In using VB.Net with VS2008.

This add-in does all kinds of things, but it will not release some documents.

Well I don't know that for shure but it looks like that.

We use Productstream Pro and when changing state of a document it says the document is in use while there are no documents visibly open in Inventor. This only occures when I use my add-in.

Exact steps: Load drawing document from PSPPerform action with add-in which gets a custom iProperty from the Part file used on the Drawing and fills the display name of the Drawing with itSave the drawingClose the drawingIn PSP try to change state of the part file used on the drawingGet message from PSP stating the part is in use
 
In my code I've tried some things to prevent this behavior but non of them work.

I've tried:
Setting unused objects to "= Nothing"Releasing objects using "Marshal.ReleaseComObject(obj)"Calling "m_inventorApplication.CloseAllUnreferencedDocs()" and "System.GC.Collect()" on the "m_appEvents_OnTerminateDocument" event.

View 2 Replies View Related

Photoshop :: Workspace After Closing A Document

Nov 11, 2012

In Photoshop Extended CS6, when closing a document, once the document has closed you are now left with a great big empty workspace, which also has to be closed to remove it from the screen - and it won;t close with a keyboard shortcut, it has to be closed by the mouse. Is there a way to either close this empty workspace by keyboard shortcut or to not have it appear once a document is closed?

View 1 Replies View Related

AutoCAD 2013 :: How To Clear UNDO Or Layout Memory Without Closing And Reloading The File

Feb 26, 2013

Say I have a model and some layouts in a file.

I open the file to the model. My RAM usage is about 33%. Next, I open the first layout and my usage climbs to 43%. I open the second layout and my usage climbs to 52%. I open the third layout and my usage climbs to 62%.

I can go back and view the layouts already opened marginally faster then when first opening them, and my RAM usage will not increase.

If I continue to open new layouts, my computer will spend all its RAM holding these and freeze. My computer will suspend graphical processing and be forced to run on sips of RAM until all active commands are finished. But RAM usage will never decrease.

I have been working with my Windows Task Manager open in the corner, watching this happen. This way, I can save and close the file to clear the RAM and then proceed to reload the file and continue working on my file with 34 layouts.

I do not know if it is a function of storing the UNDO functions, or just how the program is designed, but this is a problem for me.

QUESTION

Is there a way to clear the UNDO or layout memory without closing and reloading the file? I do not have to close AutoCAD - just the file.

ATTACHEMENT

The attachement is a screenshot of my Task Manager.

I started with TM, browser, and AutoCAD open (I had already started writing this post)

I opened the file to the model.

Opened up 6 layouts (you can see the bumps)

Saved (you can see the tiny rise)

Closed the file, but not AutoCAD (precipitous drop ;] )

Lastly, I reloaded the file.

Windows 7 64bit w/ 64bit AutoCAD 2013

View 2 Replies View Related

AutoCAD .NET :: Closing Default Opened Document After Net Loading DLL

May 31, 2013

Context : AutoCAD Map 3D 2013Visual Studio 2010.NET 4.0, C#, WPFFDOOracle DataStore

Requirement : When I start AutoCAD Map 2013, a default document called "Drawing1.dwg" is opened. I use the command NETLOAD to load my assemblies. Final Users don't NETLOAD, an entry in the registry does the job automatically. During Initialization, my application downloads from the database a Template DWT file to initiate automatically the connection to the DataSource, and shows the different layers and styles configured by the customer. A new drawing based on this DWT is then generated.

However, the first default document remains opened. It can be sometimes annoying for the user to have both documents opened. I've never found a nice solution to close this first default document.

My technical implementation, not working :

In the Initialize method coming from IExtensionApplication, I start my application (loading business classes, user interfaces, etc...). Once started, I download the DWT, and add a new Document to the DocumentCollection (Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager). To this new Document, I handle many events such as CommandWillStart, CommandEnded, CommandFailed, etc... At this time, my Application asks to the user to log in. And finally, I browse the whole DocumentCollection to try to close all documents that are not the new one based on the DWT.

DocumentCollection doc_coll = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager; _kleverageDocument = doc_coll.Add(dwtFilePath);
if (_kleverageDocument != null) {
_kleverageDocument.ImpliedSelectionChanged += new EventHandler(doc_ImpliedSelectionChanged); _kleverageDocument.CommandWillStart += new CommandEventHandler(doc_CommandWillStart);

[Code] ....

When I call the CloseAndDiscard method for each of the other Documents, I always get an Exception telling me that the document is currently drawing. Actually, the command "NETLOAD" is stil running. How can I do ? I tried another way, by using handled events on DocumentManager

Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.DocumentActivationChanged += DocumentManager_DocumentActivationChanged; Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.DocumentBecameCurrent += DocumentManager_DocumentBecameCurrent;

View 2 Replies View Related

CorelDRAW Graphics Suite X3 :: Saving Files With Big Memory Instead Of Small Memory?

May 6, 2011

I am using corel x3 a long time but never, never had this kind of problem. When i work in corel enviorenment after i have finished my work i go to save my work. But then is the problem It Saves the file with Large Memory on it. let's say if the file normally would be 200 K, now it saves with 3 MB. And if i import some other files in my work then the saved file will be even bigger. If i Delete the files that were imported The Saved File will be Again the same SIZE !  Even if a take one part of the file, let's say if i import only one small text and put it in another file and save it like that, the saved file will be 2 MB. I had a lots of problems, i had saved files on this way with 23-24 MB and when i open them it takes like forever. When you look that file in corel it has nohing in it, absolutely nothing that should be 24 MB. But all of my important work is in that files how to make all things back to normal again,

View 9 Replies View Related

CorelDRAW Graphics Suite X5 :: High Memory Usage And Out Of Memory Error

Nov 4, 2011

I do have problem with my newly installed CorelDraw X5. Before X5 we used Corel 12 in our company.

I have project file (150 MB) with lots of text, bitmaps, vectors - about 100 pages. File opens but I can't save it. I always get OUT OF MEMORY error. I even tried to divide this file into 2 smaller parts but still doesn't work.

What I noticed - Corel X5 after clean start (without opened project) takes about 80MB of RAM in task manager. When I open project usage changes from 80MB to 1,2GB. While saving it takes 1,6GB of RAM and it crashes.

To compare - Corel 12 and after opening same project file Corel 12 takes much less of memory - about 770MB and it works without problem. 

Where from comes this memory usage difference?

My PC:

Windows 7 - 32bit

4GB of RAM

Intel Core2Duo 2 x 3.0GHz

700GB free space on drive C:

View 16 Replies View Related

Photoshop :: CS4 Does Not Release RAM

Feb 15, 2009

I run Photoshop CS4 on a Windows PC with 4GB. Even though I frequently
"purge", Photoshop does not seem to be releasing RAM even when all files
have been closed, often holding on to some 2GB RAM. Only when I terminate
Photoshop, the RAM it grabbed is released. This means I would have to exit
and relaunch Photoshop many times a day.

View 10 Replies View Related

Photoshop :: Sliders Getting Stuck To Mouse After Release (Mac OS)

Jan 3, 2012

When dragging various sliders in Photoshop CS5, very often these sliders get "stuck" and move with the mouse even though you have released the mouse. Say you are dragging a slider to set the brush opacity to 50%. When you have set it to 50%, you release the mouse and move it away from the slider, only to find that the opacity still increases or decreases as you move your mouse. You have to click again to fix this, but then of course you have to go back and do it again.
 
Below is a small illustration (I can't take a screenshot of my mouse) of an example of when this happens:

This happens to me around once every 5 times I use a slider, i.e. extremely often. As you can imagine, it's very annoying and frustrating.I use a Wacom Bamboo Fun tablet, and I never use Photoshop without it so I cannot confirm whether this bug happens with a mouse or just the tablet.It doesn't just happen like on the above illustration, but also with any slider such as those in Adjustment Layers and Filters.The bug does not happen when using tools on the canvas. So the Brush tool, and every other tool, works fine and never gets "stuck".I have the latest version of Photoshop CS5.This is a bug that has always been in CS5 since the first version, and it has not been in previous versions of Photoshop. 
 
Late 2008 15" MacBook Pro
OS X Snow Leopard 10.6.7 (but the problem has existed way before 10.6.7)
Photoshop CS5 version 12.0.2

View 53 Replies View Related

Photoshop Elements :: How To Release A File In 12 Stuck In Edit Mode

Mar 17, 2014

I have a PSE 12 file stuck in the "edit mode".  I ran completed a repair and an optimize on the catalog and the file is still stuck in the edit mode--I can't even delete the file from the catalog as the "delete" option is grayed out.

View 1 Replies View Related

Photoshop :: Why Does Image Or Type Nudge Extra Pixel (or Two) When Release Mouse

Feb 23, 2012

After I move an image or line of type to where I want it on a Photoshop CS5.1 layer, it moves an extra pixel. It is incredibly annoying and want it to stop before I start screaming. I've turned off all "Snap" and "Snap To" menu items.

View 14 Replies View Related

Photoshop :: Improper CS6 Beta Uninstall Prevents CS6 Release Version Install

May 19, 2012

I installed Photoshop CS6 beta on my Mac, OS 10.6.8. Once I purchased and went to install CS6, the installer informed me to uninstall the beta version of Photoshop, but didn't say how, or that there was a catch. I went and uninstalled Photoshop CS6 beta by dragging it to the trash. OOPS! - now the release version won't install, and I can't find anything on the Adobe website other than private messages from Adobe employees to specific users with the same problem as to how to rectify the issue.
 
Aside from venting my frustration at a situation I (and others have found ourselves in that could have been prevented by a little better planning and installer design.

View 3 Replies View Related

AutoCAD .NET :: How To Release DLL File

Jun 9, 2011

If I load a dll file into the autocad (using NETLOUD), and after a while I want to make some changes in the dll, then re-build it. In order to do so, I must close the autocad, otherwise I'll get an error ("Unable to copy file,,, because it is being used by another process..."). There is anyway to release the dll so I can change it without closing the autocad everytime?

View 4 Replies View Related

Photoshop :: 'Instruction At "0x1a3c4b6b" Referenced At Memory "0x00000028" Memory Could Not Be Read

Jul 22, 2009

when I try to open an existing file or create a new one -- the application will shut down unexpectedly and without warning.But I also experience application errors: 'Instruction at "0x1a3c4b6b" referenced at memory "0x00000028" Memory could not be read.

View 9 Replies View Related

AutoCad :: Release The Frame From Display

Feb 27, 2012

When I plot or run print of a drawing the view port frame is in the display and prints out with the drawing. How do I release this frame from display so it will not print?

View 6 Replies View Related

Illustrator :: Can't Release Compound Path

Aug 10, 2012

I drew some simple paths in Photoshop with the pen tool, then exported the paths to Illustrator. All the paths came into illustrator as compound paths, though they look like simple paths in illustrator. Because they are compound paths, I can't join the ends of the paths to the ends of other paths.
 
Whe I select one of these paths:
 
Object>Compound Path>Release is greyed out and unavailable. "Release Compound Shape" in the Pathfinde palette menu is also greyed out and unavailable.
 
Is there any way to make these paths back into simple paths without redrawing them? I'm using CS6 versions of both Photoshop and Illustrator.

View 4 Replies View Related

AutoCAD 2010 :: Which Release Can Import .jpg To Trace Over

Nov 1, 2013

I learned Autocad on release 12 and then migrated to r14 and 2001. Nowadays most drafting is done with r14. However I want to be able to insert a .jpg into the drawing

environment and draw lines over it. Specifically, I want to take pictures of Christopher Dressers designs and bring them into Autocad and then trace over them. I feel I will get a huge education into architectural ornament as well as becoming more facile with lines.

I haven't kept up with Autocad's upgrades but undoubtedly the later releases have this functionality. Which one will work?

View 6 Replies View Related

AutoCAD LT :: Release Date Of Multileader Lines

Aug 8, 2012

we have DWG files with multi leader lines,   we would like to save these files to an earlier release so that others could access,  what would be the earliest date recommended.

View 3 Replies View Related

Illustrator :: Why Does A Selection Release After UNDO Function

Mar 6, 2014

Why does a selection release after UNDO function? Older versions didn't used to. It's annoying to have to re-select after each time you undo.

View 6 Replies View Related

Illustrator :: AI CS6 Won’t Release Fonts / Not Even When It Closes

Aug 26, 2012

I went to the Character panel and from there, I opened the list of installed fonts on my system.  As I browsed the list, I spotted two fonts that I wanted to delete.  When I tried to delete them, Windows 7 displayed a “Can’t delete — fonts in use” message.  I closed Illustrator, and tried again to delete the two fonts.  Again, I got the same message. I’m going to have to reboot to delete those fonts plus some others I’ve since identified.  Doing that is a pain in the xxx because I’ve always got a bunch of stuff open.
 
Illustrator needs to release all fonts except those in use in the current document.  I should be able to delete any other fonts at any time.  If Illustrator or any other Adobe program is displaying a list of fonts at the time I delete a font, it should dynamically update the list.

View 1 Replies View Related

Illustrator :: Brush Stroke Doesn't Appear Until Release The Pen

Sep 22, 2013

I'm using a basic custom brush which reacts to pressure, and whenever I make a brush stroke with my stylus, the line doesn't appear until I lift my pen off the tablet. It's a seemingly random occurence, although it occurs in both my work (CS6 / Win7 / Intuos3) and home (CS6 / Win8 / Intuos4) setups.

View 8 Replies View Related

Illustrator SDK :: How To Make Release Packet For Plugin

May 6, 2013

I'm completed my plugin and want to make release packget.My plugin have two parts:

1. UI write FlashUI abcUI.zxp
2. Control write by Illustrator plugin abc.aip

The same StrokeFilter and StrokeFilterUI project.Now I want to combine they. And make setup program to release (no need to use Adobe extension and add plugin in Illustrator manual)

View 1 Replies View Related

Illustrator :: Release All Compound Paths At The Same Time?

Jul 20, 2010

Platform: PC/Windows XP SP2Adobe: Illustrator CS3 (13.0.2)

Is it possible to release all compound paths in an illustration at the same time (and if so - how)?

I receive drawings from engineering in either PDF or CGM format, which I edit in Illustrator and save as AI. I have to release compound paths in order to delete specific parts of the drawing.
 
This isn't difficult, but it is very time-consuming because the CGM(or PDF)-to-Illustrator conversion results in quite a few compound paths.

View 9 Replies View Related

Photoshop :: Error Opening The Portable Document File (PDF) Document

Nov 5, 2013

I've created a pdf file (with illustrator cs3). when I try to open it on photoshop CS3 I receive this message:

"error opening the portable document file (PDF) document. error code = 0X20030055"

I can open this pdf file outside photoshop.no problem openning other pdf files on photoshop.

View 1 Replies View Related

Photoshop Elements :: Can Save JPG Document Into Non Photo Document File

Nov 23, 2013

I inadvertently saved a document as a jpg and wondered if there is any way I can convert it to a document file that is handled more easily with a file that is other than a photo file?

View 1 Replies View Related

AutoCAD Inventor :: Frame Analysis Node Release Example

Oct 8, 2012

explain the circumstances where 'Release' is applied to a beam (node?) when using the Frame Analysis tool.

View 1 Replies View Related

AutoCAD 2013 :: Increasing File Sizes From One Release To Another?

Dec 1, 2013

I have been revising some older blocks dating back to 2003 and earlier.  What was a file size of 28KB increased to 127KB!  In most cases the only change was converting text to an attribute.  As a test I took a 2004 file and saved it - with no changes - to another name and the file size increased from 28KB to 124KB!!!  That's an increase of over 4.4 times!  Many of my 1998 - 2006 files are in the 26KB - 40KB range.

That's a bit much of an increase over several ACAD versions!  Is there a way to reduce the file size?  I did perform a complete Purge before saving.  Have I missed some clever trick?

I am running ACAD Version 2014 with SP-1.

View 5 Replies View Related

Illustrator :: Can't Release Clipping Path / Can't Ungroup Objects

Jul 18, 2013

I'm working with another artists's file, and I can't seem to release the clipping mask he created. When I try, I get an error message that says, "Can't ungroup the objects." I've tried releasing Compound Paths, but I get the same message.

View 4 Replies View Related

Photoshop :: Target Document Has A Different Depth Than Source Document?

Jul 5, 2013

as of yesterday i have been receiving an alert when i try to move a jpeg into a new photoshop doc stating that my target document has a different depth than my source document and will (which it definiately does) result in lower than expected quality.

Photoshop specs: CS6; RGB; 16 bit; Res 300 pixels/inches; size: letter; (advanced setting - don't know what these are) color profile: sRGB IEC61966-2.1; Pixel aspect ratio: square pixels

View 7 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved