Ciao Baol,

ho un problema con una immagine:

mi risponde tipo operando non corretto:

codice:
<%@language=vbscript%>

<%
Dim i,pdf
 
Set pdf=CreateJsObject("FPDF")
pdf.CreatePDF()
pdf.SetPath("fpdf/")
pdf.Open()

pdf.AddPage()
pdf.SetFont "Arial","B",24

pdf.Image "../images/fly_logo.jpg",pdf.GetY(),160,0

for i=0 to 40
	
	pdf.Cell 0,20,"Printing line numbering  " & i,0,1
    pdf.Cell 0,0,"www.miosito.it",0,0,"L","","http://www.miosito.it"
    pdf.Ln(10)
  
Next
pdf.Output("c:\nomefile.pdf")
pdf.Close()
pdf.Output()
%>