Skip to content

Canvas::RenderPages method

Render all pages of the extractor to the canvas.

Prototype

void RenderPages(Extractor extractor)
void RenderPages(Extractor extractor) throws IGRException;
def RenderPages(self, extractor: Extractor) -> void
void RenderPages(Extractor extractor)

Parameters

extractor: Extractor : The extractor containing the pages to render.

Sample Code

1
2
3
4
5
6
7
8
9
using Hyland.DocumentFilters;

var api = new Hyland.DocumentFilters.Api();
api.Initialize("License Code", ".");

using var doc = api.OpenExtractor("filename.doc", OpenMode.Paginated);
using var canvas = api.MakeOutputCanvas("filename.pdf", CanvasType.PDF);

canvas.RenderPages(doc);
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import com.perceptive.documentfilters.*;

public class hidef_pdf
{
    public static void main(String[] args) throws Exception
    {
        DocumentFilters df = new DocumentFilters();
        df.Initialize(("License Code"), ".");

        try (Extractor doc = df.GetExtractor("filename.doc"))
        {
            try (Canvas canvas = df.MakeOutputCanvas("filename.pdf", isys_docfiltersConstants.IGR_DEVICE_IMAGE_PDF, ""))
            {
                doc.Open(isys_docfiltersConstants.IGR_FORMAT_IMAGE, "");

                for (int i = 0, c = doc.GetPageCount(); i < c; ++i)
                {
                    try (Page page = doc.GetPage(i)) {
                        canvas.RenderPage(page);
                    }
                }
            }
        }
    }
}
1
2
3
4
5
6
7
8
from DocumentFilters import *

api = DocumentFilters()
api.Initialize("License Code", ".")

with api.OpenExtractor("filename.doc", mode=IGR_FORMAT_IMAGE) as doc:
    with api.MakeOutputCanvas("filename.pdf", canvasType=IGR_DEVICE_PDF) as canvas:
        canvas.RenderPages(doc)
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <DocumentFiltersObjects.h>

int main() {
    try {
        // Create and initialize the API object
        Hyland::DocFilters::Api api;
        api.Initialize("License Code", ".");

        // Open the input file
        Hyland::DocFilters::Extractor doc = api.OpenExtractor("filename.doc", Hyland::DocFilters::OpenMode::Paginated);

        // Create the output canvas 
        Hyland::DocFilters::Canvas canvas = api.MakeOutputCanvas("output.pdf", Hyland::DocFilters::CanvasType::PDF);

        // Render all pages to the output
        canvas.RenderPages(doc);
    } catch (const std::exception& e) {
        std::cerr << "Error: " << e.what() << std::endl;
        return 1; // Indicate an error
    }

    return 0; // Successful execution
}