8

我想用来自数据库的数据创建一个演示文稿。我设法获得在 PowerPoint 中打开的有效演示文稿(SDK 2.5 的Open XML Productivity Tool对执行此操作有很大帮助)。但是,如何计算文本框形状的大小?我看到将值放在哪里,但new Extents()默认为零宽度和高度。当我Shape从现有演示文稿中获取 a 的某些值时,我可能会得到正确的高度(至少对于具有一行或固定行数的文本),但文本将溢出到右侧或底部(取决于自动换行环境)。

同样插入NormalAutoFit的也无济于事 - OpenXML 中没有计算BodyProperties和计算的必要值。TextBodyFontScaleLineSpaceReduction

Extents那么,将 a 设置为 a的最佳做法是Shape什么TextBody

有没有一种内置的方法来计算Extents给定的TextBodyor Shape?(一些带有内置方法的经验法则总比没有好)

我知道 PowerPoint 会NormalAutoFit在进行任何更改之后重新计算值(至少对于更改前后的一堆幻灯片),但是在进行更改之前开始演示文稿时(或者如果它是从 PowerPoint 查看器开始)。

4

1 回答 1

6

来自Eric White 的论坛

这是一项不平凡(但可行)的任务。

经过多次实验,我发现 System.Windows.Forms.TextRenderer 中的文本度量方法给了我最好的结果。这是 WmlToHtmlConverter 使用的文本度量功能。您可以查看 WmlToHtmlConverter 中的代码作为使用 TextRenderer 的一个示例。

这是我根据 Eric White 的 WmlToHtmlConverter、这篇文章这篇文章为我的目的而提出的代码。我用它来计算文本水印的 TextBox 的尺寸和 Word 文档的 OpenXml 的图像水印的尺寸。

    private static D.Size pixelsToEmus(int widthPx, int heightPx, double resDpiX, double resDpiY, int zoomX, int zoomY)
    {
        const int emusPerInch = 914400;
        const int emusPerCm = 360000;
        const decimal maxWidthCm = 16.51m;
        var widthEmus = (int)(widthPx / resDpiX * emusPerInch) * zoomX / 100;
        var heightEmus = (int)(heightPx / resDpiY * emusPerInch) * zoomY / 100;
        var maxWidthEmus = (int)(maxWidthCm * emusPerCm);
        if (widthEmus > maxWidthEmus)
        {
            var ratio = ((decimal)heightEmus / (decimal)widthEmus);
            widthEmus = maxWidthEmus;
            heightEmus = (int)(widthEmus * ratio);
        }
        return new D.Size(widthEmus, heightEmus);
    }

    public static D.Size GetTextSize(this CWatermarkItemBase watermark, string runText)
    {
        var fs = watermark.GetFontStyle();
        var sz = watermark.FontSize;
        var proposedSize = new D.Size(int.MaxValue, int.MaxValue);
        D.Size sf;

        using (var ff = new D.FontFamily(watermark.FontFamily))
        {
            try
            {
                using (var f = new D.Font(ff, (float)sz, fs))
                {
                    const TextFormatFlags tff = TextFormatFlags.NoPadding;
                    sf = TextRenderer.MeasureText(runText, f, proposedSize, tff);
                }
            }
            catch (ArgumentException)
            {
                try
                {
                    const D.FontStyle fs2 = D.FontStyle.Regular;
                    using (D.Font f = new D.Font(ff, (float)sz, fs2))
                    {
                        const TextFormatFlags tff = TextFormatFlags.NoPadding;
                        sf = TextRenderer.MeasureText(runText, f, proposedSize, tff);
                    }
                }
                catch (ArgumentException)
                {
                    const D.FontStyle fs2 = D.FontStyle.Bold;
                    try
                    {
                        using (var f = new D.Font(ff, (float)sz, fs2))
                        {
                            const TextFormatFlags tff = TextFormatFlags.NoPadding;
                            sf = TextRenderer.MeasureText(runText, f, proposedSize, tff);
                        }
                    }
                    catch (ArgumentException)
                    {
                        // if both regular and bold fail, then get metrics for Times New Roman
                        // use the original FontStyle (in fs)
                        using (var ff2 = new D.FontFamily("Times New Roman"))
                        using (var f = new D.Font(ff2, (float)sz, fs))
                        {
                            const TextFormatFlags tff = TextFormatFlags.NoPadding;
                            sf = TextRenderer.MeasureText(runText, f, proposedSize, tff);
                        }
                    }
                }
            }
        }
        D.Size s2 = pixelsToEmus(sf.Width, sf.Height, 96, 96, 100, 100);
        return s2;
    }
    public static D.Size GetImageSize(this CWatermarkItemImage watermarkItem)
    {
        var img = new BitmapImage(new Uri(watermarkItem.FilePath, UriKind.RelativeOrAbsolute));
        return pixelsToEmus(img.PixelWidth, img.PixelHeight, img.DpiX, img.DpiY, watermarkItem.ZoomWidth, watermarkItem.ZoomHeight);
    }
于 2016-07-29T17:08:45.260 回答