Da quello che so io, le librerie fpdf di Baol permettono di gestire solo immagini .jpg

Questo è la riga nella libreria fpdf.asp dove viene indicato

if(xtype=="jpg" || xtype=="jpeg")xinfo=this._parsejpg(xfile);
else this.Error("Unsupported image file type: " + xtype);
Io faccio così:
Dove per numepage, si intende a quale pagina del file pdf metterò l'immagine

Y=pdf.getY()


if numepage <> pdf.pageNO() then
numepage=pdf.pageNO()

SQLpubb = "SELECT * " _
& "FROM anagpubb where CODI_BOLL_RISU ="&vn_codibollavvi&" and nume_page="& numepage
Set rspubb = cnnSearch.Execute(SQLpubb)

if not rspubb.EOF then
pdf.SetY(Y)
pdf.SetX(X+45)

pdf.Image "pubblicita/file/"&rspubb("DESC_NOME_FILE_rino")&".jpg", X, Y, 0, 50, "JPG"



pdf.Cell 0,50,"",0,1
end if
end if