Добавить номера страниц в документ PDF

Как я могу расширить содержание PDF на следующую страницу, если содержание PDF не все умещается на одной странице. В настоящее время я создаю PDF как A4.

Также, как я могу указать количество страниц, например, Страница 1 из 12 в правом нижнем углу.

3 ответа

Чтобы добавить текст в документ PDF и создать новые страницы, если текст не подходит, вы можете использовать следующий код.

theID = theDoc.AddHtml(theText)
While theDoc.Chainable(theID)
  theDoc.Page = theDoc.AddPage()
  theDoc.FrameRect
  theID = theDoc.AddHtml("", theID)
Wend

Чтобы добавить номера страниц и количество страниц на каждую страницу, используйте это.

theDoc.Rect = "100 50 500 150" 'position of page number
For i = 1 To theDoc.PageCount
  theDoc.PageNumber = i
  theDoc.AddText i & "/" & theDoc.PageCount
Next

Редактировать: C# версия

Doc doc = new Doc();
doc.Page = doc.AddPage();
int id = doc.AddImageUrl("http://www.google.com/", true, 700, true);
while (true)
{
    if (!doc.Chainable(id))
        break;
    doc.Page = doc.AddPage();
    id = doc.AddImageToChain(id);
 }

 doc.Font = doc.AddFont("Arial");
 doc.FontSize = 9;
 for (int i = 1; i <= doc.PageCount; i++)
 {
     doc.PageNumber = i;
     doc.Rect.String = "470 55 570 65";
     doc.HPos = 1;
     doc.AddText("Page " + i.ToString() + " of " + doc.PageCount.ToString());
 }

Что вам нужно сделать, это сначала убедиться, что у вас есть документ, который автоматически расширится до требуемого размера, приведенный ниже пример C# возьмет URL и создаст документ до 50 страниц, а при необходимости увеличится. (Пример ниже добавляет пространство в документе для верхнего и нижнего колонтитула)

  private static Doc CreateNewDoument(string currentURL)
        {
            var theDoc = new Doc();

            theDoc.MediaBox.String = "A4";

            theDoc.HtmlOptions.PageCacheEnabled = false;
            theDoc.HtmlOptions.ImageQuality = 101;
            theDoc.Rect.Width = 719;
            theDoc.Rect.Height = 590;
            theDoc.Rect.Position(2, 70);
            theDoc.HtmlOptions.Engine = EngineType.Gecko;

            // Add url to document.););
            try
            {
                //Make sure we dont have a cached page.. 
                string pdfUrl = currentURL+ "&discache=" + DateTime.Now.Ticks.ToString();

                int theID = theDoc.AddImageUrl(pdfUrl);
                //Add up to 50 pages
                for (int i = 1; i <= 50; i++)
                {
                    if (!theDoc.Chainable(theID))
                        break;
                    theDoc.Page = theDoc.AddPage();
                    theID = theDoc.AddImageToChain(theID);
                }
                theDoc.PageNumber = 1;
            }
            catch (Exception ex)
            {
                //HttpContext.Current.Response.Redirect(pdCurrentURL);

                throw new ApplicationException("Error generating pdf..." + "Exception: " + ex + "<br/>URL for render: " + pdfUrl+ "<br/>Base URL: " + currentURL);
            }

            return theDoc;
        }

Затем, чтобы добавить нижний колонтитул на каждую страницу, просто используйте следующий метод. Метод ниже добавляет синее поле с текстом внутри.

    private static Doc AddFooter(Doc theDoc)
    {
        int theCount = theDoc.PageCount;
        int i = 0;
        for (i = 1; i <= theCount; i++)
        {
            theDoc.Rect.String = "20 15 590 50";
            theDoc.Rect.Position(13, 30);
            System.Drawing.Color c = System.Drawing.ColorTranslator.FromHtml("#468DCB");
            theDoc.Color.Color = c;
            theDoc.PageNumber = i;
            theDoc.FillRect();

        }
        i = 0;
        for (i = 1; i <= theCount; i++)
        {
            theDoc.Rect.String = "20 15 260 50";
            theDoc.Rect.Position(190, 20);
            System.Drawing.Color cText = System.Drawing.ColorTranslator.FromHtml("#ffffff");
            theDoc.Color.Color = cText;
            string theFont = "Century Gothic";
            theDoc.Font = theDoc.AddFont(theFont);
            theDoc.FontSize = 17;
            theDoc.PageNumber = i;
            theDoc.AddText("Page " + i +" of " +theCount); //Setting page number  
            //theDoc.FrameRect();
        }
        return theDoc;
    }

Тогда просто назови весь лот.. как

        private static bool BuildPDF(string pdfPath)
    {
        bool pdfBuilt = false;

        try
        {
            var theDoc = new Doc();

            string pdGeneral = "http://ww.myurl.com";
            theDoc = CreateNewDoument(pdGeneral);

            theDoc = AddFooter(theDoc);

            theDoc.Save(pdfPath);
            theDoc.ClearCachedDecompressedStreams();
            theDoc.Clear();
            theDoc.Dispose();

            pdfBuilt = true;
        }
        catch (Exception)
        {
            //PDF normaly in use dont worry..
        }

        return pdfBuilt;
    }

ABC PDF используется для преобразования HTML-страницы в PDF, установить ваш контент на две HTML-страницы, он будет генерировать две страницы в формате PDF. Для более подробной информации, вы можете просмотреть это. В этой части слева есть "контент", нажмите " Примеры", затем выберите "Пример HTML-постраничного обмена".

Другие вопросы по тегам