AutoCad :: File With Multiple Layers Big And Slow

Jul 31, 2012

My file has over 100 layers and 20,000 containers that are in 3D. It worked fine when I drew them. After I closed the file, it always takes 5 to 10 min to open. I can't delete a layer (layer2) or rotate angle of view or any normal command such as purge and audit.., it always crashes.

I was wondering that if I did anything wrong casued this, and that whether my approach of drawing these is correct, performace wise.. and what would be the better way of doing this..because my drawing is now uesless I can't even rotate it in vp or do anything..

View 2 Replies


ADVERTISEMENT

Photoshop :: Multiple Layers / File Name Saving?

Aug 26, 2011

Doing a ecommerce website, the client has sent through over 100 logo's that need to accompany the products.The logs sent are in all different sizes....but they are all named correctly I know how to get all the files into the one photoshop file within different layers, they still hold there file name within the layer naming at this point.

I can also get them within the right canvas size for saving so everything is within the right size im looking for but i need a quicker way to save each individual layer keeping the file name rather than pressing - shift + ctrl + alt + s a houndred times to save for web and also needing to rename all the files again

View 1 Replies View Related

Illustrator SDK :: How To Accelerate Exporting Of Multiple Layers To PNG-File

Dec 1, 2011

ai::int32 aint;
sAILayer->CountLayers(&aint);
  for (int i = 0; i < (int) aint; i++){
sAILayer->GetNthLayer((ai::int32) i,&layer);
artSetSuite->LayerArtSet(layer, artSet);

AIArtHandle hand;
sAIArt->GetFirstArtOfLayer(layer, &hand);
e2 = sAIRasterize->Rasterize(artSet, &rs, &bounds, kPlaceAboveAll, hand, &art, MyRasterizeProgressProc);
  sAILayer->GetFirstLayer(&layer);
e2 = sAIArt->GetLayerOfArt(art, &layer);
e2 = sAIArt->GetFirstArtOfLayer(layer, &art);
 error = sAIImageOptSuite->MakePNG24(art, dstfilter, pngParams2, MyRasterizeProgressProc);
 
the code above shows how I managed to export a artboard with all layers to PNG-File. My question is, if there is a faster way to combine all layer before exporting, maybe a way without the "temporary layer" (Rasterize(...)-method)?

When I export with the standard-export-button in Adobe Illustrator, it runs fast and with all layers.

View 2 Replies View Related

Photoshop :: Exporting File Multiple Times With Different Layers Selected

Jun 18, 2009

I have this file with multiple layers of text.

I want to print the file with these layers selected individually, so that if I have two text layers "Cow" and "Dog", I get two similar images with different text.

How would i automate this? It would take a lot of work to select each layer and save the files individually.

View 2 Replies View Related

Photoshop :: Automate Multiple Images Into Seperate Layers In 1 File?

Jul 8, 2009

I'm an animation intern working for an animator who does things old school.

She gives me hundreds of animation cells to scan using her scanner into photoshop CS(nothing), using the scan utility in photoshop. the result, as we are doing it, is hundreds of separate image files. i then copy and paste each of these image files into another custom sized file as separate layers.

i know there must be a way to automate this or do it with an action, but i cannot figure it out. if you think this isn't possible with photoshop CS(nothing) i have CS3 available to me on my personal laptop.

View 5 Replies View Related

Lightroom :: How To Edit File In Photoshop With Multiple Layers (TIFF Or PSD)

Apr 21, 2013

I have a scenario that I can't seem to get working the way I want.

Scenario: I edit a file in photoshop with multiple layers (.tiff or .psd). I then add that file to my lightroom catalog and would like to have it automatically updated in lightroom when making changes in photoshop. I know this is possible when using the "Edit in Photoshop" option but I can't seem to get it working when I had the file in photoshop first.

If I import the file into lightroom and then make changes in photoshop the changes are not applied in lightroom. If, in lightroom, I choose "edit in photoshop" then I get a flat image generated from the lightroom file that does not have all my previously created photoshop layers.

View 1 Replies View Related

AutoCAD LT :: Slow Layers Properties Manager?

Sep 27, 2012

I am using AutoCAD LT 2013 where I work.I am working with a Floor Plan in which the building and the Site Plan are XRefed and the drawing is very slow.

The building is small, but the XREfed Site Plan, being of a large shopping center, was as drawn by a survey company, and is large.  I took out (erased) the solid hatches that indicate the concrete, to make the site a little smaller.  Since I do not use the entire site plan on the recipient Floor Plan Sheet, I clipped it using XClip, so only the necessary areas and parking around the building are shown.

I notice that the recipient drawings are very slow (i.e., the Floor Plan where I am working), and the Layers Properties Manager is the worst offender, being very slow and erratic when I want to add a new layer, change layer name, etc.

The computer is a new very large computer, and I did not have this slowness problem before working with other prjects.

Is there any setting or some settings that will make the drawings faster?

View 5 Replies View Related

Photoshop :: Multiple Selections To Multiple Layers Or Multiple Files With One Go?

May 26, 2013

how to convert multiple selections to multiple layers or multiple files with one go?

View 6 Replies View Related

AutoCAD Inventor :: Very Slow ILogic Functions With Multiple Processes?

Mar 22, 2013

how the internals of Inventor / iLogic are working.

We have multiple instances of Inventor running on a 12 core workstation so we can push configurations through concurrently  - each Inventor instance is assigned its own processor affinity and each instance has its own project which points to seperate directories of Inventor models.

Everything seems to work OK when there are up to 5/6 working concurrently, but as soon as there are more than 6 the iLogic functions seem to grind to a halt - note that the rules are external rules.
 
For example, this function took 11 seconds to complete when there were 10 concurrent orders processing. :
 
Parameter("BLANK", "EDGE_FRT_ACTIVE") = "YES"
 Similarly these functions took 11 seconds in total to complete :
 
iProperties.Value("Custom", "M1110900_P1PO") = iProperties.Value("Custom", "BLANK_GDIM") - iProperties.Value("Custom", "PANEL_GDIM")iProperties.Value("Custom", "M1110900_P2PO") = iProperties.Value("Custom", "BLANK_XGDIM") - iProperties.Value("Custom", "PANEL_XGDIM")iProperties.Value("Custom", "M1110900_P1OR") = 1iProperties.Value("Custom", "M1110900_P2OR") = 0
 
When I run these with less that 6 concurrent Inventor processes, they're are almost instant.

I just don't know where the bottleneck is. I've ruled out :

- Processor (each core never reaches above around 60%)

- RAM (we've got 48GB of RAM, with about 15GB free at worst)

- Disk (disk IO is busy, but it doesn't look like it's the bottleneck)

- Graphics (Inventor is in silent mode, with no UI, so graphics activity is minimal)

From the tests I've done it seems to be the iLogic functions that are the bottleneck. My next port of call is to change the iLogic functions to actual API calls, but I suspect I'll get the same results.

So, my questions :

Is Inventor queing these iLogic API calls somehow (note we're creating a unique instance of the Inventor.Application COM object for each processing thread) ?

Is there an issue with using external rules with nultiple instances?

Dell Precision R5500, Intel Xeon X5690 3.47GHz (x2)
48GB RAM
Inventor 2013 (PDS Premium)
64bit Windows 7 SP1

View 4 Replies View Related

Photoshop :: Apply Adjustment Layers To Multiple Layers That Have Different Blending Modes?

Sep 6, 2013

How to Apply adjustment layers to multiple layers that have different blending modes  and keep the colors the same as the adjustment done?
 
I work in Animation painting Backgrounds.  My files are sometimes upwards to 200+ layers.I will use adjustment layers to quickly balance colours and constrast on top of those many many layers.
 
The only way that I know of how to apply adjustment layers it to every single layer  ( by applying I mean I need to get rid of the adjustment layers because we cant use them in production but i need the new colours be applied to all layers underneath ) in a psd is to manually do it By duplicating the adjusment layer 200+ times and  then merging each layer to one of those adjustment layers so that that layer can take the adjustment layers effect permanently.
 
The issue is that Within Those 200 layers I have some layers set to Multiply or OVERLAY.    IT obviously wont apply the adjustment layer properly to those layers because those layer blend mode affect the layers under them. The colour wont be the same anymore in the spots that had the multiply blended mode.

[URL]

I have 2 adjustment layers up top.  I need to get rid of them by applying them to each layer! I cannot merge any of the layers. We need all those layers for production.I can apply the adjustment layers manually and this works GREAT for all Layers set to normal.  THey take on the colour change just FINE.
 
However, The issue is that layer 6 and layer 4 are both set to mutiply and this screws up the colour once i apply the adjustment layers to each layer manually...
 
How can i apply my adjustment layers to a file like this with some layers being set to multiply while keeping the layers exactly the same configuration  and The new colour taking effect exactly how i looks before i apply the adjustment layers? Now the simple solution is to merge the multiply layers to the layer that it affects HOWEVER I NEED those multiply layers to be separate! 

View 4 Replies View Related

Photoshop :: Plugin / Action To Separate Multiple Objects On Single Layer Into Multiple Layers

Jun 24, 2013

Imagine a layer containing 10 squares, each square is isolated (none are touching). I need a quick way to put each of those squares on its own layer. Is there something already built in, or any plugin or action?

View 12 Replies View Related

Illustrator :: Delete Multiple Layers By Selecting Multiple Object?

Jan 25, 2014

I'm going to connect my AI file to After effect. So I had to create lots of layers in order to edit them seperatly in After effects. But it seems like my amount of layers are too large because AE always crashes (not responding -> Force quit)
 
So I wanna break some stuff down in multiple AI files, but I don't wanna go and select every layer and delete it. That would take too much time. Is there a way to select the multiple objects in Illustrator and delete that but also its layer its in?

View 3 Replies View Related

Photoshop Elements :: How To Load Multiple Images Into Multiple Layers

Oct 6, 2012

I have a series of pics (approx 80) that I'd like to load into Elements, with each photo going into a single layer.  I google'd a series of old posts where somebody used a "script", but the links are no longer working and that trails is dead.

View 9 Replies View Related

Photoshop :: PS CS4 - Slow When Printing Multiple...

Mar 17, 2009

I work in a theatre and print a lot of programs and posters. If I send a print run of, say, 18 posters to the printer, Photoshop 7 generated once, then printed all the copies fairly quickly.

With CS4, it's like it's generating the image each time, so it's taking several minutes between each print. I tried saving as a pdf and going to Adobe Acrobat Reader to print and it does the same thing. Appears to work fine in Word and Excel, but of course, those are much smaller files.

I have to print 400 copies of an event program, how to speed things up!

View 2 Replies View Related

Photoshop :: CS6 Dead Slow Moving Layers And Groups

Oct 18, 2012

I have this brand new PC, got it last week,  i7 core, SSD drive, 16gb ram.When I open my PSD doc with my design (approx 43mb psd file) then the photoshop application spikes in memory usage, to 3.5gb (from 120mb), and moving groups and layers around is DEAD SLOW, horrible lag.
 
I had CS3 on my previous PC, which was Core2 Duo with 4gb ram, and the speeds there were similar on the same psd document.I've also tried CS5.1 on a similar PC hardware specs as my new PC, and moving groups and layers around is much faster.Is it just CS6? Why is this so slow?

View 22 Replies View Related

AutoCAD Inventor :: Part File With Multiple Instances Of Multiple Solids?

Apr 18, 2013

I'm designing a part that in Autodesk Inventor 2013 that is constructed from several layers laminated together. I have 4 layers:

F (front)

M1 (middle, variation one)

M2 (middle, variation two)

B (back)

The final solid will lhave 17 layers laid out like this:

F | M1 | M2 | M1 | M2 | M1 | M2 ... | B

I currently have a part file containing

F | M1 | M2

What's the best way to create this solid if I want to a) keep all instances of M1 and M2 in sync, and b) make it easy to work on all 4 layers. Do I have to export F, M1, M2, and B as individual parts and import them into an assembly or can I keep them in one part file? I really like the ability to be able to work on all the solids at the same time because they're visually dependant on each other.

View 4 Replies View Related

AutoCAD 2013 :: File Is Big And Slow

Jul 31, 2012

My file has over 100 layers and 20,000 containers that are in 3D. It worked fine when I drew them. After I closed the file, it always takes 5 to 10 min to open. I can't delete a layer (layer2) or rotate angle of view or any normal command such as purge and audit.., it always crashes.

I was wondering that if I did anything wrong casued this, and that whether my approach of drawing these is correct, performace wise.. and what would be the better way of doing this..because my drawing is now uesless I can't even rotate it in vp ro do anything...

View 5 Replies View Related

AutoCad :: Certain File Slow / Not Responding

Oct 20, 2011

After i moved a drawing in this file to another place, autocad 2004 suddenly got slower and even not responding any time i tried any command .With other files, it's still ok.I t seems layer 4 has some problem.URL...

View 1 Replies View Related

AutoCAD 2013 :: File With XRefs Too Slow?

Oct 16, 2012

When I work with a drawing that have several XRefs, it is too slow to open, save, or to do everything. I configured:

SAVEFIDELITY=0, XLOADCTL=2, INDEXCTL=3

Is there any other way to improve the performance?

View 1 Replies View Related

AutoCAD Civil 3D :: Drawing File That Is Very Slow?

Sep 16, 2013

We are working on a civil 3d project that was created by first bringing the data into Caice then exporting to microstation and then creating a .dwg. This file has been extremely slow and crashes all the time. Is there any way to fix the file? If we proecess our survey data in caice, what is the best way to bring the data over to civil 3d?

View 1 Replies View Related

AutoCAD 2010 :: Slow PDF Printing (file Size 400 Kb)

Jun 14, 2012

I import PDFs in Drawings and it takes forever to print.  PDFs are only 400KB, so not big files.

View 6 Replies View Related

Photoshop :: Duplicating Multiple Sets Of Separately Linked Layers Results In All Layers Being Linked Together

Mar 11, 2013

I found an old thread from 2011 about the same problem and the mod reported it to the devs, but as far as I know no solution has ever been offered.(maybe in cs6? we are still using cs5)For one or two layers it's no problem to do it manually, but with say 40 layers with corresponding linked layers we need a better solution.

View 4 Replies View Related

AutoCAD 2013 :: Slow File Open - 8 Seconds Delay

Sep 6, 2013

I am using Autocad2014.  I have had issues with two windows7 64bit machines where using the file open dialogue (network file) has an 8 second delay to open the file.  If I open using recent documents(in cad) or windows file explorer to open them, there is no delay.  Moving the file to the local machine stops the delay, but removing XREF's did not.

View 5 Replies View Related

AutoCAD 2010 :: Very Slow Reaction / Reduce File Size

Feb 10, 2012

A drawing is almost (20 MB). It is big I don't know why? It works normal in MODEL space. But when I switch to PAPER space, or to save, print, close and open the file, it shows very slow reaction.I made reset to the scale, checking LTScale, deleted all unnecessary objects, purge several times, UCS dynamic off, AUDIT, checking Xref's, texts are type (shx), No layers filters.The drawing has only one layout in few viewports. (isavepercent) to 0.BWhat can I do more to reduce the file size en make it faster?

View 7 Replies View Related

Photoshop :: Clipping Mask Multiple Text Layers Without Merging Text Layers

Dec 29, 2008

I am trying to get a white layer with see through writing which reveals the background image underneath. (Almost like I have put a stencil over a photograph). I have discovered this is called a clipping mask.

However, I am having difficulty using a clipping mask over multiple text layers. It seems to only do it to one layer directly beneath. I do not want to merge the text layers as I want to mess about with the design a fair bit.

View 4 Replies View Related

AutoCAD Architecture :: Active Project - Open File And Save Are Slow?

Aug 7, 2013

I am having an issue when opening and saving files is very slow when I have a project active in the Project Navigator.

If I have an active project, and I open a file via Project Navigator or Windows Explorer, the process hangs for 15-20+ seconds at the 'Opening C:xxxxxxxxxxxxxxx.ac$' point, where it is creating the temporary file.

If I 'Close the current project' in the project browser and open the same file via Windows Explorer, the process takes less than a second.

View 8 Replies View Related

AutoCAD .NET :: Selection Filter On Multiple Layers?

Apr 25, 2012

to select object on a single layer

Dim strLayer as string = "road"acTypValAr.SetValue(New TypedValue(DxfCode.LayerName, strLayer), 2)  

how do you select all objects on multiple layers

Dim strLayer as string = "road,sidewalks"acTypValAr.SetValue(New TypedValue(DxfCode.LayerName, strLayer), 2)  

the above does not work. how do you select all objects on multiple layers?

View 3 Replies View Related

AutoCAD 2010 :: Rename Multiple Layers

Apr 1, 2013

NEED TO RENAME LOTS OF EXISTING LAYERS ...

EX:

LAYER NAMED:
E-PANEL LP 1-3-10 CRT 01
RENAMED TO:
E-PANEL LP-01-03-10 CRT 01
"CRT" NUMBERS WILL VARY

View 3 Replies View Related

AutoCAD .NET :: Selecting Entities In Multiple Layers

Jan 15, 2013

Is it possible to select entities of multiple layers?

I've looked at... [URL] .....

...and tried the following code.
 
string[] layerNames = {"1", "2", "3"};TypedValue[] tdv = new TypedValue[(layerNames.Length * 3) + 2];int i = 0;tdv[i++] = new TypedValue((int)DxfCode.Operator, "<or");foreach (string ln in layerNames){ tdv[i] = new TypedValue((int)DxfCode.Operator, "<and"); tdv[i + 1] = new TypedValue((int)DxfCode.LayerName, ln); tdv[i + 2] = new TypedValue((int)DxfCode.Operator, "and>"); i += 3;}tdv[i - 2] = new TypedValue((int)DxfCode.Operator, "or>");SelectionFilter sf = new SelectionFilter(tdv);PromptSelectionResult psr = ed.SelectAll(sf);
 This code gives me an error in the PromptSelectionResult.

What would cause the erro?

View 1 Replies View Related

AutoCad :: Dimensioning A Building With Multiple Layers

Mar 14, 2012

I'm in the process of dimensioning a building with multiple layers but my Dim Ticks aren't working properly. On the first floor layer state the ticks show up for the first floor layer dimensions but also for every other floor but when i switch to dimension a 2nd floor the ticks are gone. I've looked through all of Dim Style settings and there seems to be no explanation for why this is happening .

View 1 Replies View Related

AutoCad :: Selecting Objects In Multiple Layers

Aug 15, 2012

I'm using QSELECT to select all objects on a layer, sometimes I need to select objects from 5-7 layers.

Right now I use QSELECT, select 1 layer, click OK, open QSELECT again, select another layer and repeat. Is there a faster way to do this without scripts?

I'm sure some of you do site drawings, how do you measure a curve? Some restaurants or cafes have a rounded serving counter, how you measure the radius to plot into autocad?

View 9 Replies View Related







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