Search found 7 matches

by Tiago
2018-02-28T06:42:00-07:00
Forum: Users
Topic: Script to Split Pdf and Add WaterMark to MultiPDF
Replies: 10
Views: 4084

Re: Script to Split Pdf and Add WaterMark to MultiPDF

i resolved this issue another way, i also need to add the watermark to some photos so for now i had the watermark to the images and then convert the image with the watermark to pdf i leave the script for anyone that may need it, just change the bold parts to suit your OS @echo off cls setlocal Enabl...
by Tiago
2018-02-27T01:01:52-07:00
Forum: Users
Topic: Script to Split Pdf and Add WaterMark to MultiPDF
Replies: 10
Views: 4084

Re: Script to Split Pdf and Add WaterMark to MultiPDF

any help would be appreciated!

Kind Regards
by Tiago
2018-02-26T04:50:09-07:00
Forum: Users
Topic: Script to Split Pdf and Add WaterMark to MultiPDF
Replies: 10
Views: 4084

Re: Script to Split Pdf and Add WaterMark to MultiPDF

Im new to scripts and i basically modified a script that i found to suit my needs, after some tries a managed to get the multitiff to split and then passed to pdf and now im trying to add the watermark but for some reason i cant get it to work
by Tiago
2018-02-26T04:32:14-07:00
Forum: Users
Topic: Script to Split Pdf and Add WaterMark to MultiPDF
Replies: 10
Views: 4084

Re: Script to batch split Multipdf to pdf

@echo off cls setlocal EnableDelayedExpansion pushd C:\Users\Tiago.Lima\Desktop\TESTEPDF\PDFS echo. echo ---Watermarking PDF--- echo. echo Using magick echo. echo. FOR /R %%a IN (*.PDF) DO ( Set Folder=%%~dpa set nome=%%~na cd !Folder! echo A converter ficheiro !nome! na pasta !Folder! REM *********...
by Tiago
2018-02-26T02:17:01-07:00
Forum: Users
Topic: Script to Split Pdf and Add WaterMark to MultiPDF
Replies: 10
Views: 4084

Re: Script to batch split Multipdf to pdf

using a similar script as before but changing the command in the last row shouldn't be enough? i tried this but i didn't succeed, any help would be appreciated. @echo off cls setlocal EnableDelayedExpansion pushd I:\TESTE_MULTIPDFPDF-SINGLEPDF\MULTIPDF echo. echo ---Watermarking PDF--- echo. echo Us...
by Tiago
2018-02-23T04:03:37-07:00
Forum: Users
Topic: Script to Split Pdf and Add WaterMark to MultiPDF
Replies: 10
Views: 4084

Re: Script to batch split Multipdf to pdf

Thanks for the quick response snibgo I had tried that but with no results. as soon as i got your response i decided to try with a smaller pdf and it worked like a charm, i just had to be more patient. That was the first thing i did, replace the .tif to .pdf but the folder created was not getting the...
by Tiago
2018-02-23T03:18:58-07:00
Forum: Users
Topic: Script to Split Pdf and Add WaterMark to MultiPDF
Replies: 10
Views: 4084

Script to Split Pdf and Add WaterMark to MultiPDF

Hello everyone, I need to convert a folder with multiple pdfs at any given time and a i need a script to transform each and every multipdf into single pdfs. for example, i have a file called A1.pdf, its a pdf with 300 pages, and i need to split it into 300 single pdfs. but i need to do it in a batch...