web-dev-qa-db-ja.com

iTextSharpを使用してPDFに画像を追加し、適切にスケーリングする

これが私のコードです。私が望む写真を正しく追加し、すべてが動作します除く画像はネイティブ解像度を使用しているため、画像が大きい場合はページに収まるようにトリミングされます。

画像をズーム機能のように使用してフィットするように拡大するだけでなく、アスペクト比を維持する方法はありますか?私はそこに欠けている何かがあるはずです。 :P

問題を説明するための写真を次に示します。 alt text

using System;
using System.IO;
using iTextSharp.text;
using iTextSharp.text.pdf;
using System.Drawing;
using System.Collections.Generic;

namespace WinformsPlayground
{
    public class PDFWrapper
    {
        public void CreatePDF(List<System.Drawing.Image> images)
        {
            if (images.Count >= 1)
            {
                Document document = new Document(PageSize.LETTER);
                try
                {

                    // step 2:
                    // we create a writer that listens to the document
                    // and directs a PDF-stream to a file

                    PdfWriter.GetInstance(document, new FileStream("Chap0101.pdf", FileMode.Create));

                    // step 3: we open the document
                    document.Open();

                    foreach (var image in images)
                    {
                        iTextSharp.text.Image pic = iTextSharp.text.Image.GetInstance(image, System.Drawing.Imaging.ImageFormat.Jpeg);
                        document.Add(pic);
                        document.NewPage();
                    }
                }
                catch (DocumentException de)
                {
                    Console.Error.WriteLine(de.Message);
                }
                catch (IOException ioe)
                {
                    Console.Error.WriteLine(ioe.Message);
                }

                // step 5: we close the document
                document.Close();
            }
        }
    }
}
26
delete

私は次を使用して解決しました:

foreach (var image in images)
{
    iTextSharp.text.Image pic = iTextSharp.text.Image.GetInstance(image, System.Drawing.Imaging.ImageFormat.Jpeg);

    if (pic.Height > pic.Width)
    {
        //Maximum height is 800 pixels.
        float percentage = 0.0f;
        percentage = 700 / pic.Height;
        pic.ScalePercent(percentage * 100);
    }
    else
    {
        //Maximum width is 600 pixels.
        float percentage = 0.0f;
        percentage = 540 / pic.Width;
        pic.ScalePercent(percentage * 100);
    }

    pic.Border = iTextSharp.text.Rectangle.BOX;
    pic.BorderColor = iTextSharp.text.BaseColor.BLACK;
    pic.BorderWidth = 3f;
    document.Add(pic);
    document.NewPage();
}
38
delete

個人的には、fuboのソリューションに近いものを使用していますが、うまく機能しています。

image.ScaleToFit(document.PageSize);
image.SetAbsolutePosition(0,0);
10
Alex

次のようなものを試すことができます:

      Image logo = Image.GetInstance("pathToTheImage")
      logo.ScaleAbsolute(500, 300)
7
Hps
image.ScaleToFit(500f,30f);

このメソッドは、画像のアスペクト比を維持します

4
fubo
image.SetAbsolutePosition(1,1);
1