csharp generar pdf en wpfaplication
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp generar pdf en wpfaplication相关的知识,希望对你有一定的参考价值。
private void Agregar_Click(object sender, RoutedEventArgs e)
{
GenerarPDF();
}
private void GenerarPDF()
{
//Generar Documento
Document document = new Document();
//Definimos la ruta
PdfWriter.GetInstance(document, new FileStream("C:/Users/FaleTala/Desktop/Hola.pdf", FileMode.Create));
//Abrir el Documento
document.Open();
//Agregar paragraph con el texto Hola Mundo
document.Add(new iTextSharp.text.Paragraph("Nombre: " + textBox1.Text));
document.Add(new iTextSharp.text.Paragraph("Rut: " + textBox2.Text));
document.Add(new iTextSharp.text.Paragraph("Mail: " + textBox3.Text));
document.Add(new iTextSharp.text.Paragraph("Dirección: " + textBox4.Text));
//agregando una imagen
iTextSharp.text.Image imagen = iTextSharp.text.Image.GetInstance("C:/Users/FaleTala/Pictures/Challenge.jpg");
imagen.BorderWidth = 0;
imagen.Alignment = Element.ALIGN_LEFT;
float percentage = 0.0f;
percentage = 150 / imagen.Width;
imagen.ScalePercent(percentage * 100);
//insertamos la imagen
document.Add(imagen);
//cerrar Documento
document.Close();
//Abrir el documento desde su ruta
System.Diagnostics.Process.Start("C:/Users/FaleTala/Desktop/Hola.pdf");
}
以上是关于csharp generar pdf en wpfaplication的主要内容,如果未能解决你的问题,请参考以下文章
WPF高级编程的目录
csharp 从对话框#file #wpf中选择WPF中的文件
text Generar crear小部件
text Generar框架
javascript generar Archivos para bancos
sh Generar miniaturas