gpt4 book ai didi

c# - RenderTargetBitmap 呈现错误大小的图像

转载 作者:太空狗 更新时间:2023-10-29 22:08:19 26 4
gpt4 key购买 nike

我的任务是向用户显示其 XPS 文档每一页的缩略图。我需要所有的图像都很小,所以我将 dpi 设置为 72.0 来渲染它们(我用谷歌搜索了 dpi 72.0 的 A4 纸的尺寸是 635x896)。基本上,我执行以下操作:

        List<BitmapImage> thumbnails = new List<BitmapImage>();
documentPaginator.ComputePageCount();
int pageCount = documentPaginator.PageCount;
for (int i = 0; i < pageCount; i++)
{
DocumentPage documentPage = documentPaginator.GetPage(i);
bool isLandscape = documentPage.Size.Width > documentPage.Size.Height;
Visual pageVisual = documentPage.Visual;
//I want all the documents to be less or equals to A4
//private const double A4_SHEET_WIDTH = 635;
//private const double A4_SHEET_HEIGHT = 896;
//A4 sheet size in px, considering 72 dpi
RenderTargetBitmap targetBitmap = new RenderTargetBitmap(
(int)(System.Math.Min(documentPage.Size.Width, A4_SHEET_WIDTH)),
(int)(System.Math.Min(documentPage.Size.Height, A4_SHEET_HEIGHT)),
72.0, 72.0,
PixelFormats.Pbgra32);
targetBitmap.Render(pageVisual);
BitmapFrame frame = BitmapFrame.Create(targetBitmap);
PngBitmapEncoder encoder = new PngBitmapEncoder();
encoder.Frames.Add(frame);
BitmapImage image = new BitmapImage();
using (System.IO.MemoryStream ms = new System.IO.MemoryStream())
{
encoder.Save(ms);
image.BeginInit();
image.CacheOption = BitmapCacheOption.OnLoad;
image.StreamSource = ms;
if (isLandscape)
{
image.Rotation = Rotation.Rotate270;
}
image.EndInit();
}
thumbnails.Add(image);
}

但是当我呈现文档页面 (A4) 时,它的大小实际上是 846x1194 而不是我预期的大小。我试图降低 dpi (48.0),但图像的尺寸变得更大(我想,我只是不太明白 dpi 是什么以及它如何影响文档)。我试着让 dpi=96.0,尺寸变小了。我将上面代码生成的 BitmapImage 类的实例集合中的一张图像设置为 Image 控件的源(我正在创建 WPF 应用程序),以防万一dpi 设置为 96.0 我的程序如下所示:

Thumbnail displayed incorrectly
如您所见,页面的一部分根本没有显示,它不适合 Image 控件,即使控件的大小设置为 635x896为什么按照上面的代码,图片必须正确显示,所有文字必须适合。
简而言之,我期望得到什么结果:我正在尝试创建文档页面的缩略图,但我希望它们相对于某个数字更小(对不起,我不太确定我怎么说这些东西在英语中,基本上如果文档的页面宽度是 1200 像素,我希望它是 1200/n,其中 n 是我之前提到的“一些数字”),但是如果缩小图像的尺寸仍然大于 635x896 我希望尺寸为 635x896
提前致谢。另外,我很抱歉我的英语不好。

最佳答案

首先,DPI 表示每英寸点数,或每英寸像素。在将 21 x 29.7 厘米的 A4 页面渲染为 72 DPI 的位图的情况下,您最终会得到以下大小的位图:

  • 宽度 = 21 厘米/(2.54 厘米/英寸)* 72 像素/英寸 = 595 像素
  • 高度 = 29.7 厘米/(2.54 厘米/英寸)* 72 像素/英寸 = 842 像素

除此之外,您不应该太在意 DPI,但有一个异常(exception):WPF 渲染是在 96 DPI 下完成的。这意味着您的文档的 A4 大小的页面将呈现为 794 x 1123 位图。提醒一下:

  • 宽度 = 21 厘米/(2.54 厘米/英寸)* 96 像素/英寸 = 794 像素
  • 高度 = 29.7 厘米/(2.54 厘米/英寸)* 96 像素/英寸 = 1123 像素

因此,当 RenderTargetBitmap 包含一个恰好为 A4 的页面时,它应该是 794 x 1123 的大小。如果页面尺寸小于 A4,位图应该更小。另一方面,如果页面大于 A4,则应缩小 到 794 x 1123。这就是诀窍。您可以将视觉对象放入 ContainerVisual 中,而不是直接将页面视觉对象呈现到 RenderTargetBitmap 中。用ScaleTransform如下所示。

for (int i = 0; i < paginator.PageCount; i++)
{
DocumentPage page = paginator.GetPage(i);
double width = page.Size.Width;
double height = page.Size.Height;
double maxWidth = Math.Round(21.0 / 2.54 * 96.0); // A4 width in pixels at 96 dpi
double maxHeight = Math.Round(29.7 / 2.54 * 96.0); // A4 height in pixels at 96 dpi
double scale = 1.0;
scale = Math.Min(scale, maxWidth / width);
scale = Math.Min(scale, maxHeight / height);

ContainerVisual containerVisual = new ContainerVisual();
containerVisual.Transform = new ScaleTransform(scale, scale);
containerVisual.Children.Add(page.Visual);

RenderTargetBitmap bitmap = new RenderTargetBitmap(
(int)(width * scale), (int)(height * scale), 96, 96, PixelFormats.Default);

bitmap.Render(containerVisual);

...
}

关于c# - RenderTargetBitmap 呈现错误大小的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13144615/

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