BindImage
BindImage(string)
Imposta l’immagine come timbro.
public void BindImage(string imageFile)
Parametro | Tipo | Descrizione |
---|---|---|
imageFile | String | Nome e percorso del file immagine. |
Esempi
PdfFileStamp fileStamp = new PdfFileStamp("input.pdf", "output.pdf");
Stamp stamp = new Stamp();
stamp.BindImage("image.jpg");
fileStamp.AddStamp(stamp);
fileStamp.Close();
Guarda anche
- class Stamp
- spazio dei nomi Aspose.Pdf.Facades
- assemblea Aspose.PDF
BindImage(Stream)
Imposta l’immagine che verrà utilizzata come timbro.
public void BindImage(Stream image)
Parametro | Tipo | Descrizione |
---|---|---|
image | Stream | Stream che contiene i dati dell’immagine. |
Guarda anche
- class Stamp
- spazio dei nomi Aspose.Pdf.Facades
- assemblea Aspose.PDF