csharp 使用图像创建PDF
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 使用图像创建PDF相关的知识,希望对你有一定的参考价值。
//Crear el documento
Document document = new Document();
//Definición de la ruta
PdfWriter.GetInstance(document,
new FileStream("D:/users/Documentos/HolaMundo.pdf",
FileMode.Create));
//Abrir el documeto
document.Open();
//Agregar paragraph con el texto Hola Mundo
document.Add(new Paragraph("Hola Mundo!"));
document.Add(new Paragraph("Hola Mundo!"));
/7Agregando una imagen
iTextSharp.text.Image imagen = iTextSharp.text.Image.GrtInstance
("D:/Users/Documentos/imagen.png");
image.BorderWidth = 0;
imagen.Alignment = Element.ALIGN_LEFT
float percentage = 0,0f;
percentage = 150 / imagen.Width;
imagen.ScalePercent(percentage * 100);
//Insertar la imagen al documento
doc.A
以上是关于csharp 使用图像创建PDF的主要内容,如果未能解决你的问题,请参考以下文章
csharp 使用带有.net的ffmpeg从视频创建缩略图图像
csharp 使用emgu-cv创建图像的Min边界矩形。
如何从使用 pdfkit 相机拍摄的图像创建 pdf
从图像列表创建 PDF
如何使用图像的 tesseract 输出从另一个图像创建可搜索的 pdf
csharp 创建字符串图像