View Full Version : text prints out bold when its NOT bold
happyunited
9th Jun 2006, 04:10 pm
hi im using CAD07 &06 when i print out a drawing with lots of text some of it come out bold and some normal yet they are all the same font/height/size etc in the dwg? can anyone help me please?
thanks
does it make a diff if its mtext or single line text?
craigp
9th Jun 2006, 04:16 pm
hi im using CAD07 &06 when i print out a drawing with lots of text some of it come out bold and some normal yet they are all the same font/height/size etc in the dwg? can anyone help me please?
thanks
does it make a diff if its mtext or single line text?
The problem could be that you have changed the line thickness before you have typed your text.
Is this correct???
JBullseye74
9th Jun 2006, 04:18 pm
Hello and welcome to the Forum - hmmm there should be no difference between single or multi line text, Check that all your text is on the same TEXT layer and then they should all come out the same pen thickness, im hoping you will find that currently your text may be on different layer which have different Pen Thicknesses Assigned.
happyunited
9th Jun 2006, 04:43 pm
hi thanks for your reply, i have checked line thickness etc and they are the same for both bits of text, they are the same color and on same layer with same weight and linetype but they still print out diff arghhh!! :(
we dont use plot styles here so its not that.
happyunited
9th Jun 2006, 04:49 pm
when i preview the two bits of text in model and print they come out fine its only in layout this happens from :(
kpblc
13th Jun 2006, 05:21 am
If layer, lineweight and print settings are the same for both of primitives, check Z-coordinate for them - make it to 0 on the current UCS (sometimes difference of the Z makes some problems).
happyunited
13th Jun 2006, 10:08 am
excellent that z thing works a treat wonder y it does that?
kpblc
13th Jun 2006, 10:48 am
I don't know why, but is has been. No one can change it, we can only live with this :)
MCADraft
13th Dec 2011, 03:00 am
I have the same problem, but within blocks. I have a drawing with the same block copied throughout, but some print with bold attributed text.
Does anyone have a solution for this?
By the way I have 2010, perhaps it has been fixed since?
Thanks
Colonel_CAD
17th Jan 2012, 03:19 pm
No, it's still and issue. I'm at work right now running CAD 2012 and I needed this tip to fix the problem in question.
I realize this is 7 years old, but thank you!
Dana W
17th Jan 2012, 04:42 pm
That "Z coordinate thing"? Think at it for a minute. Since you have full AutoCAD, and not LT, the "Z coordinate thing", AKA The "Z" axis, is your height above the gound. When you are drawing in PLAN view, you are looking at the ground.
If your text is at a greater height than the rest, it will look BIGGER (bolder) than the rest, in perspective. Perspective is 3D, 3 dimensions, width, depth, height.
The solution for this issue is less OIE, or operator induced error, isn't it?
Yup, I am grumpy this morning.:lol:o:)
MCADraft
17th Jan 2012, 11:45 pm
I wrote a simple routine for text, dims, blocks to be moved to a 'Z' level of 100 then back to 0 and it seems to work for 90% of the time. Give it a try
(defun c:00 ()
(setvar "cmdecho" 0)
(if (= (getvar "tilemode") 0)(setq tmc 1))
(if (= tmc 1)(setvar "tilemode" 1))
(setq ss (ssget "_X" (list (cons 0 "INSERT")(cons 67 0))))
(IF SS (progn
(command "change" ss "" "p" "e" "100" "")
(command "change" ss "" "p" "e" "0" "")
))
(setq ss (ssget "_X" (list (cons 0 "TEXT")(cons 67 0))))
(IF SS (progn
(command "change" ss "" "p" "e" "100" "")
(command "change" ss "" "p" "e" "0" "")
))
(setq ss (ssget "_X" (list (cons 0 "MTEXT")(cons 67 0))))
(IF SS (progn
(command "change" ss "" "p" "e" "100" "")
(command "change" ss "" "p" "e" "0" "")
))
(setq ss (ssget "_X" (list (cons 0 "DIMENSION")(cons 67 0))))
(IF SS (progn
(command "change" ss "" "p" "e" "100" "")
(command "change" ss "" "p" "e" "0" "")
))
(if (= tmc 1)(setvar "tilemode" 0))
(setq ss nil)
(setq tmc nil)
(setvar "cmdecho" 1)
)
MCADraft
17th Jan 2012, 11:50 pm
The reason I say 90% of the time is that I have come across drawings in this office where the whole drawing views and prints as bold even when all 'Z' values is set to 0, but when you copy and paste to a new drawing, it views and prints correctly. Go figure...
Powered by vBulletin™ Version 4.1.2 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.