Cita:
Iniciado por birus
Gracias verinchi, pero que crees?, que el problema fue que el server no tenia instalado el acrobat...
No se si me puedas ayudar, estoy intentando insertar una imagen en el documento y me mande el mensaje de error: File does not begin with '%PDF-'
El codigo que pongo es el siguiente:
Código:
pdf.ln()
pdf.Image "fpdf.JPG", 150,10,172,105, "JPG"
Supongo lo estoy usando incorrectamente... podrian ayudarme ??
Saludos !!
Jaja! me pasó una vez pero el error no se parecía al tuyo!
Bueno, cosas que pasan, menos mal que encontraste el problema pronto
Respecto de tu imagen:
Lo que encontré en el foro de fpdf.asp es:
Código:
Here's the solution:
1) In fpdf.asp find the Output() function declaration
2) Change
xfile=Server.MapPath(lib.fso.GetTempName())
into
if (this.pathOutput != null && this.pathOutput != "") { xfile = this.pathOutput + lib.fso.GetTempName()}else { xfile = Server.MapPath(lib.fso.GetTempName())}
3) Set the PDF output path to a writable website directory with pdf.SetPathOutput(yourDir)
Now the temporary file will be written in that output directory. And since it is a temporary file, it is automatically deleted again when FPDF is finished with it.
Tenés que verificar de actualizar en la clase fpdf y verificar también que la imegen esté en el mismo directorio.
Hasta ahí todo bien.
El otro problema que vas a tener es que necesitás colocar la linea así (O por lo menos a mi me resultó solo de esta manera:
Código:
pdf.Image ("tuimagen.jpg", 150,10,172,105, "JPG");
Teniendo cuidado al colocar el nombre de la imagen, si la extensión está en mayúscula o minúscula porque es sensible a esto.
Bueno, espero te sirva.