0

abcpdfの1ページ内でhtmlを中央に配置するのに適したコードがあります。これは、abcpdf を作成した websupergoo 社から提供されました。しかし、アプリケーション プールがシャットダウンし続けており、これはパフォーマンスの問題であると考えています。キャッシュも有効にしています。このコードを最適化する方法はありますか。基本的に何が起こっているかというと、コードが html ページを呼び出し、境界の寸法を計算してブラウザの幅を設定し、pdf の寸法に収まるようにします。これを行うと、htmlページが何度も呼び出されますが、キャッシュされている場合、実際のリクエストは行われず、キャッシュが読み取られると言われました。レンダリングに時間がかかるため、これを行う簡単な方法が必要です。この問題は、abcpdf を使用する URL への複数のリクエストが一度に発生した場合に発生するようです。

            using (var doc = new Doc())
            {
                doc.HtmlOptions.Timeout = 60000;
                doc.HtmlOptions.PageCacheEnabled = true;
                doc.HtmlOptions.PageCacheExpiry = 600000;

                doc.HtmlOptions.Engine = Engine;
                doc.Rect.Inset(PageInsetHorizontal, PageInsetVertical);
                doc.Color.String = "255, 255, 255";

                const double heightTolerance = 18; // in points, the max allowed space at the bottom
                const int widthIncrement = 96; // in pixels, just an appropriate initial browser width increment
                var tallWidth = 0; // the lower browser width
                var wideWidth = 0; // the upper browser width
                Debug.WriteLine("Adding Url: " + Url);
                var id = doc.AddImageUrl(Url);
                var scrollWidth = doc.GetInfoInt(id, "ScrollWidth");
                var contentWidth = doc.GetInfoInt(id, "ContentWidth");
                var toContentWidth = contentWidth - scrollWidth;

                while (true)
                {
                    var width = doc.GetInfoInt(id, "ContentWidth");
                    var height = doc.GetInfoInt(id, "ContentHeight");

                    Debug.WriteLine("Initial Content Width: " + width);
                    Debug.WriteLine("Initial Content Height: " + height);

                    var tooTall = false;
                    var docScrollWidth = doc.GetInfoInt(id, "ScrollWidth");

                    Debug.WriteLine("Scroll Width: " + docScrollWidth);

                    if (docScrollWidth < scrollWidth)
                    {
                        scrollWidth = docScrollWidth;
                        contentWidth = scrollWidth + toContentWidth;

                        Debug.WriteLine("New Scroll Width: " + scrollWidth);
                        Debug.WriteLine("New Content Width: " + contentWidth);
                    }

                    Debug.WriteLine("Width: " + width);

                    if (width + 1 < contentWidth)
                    {
                        Debug.WriteLine("Too Tall: " + Url);
                        tooTall = true;
                    }
                    // assuming doc.Rect originally specifies the maximum bounding area
                    if (tooTall || doc.Rect.Width * height > doc.Rect.Height * width)
                    {
                        Debug.WriteLine("TOO TALL");
                        Debug.WriteLine("Delete Html: " + id);

                        // too tall
                        doc.Delete(id);

                        Debug.WriteLine("Browser Width: " + doc.HtmlOptions.BrowserWidth);

                        if (doc.HtmlOptions.BrowserWidth == 0)
                        {
                            doc.HtmlOptions.BrowserWidth = Convert.ToInt32(height*doc.Rect.Width/doc.Rect.Height);
                            Debug.WriteLine("New BrowserWidth: " + doc.HtmlOptions.BrowserWidth);
                        }
                        else
                        {
                            tallWidth = doc.HtmlOptions.BrowserWidth;

                            Debug.WriteLine("Tall Width: " + tallWidth);
                            Debug.WriteLine("Wide Width: " + wideWidth);

                            if (wideWidth == 0)
                            {
                                doc.HtmlOptions.BrowserWidth = tallWidth + widthIncrement;
                                Debug.WriteLine("New Browser Width: " + doc.HtmlOptions.BrowserWidth);
                            }
                            else if (tallWidth + 1 < wideWidth)
                            {
                                doc.HtmlOptions.BrowserWidth = (tallWidth + wideWidth)/2;
                                Debug.WriteLine("New Browser Width: " + doc.HtmlOptions.BrowserWidth);
                            }
                            else
                            {
                                doc.HtmlOptions.BrowserWidth = wideWidth;
                                Debug.WriteLine("New Browser Width: " + doc.HtmlOptions.BrowserWidth);
                                Debug.WriteLine("Adding Url: " + Url);
                                Debug.WriteLine("Found Fit");
                                doc.AddImageUrl(Url);
                                break;
                            }
                        }
                    }
                    else if (doc.Rect.Width * height < (doc.Rect.Height - heightTolerance) * width)
                    {
                        Debug.WriteLine("TOO WIDE");
                        Debug.WriteLine("Browser Width: " + doc.HtmlOptions.BrowserWidth);

                        // too wide
                        if (doc.HtmlOptions.BrowserWidth == 0)
                        {
                            doc.HtmlOptions.BrowserWidth = Convert.ToInt32(height * doc.Rect.Width / doc.Rect.Height);
                            Debug.WriteLine("New Browser Width: " + doc.HtmlOptions.BrowserWidth);
                        }
                        else
                        {
                            wideWidth = doc.HtmlOptions.BrowserWidth;

                            Debug.WriteLine("Tall Width: " + tallWidth);
                            Debug.WriteLine("Wide Width: " + wideWidth);

                            if (tallWidth == 0)
                            {
                                doc.HtmlOptions.BrowserWidth = wideWidth >= 2 * widthIncrement ? wideWidth - widthIncrement : wideWidth / 2;
                                Debug.WriteLine("New Browser Width: " + doc.HtmlOptions.BrowserWidth);
                            }
                            else if (tallWidth + 1 < wideWidth)
                            {
                                doc.HtmlOptions.BrowserWidth = (tallWidth + wideWidth)/2;
                                Debug.WriteLine("New Browser Width: " + doc.HtmlOptions.BrowserWidth);
                            }
                            else
                            {
                                Debug.WriteLine("Found Fit");

                                break;
                            }
                        }

                        Debug.WriteLine("Delete Html: " + id);

                        doc.Delete(id);
                    }
                    else
                        break;

                    Debug.WriteLine("Adding Url: " + Url);

                    id = doc.AddImageUrl(Url);
                }

                using (var ms = new MemoryStream())
                {
                    doc.Save(ms);
                    if (ms.CanSeek)
                    {
                        ms.Seek(0, SeekOrigin.Begin);
                    }
                    return ms.GetBuffer();
                }
            }
4

1 に答える 1