@VeryPDF Blog

Can’t search text in PDF file which created by PCL to PDF Converter

I am evaluating the trial version of PCL to PDF conversion  version 2.0.

Everything works OK, But

We want to write a set of delinquent notices to a PDF file and be able to search the PDF file by account number.

The Find option in Adobe reader does not seem to work with these files.  Am I missing something?
================================
This PDF file is not contain searchable text contents, so you can't search the text contents correctly.

Can you please email to us your original PCL file? After we checked your original PCL file, we will figure out a solution to you shortly.

VeryPDF
================================
I have attached the original PCL file.
================================

We have checked your PCL file, we noticed your PCL file contains some embedded fonts, so our PCL to PDF Converter will render these characters with embedded fonts, this will cause output PDF file not searchable. However, we will add a "Make searchable PDF" feature in the next version of PCL to PDF Converter, this new feature does allow you to convert any PCL files to searchable PDF files, include scanned PCL files and text based PCL file.

VeryPDF

PDFStamp Command Line

PDF annotator: add stamps to PDF invoice

Dear sir/madam,

We are looking for a product which offers the possibility to add stamps to a PDF invoice, using command line.
Can you tell me if you offer this kind of PDF annotator? If so, we would like to use a free trial version.
 
Kind regards,
===========================
In addition to the previous mail, I have added a PDF invoice to illustrated the expected result of the annotator. The stamp is located at the top of the invoice.
===========================
Please download PDF Stamp Command Line v2.5 from our website to try, we hoping PDF Stamp Command Line v2.5 will work fine to you,

https://www.verypdf.com/pdfstamp/index.htm

VeryPDF

DOC to Any Converter

DOCX to PDF Converter

Hi,
 
I have a web server IIS application where I would like to convert .docx to .pdf documents. This is in order to display the .pdf document on a browser.
 
It appears that your tool can do this. However, I have a few questions:
(1) Can your tool do this non interactively.
      Let us take for example the following application:
      (a) There is a IIS web service hosting an ASPX page.
      (b) User clicks a button on the ASPX page
      (c) The web service would convert a .docx file to .pdf and display this on the web page.
            This activity would be done on the web server.
      Would your tool be able to perform step (c)
(2) Does your tool need Microsoft Office Word installed on the web server.
(3) Would your tool run on a server running 'Windows Server 2008 R2 Standard'.
====================================
Hi,

>>(1) Can your tool do this non interactively.
>>      Let us take for example the following application:
>>      (a) There is a IIS web service hosting an ASPX page.
>>      (b) User clicks a button on the ASPX page
>>      (c) The web service would convert a .docx file to .pdf and display this on the web page.
>>            This activity would be done on the web server.
>>      Would your tool be able to perform step (c)

Yes, our product can be called from web service, that's no problem.

>>(2) Does your tool need Microsoft Office Word installed on the web server.

Yes, you need install MS Office Word to your server.
>>(3) Would your tool run on a server running 'Windows Server 2008 R2 Standard'.

Yes, our product does support Windows Server 2008 R2 system.
Please refer to more examples from following web page, we hoping these examples will helpful to you,

http://www.verydoc.com/doc-to-any-shell.html

VeryPDF

DocPrint Pro

TIF color file compression question

Hello

We are problems with docPrint going to other tif file compressions. Every time I select any custom tif color compression settings in docPrint the result file always shows Packbits, which is problematic with another software tif viewer we are using.

Here is the tif compression settings I am saving it as:
Here is the file details on the output:

docprint tiff compression options
docprint tiff compression options

 I am running Windows 7 Pro 64-bit if that relevant.

Thank you
==================================

After you get the TIFF file, you can use our tiffcp.exe to re-compress TIFF file by other compression methods easily,
C:\Program Files\docPrint Pro v5.0\psdriver\tiffcp.exe

For example,

"C:\Program Files\docPrint Pro v5.0\psdriver\tiffcp.exe"  -c none C:\test.tif C:\out.tif

"C:\Program Files\docPrint Pro v5.0\psdriver\tiffcp.exe"  -c g4 C:\test.tif C:\out.tif

"C:\Program Files\docPrint Pro v5.0\psdriver\tiffcp.exe"  -c zip C:\test.tif C:\out.tif

VeryPDF

DOC to Any Converter

VeryDOC DOC to Any Converter permission problem

Hi VERYDOC team.

I am currently evaluating your product "VeryDOC DOC to Any Converter" to convert .doc,.docx,.xls,.xlsx,.csv  to .pdf format.

I downloaded trial version of doc2any_cmd.zip file from your website, unzipped it to folder and copy it to C:\ directory.

Product name - DOC to Any Converter Command Line
Product version - 2, 3, 0, 1
Operating System – Microsoft Window XP Professional Version 2002 Service Pack 3

Here is a problem that I have.

From code below I generate batch file with following command

C:\TestProjects\pdfconvertion\doc2any.exe -useprinter C:/TestProjects/pdfconvertion/example.xls C:/TestProjects/pdfconvertion/example.pdf

string strFilePath = working_directory + "convert.bat";

//create batch file
StreamWriter sw = new StreamWriter(strFilePath);
foreach (string filename in filestoconvert)
{
 Uri curfilepath = new Uri(working_directory + filename);

 string convertfilename = Path.GetFileNameWithoutExtension(curfilepath.AbsolutePath) + ".pdf";
 Uri convertfilepath = new Uri(Path.Combine(outputpath, convertfilename));
 sw.WriteLine(working_directory + "doc2any.exe -useprinter " + curfilepath.AbsolutePath + " " + convertfilepath.AbsolutePath);
 }
 sw.Close();
By code below I am trying to execute batch file by spinning Process object:
       
 //Context.User.Identity.AuthenticationType = "NTLM";

 Process proc = new Process();
 proc.StartInfo.FileName = strFilePath;
 proc.StartInfo.WorkingDirectory = working_directory;           
 proc.StartInfo.UseShellExecute = false;
 proc.StartInfo.CreateNoWindow = true;
 proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
 //proc.StartInfo.RedirectStandardOutput = true;
 proc.Start();
 //string output = proc.StandardOutput.ReadToEnd();
 proc.WaitForExit();

Here is a problem.

If I start my app and use "default web service" start up option (VS generates it own "ASP.NET Development Server at some randow Port) – code works fine.
Code runs under currently logged in account. User.Identity is set to my window account and I am admin to my machine.
User.Identity properties:
AuthenticationType – "NTLM"
IsAuthenticated – true
Name – "domain\name"

If I run this app under IIS account(by default – ASPNET  with limited privileges). Process not executed which make sence because of account access limitation.

 Then I tried to specify additional parameters of Process:
 proc.StartInfo.Domain = "domain";
 proc.StartInfo.UserName = "name";
 SecureString pwd = new SecureString();
 foreach (Char c in "password")
 {
     pwd.AppendChar(c);
 }
 proc.StartInfo.Password = pwd;

No luck. Cmd.exe Application Error: "The application failed to initialize properly (0xc0000142) Click on OK to terminate the application.

Ok then I change IIS setting and enable only "Integrated Window Authentication".
Also removed this code:
proc.StartInfo.Domain = "domain"; proc.StartInfo.UserName = "name"; SecureString pwd = new SecureString();
 foreach (Char c in "password")
 {
     pwd.AppendChar(c);
 }
 proc.StartInfo.Password = pwd;

User.Identity properties:
AuthenticationType – "Negotiate"
IsAuthenticated – true
Name – "domain\name"
No luck. Application hangs on this line proc.Start();
Then I tried to put convertion code into web service and call webservice with netword credentials.

localhost.ConvertToPDF service = new localhost.ConvertToPDF();
CredentialCache cache = new CredentialCache(); //Create an instance of the CredentialCache class.
cache.Add(new Uri(service.Url), "NTLM", new NetworkCredential("name", "password", "domain")); // Add a NetworkCredential instance to CredentialCache.
service.Credentials = cache; //Assign CredentialCache to the Web service Client Proxy(myProxy) Credetials property.
Service.DoConvertion();

User.Identity in webservise when called:
AuthenticationType – "NTLM"
IsAuthenticated – true
Name – "domain\name"

No luck.
If I go directly to generated batch file and click it – it works.

Here is my question.
What access right you expecting in doc2any.exe app? On what folder, objects …?

What permission right I must grand to folder(s),object(s)…

I tried to give "Everyone" access with full control rights to folder where doc2any.exe located – no luck.
Tried to add ASPNET account to Admin group. No luck. I run out of ideas but it is obviously permission problem.

I need your help ASAP.

Thank you in advance.
===================================================
Hi,

Note: On 64bit Windows 2008 (R2) system, please create a new "Desktop" directory inside of "C:\Windows\SysWOW64\config\systemprofile\", creating this directory and rebooting server, then doc2any.exe works, this is a profile problem on Windows 2008 (R2) system.

On Windows 2008 Server x64, please make this folder.

C:\Windows\SysWOW64\config\systemprofile\Desktop

On Windows 2008 Server x86, please make this folder.

C:\Windows\System32\config\systemprofile\Desktop

This operation will take away office automation problems in Windows 2008 system, a Desktop folder is necessary in the "systemprofile" folder to open file by MS Office. This folder is disappear from Windows 2008 system, so you need create this folder by manual, Windows 2003 has the folder, so Windows 2003 hasn't this problem.

Please also refer to following web page to set permission to MS Word DCOM,

http://www.verydoc.com/doc-to-any-faq.html

you can also refer to more examples for DOC to Any Converter from following page,

http://www.verydoc.com/doc-to-any-shell.html

VeryPDF