• This forum is the machine-generated translation of www.cad3d.it/forum1 - the Italian design community. Several terms are not translated correctly.

pdf print problem by code

  • Thread starter Thread starter yag
  • Start date Start date

yag

Guest
salve

ho scritto del codice simile a questo

sub example_getplotdevicenames()
' this example gets the current plot device information
' and then displays the list of plot device names,
' media names, localized media names, and plot style
' table entries.
dim layout as acadlayout
set layout = thisdrawing.modelspace.layout

' refresh the current plot information for
' this session.
layout.refreshplotdeviceinfo

' list all the valid device names for the system
dim plotdevices as variant
plotdevices = layout.getplotdevicenames()

dim x as integer
for x = lbound(plotdevices) to ubound(plotdevices)
msgbox plotdevices(x)
next

' list all the media names, and their localized version
dim medianames as variant
medianames = layout.getcanonicalmedianames()

for x = lbound(medianames) to ubound(medianames)
msgbox medianames(x)
msgbox layout.getlocalemedianame(medianames(x))
next

' list all the entries in the plot style table
dim stylenames as variant
stylenames = layout.getplotstyletablenames()

for x = lbound(stylenames) to ubound(stylenames)
msgbox stylenames(x)
next

end sub


per styampare da una mia form con driver di stampa disponibili
il problema e che quando uso adobe pdf mi da questo messaggio

impossibile stampare impostare l'opzione "do not send fonts to distiller"
ma io non la trovo e nn so dove mettere mano
 
I add:

I quit adobe and am using native autocad driver the version I have is 2007

all press pdf etc. the problem and that if I have dwg that have incorporated rasters into

the final pdf

comes with black vertical lines (the tiff is black and white)

type

I try to draw it, the black rows are at a regular distance. . . .
How could I solve this?

----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------




----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

How come?
 

Forum statistics

Threads
44,997
Messages
339,767
Members
4
Latest member
ibt

Members online

No members online now.
Back
Top