gpt4 book ai didi

c# - 无法为图像 itextsharp 设置固定大小

转载 作者:行者123 更新时间:2023-12-02 12:52:20 32 4
gpt4 key购买 nike

我一直在使用 iTextSharp 来创建报告。我的报告有许多尺寸不同的图像。即使我缩放了每个图像,它们也会以不同的尺寸呈现。我找到了很多解决方案,但没有一个有帮助。

我的代码:

PdfPCell InnerCell;
iTextSharp.text.Image logo = iTextSharp.text.Image.GetInstance(Server.MapPath(@"images\Logo.png"));
logo.ScaleToFit(80f, 80f);
InnerCell.FixedHeight = 80f;
InnerCell = new PdfPCell(logo);

我尝试将图像添加到 block 中,但图像将自身定位到顶部。由于是动态报告,我无法指定 block 中的 x 和 y 值

InnerCell = new PdfPCell(new Phrase(new Chunk(logo, 0, 0))); 

我什至尝试过this但我无法获得固定大小。

最佳答案

ScaleToFit(w,h) 将根据源图像的宽度/高度中的较大者按比例缩放图像。缩放多个图像时,除非尺寸比例都相同,否则最终会得到不同的尺寸。这是设计使然。

使用ScaleToFit(80,80):

  • 如果您的源是 100x100 的正方形,您将得到一个 80x80 的正方形
  • 如果您的源是 200x100 的矩形,您将得到一个 80x40 的矩形
  • 如果您的源是 100x200 的矩形,您将得到一个 40x80 的矩形

无论结果如何,测量宽度和高度,至少有一个是您指定的尺寸之一。

我创建了一个示例程序,它创建了随机大小的图像,它给了我图像中显示的预期输出 (w=80,h=80,h=80,h=80,w=80)

enter image description here

private void test() {
//Output the file to the desktop
var testFile = System.IO.Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "Test.pdf");
//Standard PDF creation here, nothing special
using (var fs = new FileStream(testFile, FileMode.Create, FileAccess.Write, FileShare.None)) {
using (var doc = new Document()) {
using (var writer = PdfWriter.GetInstance(doc, fs)) {
doc.Open();

//Create a random number generator to create some random dimensions and colors
var r = new Random();

//Placeholders for the loop
int w, h;
Color c;
iTextSharp.text.Image img;

//Create 5 images
for (var i = 0; i < 5; i++) {
//Create some random dimensions
w = r.Next(25, 500);
h = r.Next(25, 500);
//Create a random color
c = Color.FromArgb(r.Next(256), r.Next(256), r.Next(256));
//Create a random image
img = iTextSharp.text.Image.GetInstance(createSampleImage(w, h, c));
//Scale the image
img.ScaleToFit(80f, 80f);
//Add it to our document
doc.Add(img);
}

doc.Close();
}
}
}
}

/// <summary>
/// Create a single solid color image using the supplied dimensions and color
/// </summary>
private static Byte[] createSampleImage(int width, int height, System.Drawing.Color color) {
using (var bmp = new System.Drawing.Bitmap(width, height)) {
using (var g = Graphics.FromImage(bmp)) {
g.Clear(color);
}
using (var ms = new MemoryStream()) {
bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
return ms.ToArray();
}
}
}

我认为您正在寻找的是能够按比例缩放图像的能力,但也要使图像“达到该尺寸”,这意味着用透明或可能的白色像素填充其余像素。请参阅this post寻找解决方案。

关于c# - 无法为图像 itextsharp 设置固定大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17568856/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com