GERAR PDF CLASSE MJWPDF

FABIOPNEVES 26/08/2015 22:37:29
#450541
Boa noite alguem Utilizar essa classe mjwpdf para gerar apenas imagem.


Estou tentando Utilizar ela para gerar PDF vindo direto de um pictureBOX.
TUNUSAT 27/08/2015 11:52:35
#450559
FABIOPNEVES,

Leia isso:

==============================================
Creating Advanced PDF documents in VB
http://www.vb6.us/tutorials/visual-basic-tutorial-pdf-advanced
==============================================
Citação:

Another necessity to learn when creating PDF documents is how to add images to them. The mjwPDF class allows you to add any .jpg images to your PDF document. If the image is in a different format you will need to convert it to .jpg before you will be able to add it to your PDF file. However, if the image is a jpeg it is very easy to add it to the PDF doc. In the sample source code included with this tutorial you will see a logo.jpg file. Below is the code to end our first page and to start our second page. On the second page we add our logo to the upper left corner of the page.


    objPDF.PDFEndPage

[ô]Start page 2
objPDF.PDFNewPage

[ô]Lets add an image to page 2
objPDF.PDFImage App.Path & [Ô]\logo.jpg[Ô], _
15, 15, 50, 50, [Ô]http://www.vb6.us[Ô]

==============================================

Veja também:

==============================================
Images are not loaded into PDF using VB6 with mjwPDF class
http://stackoverflow.com/questions/20123385/images-are-not-loaded-into-pdf-using-vb6-with-mjwpdf-class
==============================================
Criar arquivos PDF em Visual Basic
http://debuginfo.blogspot.com.br/2010/05/criar-arquivos-pdf-em-visual-basic.html
==============================================
Creating PDF files in Visual Basic
http://tutorial.fyicenter.com/out.php?ID=4609
==============================================
mjwPDF Class under Windows 8
http://vb.knowcoding.com/view/282544-mjwpdf-class-under-windows-8.html
==============================================

[][ô]s,
Tunusat.
MARCELODAVID 27/08/2015 13:16:00
#450568
Resposta escolhida
Interessante...
Tópico encerrado , respostas não são mais permitidas