0

我正在保存图像,但我需要将此图像转换为 pdf 并保存。我怎样才能做到这一点?

这是我使用的代码:

private void button3_Click(object sender, EventArgs e)
    {
        SaveFileDialog saveFileDialog1 = new SaveFileDialog();
        saveFileDialog1.FileName = "image.bmp";
        if (saveFileDialog1.ShowDialog() == DialogResult.OK)
        {

            Bitmap bitmap = new Bitmap(this.Width, this.Height);
            this.DrawToBitmap(bitmap, this.ClientRectangle);
            using (var Stream = saveFileDialog1.OpenFile())
            {
                bitmap.Save(Stream, ImageFormat.Bmp);
            }

        }
}
4

3 回答 3

3

您需要使用 PDF 库,例如PDFSharp

这是一些将图像添加到 PDF的示例代码:

void DrawImage(XGraphics gfx, int number)
{
  BeginBox(gfx, number, "DrawImage (original)");

  XImage image = XImage.FromFile(jpegSamplePath);

  // Left position in point
  double x = (250 - image.PixelWidth * 72 / image.HorizontalResolution) / 2;
  gfx.DrawImage(image, x, 0);

  EndBox(gfx);
}
于 2013-01-28T15:28:32.913 回答
0

我使用iTextSharp转换为 PDF

于 2013-01-28T15:29:14.260 回答
0

Pdf 是一种容器格式。所以不能将位图保存pdf,而是将位图嵌入到pdf

iTextSharp 非常适合此请参阅使用 ITextSharp 在 PDF 中插入图像

于 2013-01-28T15:30:33.813 回答