pdf to vector converter

How to convert PDF file to PCL file from C# source code?

Hi all,

I need to convert PDF to PCL to send to HP Laser Jet which are configured only to print PCL files. I have got PDF files for printing, I need to convert them to PCL and send them to Printer.
 
Is there any way to do this?
 
Thanks in advance...
Customer
----------------------------
I need convert PDF files to PCL files programmatically. I have a PDF file, I want to convert this PDF file into PCL programmatically. we are using javax.print API. Is there any way to convert PDF to PCL using Java API?

Customer
----------------------------

image
Thanks for your message, you can use VeryDOC PDF to Vector Converter Command Line to batch convert PDF files to PCL files, you may download the trial version of VeryDOC PDF to Vector Converter Command Line from this web page to try,

https://www.verydoc.com/pdf-to-vector.html

After you download it, you can run following command line to convert a PDF file to PCL file,

pdf2vec.exe "D:\downloads\00008.pdf" "D:\downloads\00008.pcl"

You can resize the PDF page size to fit to target printer's paper size, for example,

pdf2vec.exe -scalex 95 -scaley 95 -offsetx 100 -offsety -500 -debug -paper pdf "D:\downloads\00008.pdf" "D:\downloads\00008.pcl"

If you have a special version of PCL Printer Driver, you can use that PCL Printer Driver to instead of default "VeryPDF PCL Writer" printer, for example,

pdf2vec.exe -printer "VeryPDF Series PCL" -scalex 95 -scaley 95 -offsetx 100 -offsety -500 -debug -paper pdf "D:\downloads\00008.pdf" "D:\downloads\00008.pcl"

You can call pdf2vec.exe from your C# code to batch convert from PDF files to PCL files, here is a sample C# source code t convert from PDF files to PCL files,

using System.Diagnostics;

class Program
{
    static void Main()
    {
    LaunchCommandLineApp();
    }

    /// <summary>
    /// Launch the legacy application with some options set.
    /// </summary>
    static void LaunchCommandLineApp()
    {
    // Use ProcessStartInfo class
    ProcessStartInfo startInfo = new ProcessStartInfo();
    startInfo.CreateNoWindow = false;
    startInfo.UseShellExecute = false;
    startInfo.FileName = "D:\\VeryPDF\\pdf2vec.exe";
    startInfo.WindowStyle = ProcessWindowStyle.Hidden;
    startInfo.Arguments = "-scalex 95 -scaley 95 -offsetx 100 -offsety -500 -debug -paper pdf \"D:\\downloads\\00008.pdf\" \"D:\\downloads\\00008.pcl\"";

    try
    {
        // Start the process with the info we specified.
        // Call WaitForExit and then the using statement will close.
        using (Process exeProcess = Process.Start(startInfo))
        {
        exeProcess.WaitForExit();
        }
    }
    catch
    {
        // Log error.
    }
    }
}

If you encounter any problem with VeryDOC PDF to Vector Converter Command Line software, please feel free to let us know, we are glad to assist you asap.

VeryPDF

VN:F [1.9.20_1166]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)
docprint pro

I have a legacy system I can print reports off of and that’s about it, I was looking for a solution to Capture Printer Output to PDF Files

I have a legacy system I can print reports off of and that's about it. I was looking into possibly capturing that data. 

Customer
--------------------------------------
https://www.verypdf.com/app/document-converter/index.html

Thanks for your message, please look at following web page, you can use -hookprinter or -redirectprinter options in docPrint Pro v8.0 to capture the print jobs,

https://www.verypdf.com/wordpress/201802/how-to-intercept-and-capture-a-print-job-and-convert-it-to-pdf-plain-text-image-files-and-then-print-43680.html

With -hookprinter option, you can capture the print jobs from all printers which installed in your system.

"C:\Program Files (x86)\docPrint Pro v8.0\artprint.exe" -hookprinter

image

With -redirectprinter option, the docPrint Printer will because an intermediary printer, you can print a report to docPrint Printer, docPrint Printer will capture the print job and save to PDF or other formats easily.

"C:\Program Files (x86)\docPrint Pro v8.0\artprint.exe" -redirectprinter

image

You may also refer to more articles from following web page,

https://www.verypdf.com/wordpress/tag/capture-printer
https://www.verypdf.com/wordpress/tag/intercept-printer

If you encounter any problem with -hookprinter or -redirectprinter option in docPrint Pro v8.0, please feel free to let us know, we are glad to assist you asap.

VeryPDF

VN:F [1.9.20_1166]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)
pdf to vector converter

We are using your PDF to Vector Converter Command Line to convert from PDF files to PCL files

We are using your PDF to Vector Converter Command Line to convert from PDF files to PCL files.

We're doing a test right now.
Below is an error during the test.
1. -xoffset, -yoffset, -offsetx, -offsety : The program doesn't start.
2. -pagerange option is not working.
3. -scale option is not working.
4. When our printer prints out the pcl file, the PCLXL error page is being printed on the last page.
PCLXL error message : Warning IllegalMediaType.
5. Device and Printers -> VerPDF PCL Writer -> printer properties -> Advanced -> Driver : If change the printer driver from HP Universal Printing PCL 6 Driver to our printer driver, PCLXL Error page not printed. but -color option is not working.

The program(pdf2vec.exe) version is 4.5.0.1
Attached is our printer driver we tested.

I think download something when start a program for the first time. Is that right?
Is downloading and install a printer driver?
Is it possible to run it in a place where the network is blocked?

Customer
------------------------------------

https://www.verydoc.com/pdf-to-vector.html

image
>>We're doing a test right now.
>>Below is an error during the test.
>>1. -xoffset, -yoffset, -offsetx, -offsety : The program doesn't start.

Thanks for your message, the options are "-offsetx" and "-offsety", you can use these options to set the margins for left and top, and then use "-scalex" and "-scaley" to set the margins for right and bottom, for example,

pdf2vec.exe -scalex 95 -scaley 95 -offsetx 100 -offsety -500 -debug -paper pdf D:\downloads\file02.pdf D:\downloads\out.pcl

Can you work fine when you run above command line in your system?

>>2. -pagerange option is not working.

Yes, -pagerange option is not working when you converting from PDF file to PCL file, however, we will support it in your purchased version, please don't worry about this matter.

>>3. -scale option is not working.

-scale option is depend on the printer driver, if printer driver supports this option, -scale option will work, if printer driver doesn't support -scale option, you may use "-scalex" and "-scaley" options to instead of -scale option.

>>4. When our printer prints out the pcl file, the PCLXL error page is being printed on the last page.
>>PCLXL error message : Warning IllegalMediaType.
>>5. Device and Printers -> VerPDF PCL Writer -> printer properties -> Advanced -> Driver : If change the printer driver from HP Universal Printing PCL 6 Driver to our printer driver, PCLXL Error page not printed. but -color option is not working.

Does your printer driver support color printing option? if yes, -color option should be work without any problem. If your printer driver supports color printing but without color in the printout, please send to us a download URL to your printer driver, we will research this problem and come back to you asap.

>>I think download something when start a program for the first time. Is that right?

No, it doesn't download anything on the first time, it just installs the necessary printer driver on the first time.

>>Is downloading and install a printer driver?

The printer driver is come from your Windows system itself, we don't download the printer driver from internet, so the internet connection is not necessary.

>>Is it possible to run it in a place where the network is blocked?

Yes, of course, you can run pdf2vec.exe offline, that's no problem.

VeryPDF

VN:F [1.9.20_1166]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)
pdf security

How to apply "Logon User Name" and "Logon Password" to a PDF file on Ubuntu system? VeryPDF Cloud DocSafe Solution

Hi,
Can it be run on Ubuntu?
I want to to do the following.

1. Mr.A upload pdf on my server.
2. VeryPDF embed JavaScript to that pdf.
3. when Mr.B open the file he will have to input username and password.
4. the JavaScript will be used to add another page (prior to the original pdf, on that newly generated pdf will be a form) receive username and password to authenticate on my server.
5. if username and password is correct then Mr.B can open that pdf.

Best,
Customer
-----------------------------------
Thanks for your message, I guess VeryPDF Cloud DocSafe may reach your requirement, you may test VeryPDF Cloud DocSafe from this web page,

http://drm.verypdf.com/online/

image

You (or User A) can select a PDF file, enter "Logon User Name" and "Logon Password" under "DRM" tab, you can also add Text, Image, PDF, Line watermarks with opacity option, and then upload this PDF file the the server (file center server), the server will protect this PDF file with DRM options.

When User B opening this PDF file, he has to enter the "Logon User Name" and "Logon Password" in order to open this PDF file, if he don't know the user name or password, he can't open this PDF file at all.

image

We are provide entire solution for the VeryPDF Cloud DocSafe, you can also run VeryPDF Cloud DocSafe on your own servers, it supports Ubuntu, CentOS, etc. Linux systems, if you are interested in VeryPDF Cloud DocSafe Solution, please feel free to let us know, we will provide more details to you shortly.

btw, VeryPDF has also a "Javascript to PDF Embedder Command Line" software, you may download it from this web page to try,

https://www.verypdf.com/app/javascript-to-pdf-embedder-cmd/index.html

VeryPDF

VN:F [1.9.20_1166]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)
advanced pdf tools

How to apply an open password to a PDF file using advanced pdf tools command line software?

I just downloaded advanced pdf tools command line 3.0.

I ran the test-encryption.bat.

As expected, it created a pdf test-encryption.pdf

But the PDF did not require an open password.

Does the trial version correctly work to apply an open password?

Customer
---------------------------------------------

https://www.verypdf.com/app/encrypt-pdf/try-and-buy.html#buyencli

image
Thanks for your message, yes, the trial version does able to apply an open password to a PDF file.

You may run following command lines to apply an open password or only owner password to a PDF file,

pdftools.exe -S openpwd=123 -S ownerpwd=456 -S keylen=2 -S permission=129 -i test.pdf -o _test-encryption-with-open-password.pdf

pdftools.exe -S ownerpwd=456 -S keylen=2 -S permission=129 -i test.pdf -o _test-encryption-without-open-password.pdf

If you couldn't get it work, please feel free to send to us your sample PDF file for test purpose, after we check your sample PDF file, we will figure out a solution to you asap.

VeryPDF

VN:F [1.9.20_1166]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)