Page 1 of 1

Imagén del pdf pixelada y borrosa

PostPosted: Sun Jun 14, 2015 1:31 pm
by J. Ernesto
Compañeros buenas.

Tengo un inconveniente al generar el archivo tipo PDF directamente desde fivewin, este se ve mal, como si estuviese pixelada, pero si se genera desde el preview se ve normal. Las ordenes para generar el PDF que uso son las siguientes:

Code: Select all  Expand view

  PRINT oPrn  FILE sPath_PDF
ó
  FWSavePreviewToPDF ( oPrn, sPath_PDF2, .F. )
 


En ambos casos la imagen del PDF se ve mal

Como corrijo la calidad del PDF

Muchas gracias
[img]
http://s2.subirimagenes.com/privadas/pr ... pdfmal.jpg
[/img]

Re: Imagén del pdf pixelada y borrosa

PostPosted: Thu Jun 18, 2015 11:44 am
by postinelli
yo hago así

debes tener el freeimage.dll

Hola Ernesto

haz la siguiente prueba
poner como impresora predeterminada la Microsoft XPS Document Writer previo a guardar el PDF
fijate si cambia la resolucion

yo para guardar pdfs hago así
>>>>

Local cPrinter:=GetPvProfString("Facturacion","IMPRESORA","Microsoft XPS Document Writer", cIniFile)

SetPrintDefault(cPrinter)

PrnSetPage(9) ///a4
PrnPortrait() ///vertical
// PrnLandScape() ///horizontal

TPreview():lListViewHide := .T.
//PRINT oPrn NAME "Impresión de facturas" PREVIEW
PRINT oPrn NAME "Facturas en PDF" FILE cFactPdf


****tu codigo


if file(cFactPdf)
CursorWait()
inkey(1.2)
MsgWait(cFactPdf+ ' creada con éxito','FactuPDF',1)
else
MsgStop('Factura NO Creada','Error')
endif

>>>>>