Adding a blank page in Workflow Process

Hello,

I am attempting to add a blank page in the workflow process using the Alembic Editor. I have the following code i am attempting to run with the run script process:

var PDF1 = Watch.GetPDFEditObject();
PDF1.Open(Watch.GetJobFileName(),false);
var pdfRect = PDF1.Pages(0).Size();

PDF1.Pages().Insert(0, pdfRect);
PDF1.Save();
PDF1.Close();

image

In my workflow I print to the PP printer, use the pdf splitter to split on a word, and then attempt to try and add a blank page before each of those documents.

The error I am getting is

Any advice or guidance would be helpful. I’ve attempted to follow the documentation on
http://help.objectiflune.com/files/EN/alambicedit-api/AlambicEdit.html

You were nearly there but:

1- PDF1.Save(); needs a parameter.
2- Also add a CollectGarbage();, before the PDF1.Close().

As so:

var PDF1 = Watch.GetPDFEditObject();
PDF1.Open(Watch.GetJobFileName(),false);
var pdfRect = PDF1.Pages(0).Size();

PDF1.Pages().Insert(0, pdfRect);
PDF1.Save(false);
CollectGarbage();
PDF1.Close();

If you read the code in the Close(); in the Alambic API, it explains why you need to do a CollectGarbage().

1 Like

Thank you so much! It said on line 6 and for some reason I had been troubleshooting 5…Whoops.

Glad to see that this works as intended. Will be useful.

How would I modify this if need to add a blank page to the end of the document, if the total number of pages was odd?

var PDF1 = Watch.GetPDFEditObject();
PDF1.Open(Watch.GetJobFileName(),false);
var pdfRect = PDF1.Pages(0).Size();

var totalPages = PDF1.Pages().Count();
//Watch.Log("Total Pages: " + totalpages, 2);

var addBlank = isOdd(totalPages)
//Watch.Log("Add Blank: " + addBlank, 2);

if (addBlank == 1) {
PDF1.Pages().Insert(0, pdfRect);
}

PDF1.Save(true);
CollectGarbage();
PDF1.Close();

function isOdd(num) {
return num % 2;
}

Your insert() statement adds the page at the start of the PDF. Use this instead:

PDF1.Pages().Insert(PDF1.Pages().Count(), pdfRect);

Works great except when I have a single page, then I get an error for an Unterminated string when I perform the PDF1.Save(true); in the script. Unfortunately there are several 1 page PDF files in the batch of PDF files

I don’t know if this matters, but the input data files are PDF 1.3.

W3602 : Error 0 on line 16, column 1: AlambicEdit.AlambicEditPDF.1: Error saving PDF to 'C:\ProgramData\Objectif Lune\PlanetPress Workflow 8\PlanetPress Watch\Debug\debugE70F0EE.dat': Unterminated string.

Works fine on my end, regardless of the number of pages. The PDF version number is irrelevant.
I am running this in Workflow 2020.2, but it should work with any version of OL Connect Workflow.

Here’s a sample one-page PDF I used to test it out: 1-page invoice.pdf (200.0 KB) . Try it on your system and see if that works. If it does, then we know it’s something to do with your own 1-page PDFs, which will help us narrow down the cause of the issue.

Your PDF file works for me.

If you can share your PDF with me (either here or in a private message), I will take a look.

I sent a pdf file via email

There’s definitely something peculiar about that PDF you sent. Using Acrobat, I can’t even view the Properties for the file (CTRL-D). It also looks like that one-pager was actually extracted from a larger 21-page file, I suspect this may have something to do with the issue (as if some resources weren’t exported along with that one page).

I unfortunately don’t have the tools to explore the matter any further, I will ask our dev team to take a look at it. I’ll keep you posted.

Thanks.

We don’t have control over the PDF creation, we just consume the files.
It will be good to know why. I have three different scripts and all three fail on the one pagers.

In the meantime, here’s a workaround that appears to do the trick with the file you sent:

var PDF1 = Watch.GetPDFEditObject();
var PDF2 = Watch.GetPDFEditObject();

var oriFileName = Watch.GetJobFileName();

PDF1.Open(oriFileName,false);
PDF2.Create(oriFileName+".copy.pdf");

var pageCount = PDF1.Pages().Count();

PDF2.Pages().InsertFrom2(PDF1.Pages(),0,pageCount,0);

if (pageCount % 2) {
  var pdfRect = PDF2.Pages(0).Size();
  PDF2.Pages().Insert(pageCount, pdfRect);
}

PDF2.Save(true);
CollectGarbage();
PDF2.Close();
PDF1.Close();

var oFSO = new ActiveXObject("Scripting.FileSystemObject");
oFSO.DeleteFile(oriFileName);
oFSO.CopyFile(oriFileName+".copy.pdf",oriFileName);

Instead of adding a blank page to the original PDF, the script copies all pages from the file into a new PDF. It then adds a blank page if needed.

By the way, I suggest you use the same code for all PDFs, not just those to which you have to add a blank page, as the script has the effect of creating a normalized PDF. This will prevent issues down the road if the PDFs ever need any additional processing.

This appears to be working like a charm.
Agreed, updating the old 1.3 PDF files is much better.

Our R&D team has taken a look at the sample file you provided. As we suspected, the file is broken. Acrobat Pro, when asked to report PDF syntax issues, returns the following message: An error occurred while parsing a contents stream. Unable to analyze the PDF file.

When attempting to save the document, Acrobat Pro encounters an error. When trying to browse the internal structure of the document, Acrobat Pro returns an unhandled exception message, which essentially means it can’t make heads or tails of the file.

So my initial hunch seems to be correct: whatever process extracted that one-page file from a larger one seems to have done a really poor job of it. There is nothing we can do to fix the file after the fact, so my suggestion stands: use the last script I posted to create a brand new PDF before you attempt to make any changes to it. Fortunately, for one-pagers, this won’t introduce any noticeable delays into the entire workflow.

What a great code! Will come in very handy.
Is a person able to use this Alembic API code to auto crop pdfs?

Thanks much
John

Yes, you could use the Mergewith2() method and specifiy a scaling factor.
See https://help.objectiflune.com/files/EN/alambicedit-api/AlambicEdit.html#a3b2c1d3f6f38a22e6e96fcc68040fbd

Thanks for the quick answer.
I tried putting together some code to accommodate that command, but I am very unfamiliar with Alembic code :frowning:
I have no idea what I am doing, as far as this code goes.

You’d better open a ticket with our Support team, you will be able to explain in more details what you need.