barcode generator

put a barcode into PDF file

Can i put a barcode on my pdf?
If is it possible which font should I use ?
===========================
The following products are all contain barcode fonts,

1. PDFStamp SDK product,

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

you can use following code to embed barcode fonts into PDF file,

void EmbedBarcodeFonts()
{
long id;
int nRet = -1;
char szOutPDF[MAX_PATH];
char szPDFFile[MAX_PATH];
GetModulePath(szPDFFile,"example.pdf");
GetModulePath(szOutPDF,"out-embedfont.pdf");

id=VeryStampOpen(szPDFFile,szOutPDF);
if(id>0)
{
VeryStampSetFunction(id, Very_Set_EmbedFont, 1, 0, 0, 0);
VeryStampAddText(id, 1, "0123456789", RGB(0, 0, 0), 0, 0, 0, 0, 0, 0, 0, "Free 3 of 9", 8, 1,"https://www.verypdf.com/",0);
VeryStampAddText(id, 2, "0123456789", RGB(0, 0, 0), 0, 0, 0, 0, 0, 0, 0, "Free 3 of 9,Bold", 8, 1,"https://www.verypdf.com/",0);
VeryStampAddText(id, 3, "0123456789", RGB(0, 0, 0), 0, 0, 0, 0, 0, 0, 0, "Free 3 of 9,Italic", 8, 1,"https://www.verypdf.com/",0);
VeryStampAddText(id, 4, "0123456789", RGB(0, 0, 0), 0, 0, 0, 0, 0, 0, 0, "Free 3 of 9,Italic,Bold", 8, 1,"https://www.verypdf.com/",0);
VeryStampClose(id);
}
}

2. VeryPDF Form Filler SDK (COM) v3.1,

https://www.verypdf.com/pdfform/index.html#dl
https://www.verypdf.com/pdfform/pdfformsdk.zip

VeryPDF Form Filler SDK (COM) v3.1 can be used to fill the various barcodes into PDF forms, please refer to the sample code at below,

void main(int argc, char *argv[])
{
char szBarcodeTemp[MAX_PATH];
GetModulePath(szBarcodeTemp, "Barcode-temp.pdf");
char szBarcodeNew[MAX_PATH];
GetModulePath(szBarcodeNew, "_Barcode-out2.pdf");

BOOL bRet = FALSE;
PDFForm_SetLicenseKey("XXXXXXXXXXXXXXXXXXXXX");

string strFormValues;
strFormValues += "BarCode1[0]=>Code128=>1234567890";
strFormValues += "\n";
strFormValues += "BarCode2[0]=>Code39=>1234567890";
strFormValues += "\n";
strFormValues += "BarCode3[0]=>Codabar=>A1234567890A";
strFormValues += "\n";
strFormValues += "BarCode4[0]=>Datamatrix=>01034009377771791712073110BXBWWW22";
strFormValues += "\n";
strFormValues += "BarCode5[0]=>EAN=>01234567890100";
strFormValues += "\n";
strFormValues += "BarCode6[0]=>Inter25=>123456789";
strFormValues += "\n";
strFormValues += "BarCode7[0]=>PDF417=>1234567890";
strFormValues += "\n";
strFormValues += "BarCode8[0]=>Postnet=>1234567890";
bRet = PDFForm_InsertBarcodeIntoPDF2(szBarcodeTemp, szBarcodeNew, strFormValues.c_str());

printf("Return value is: %d\n", bRet);
return;
}

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)
doc to any converter

Convert Word DOC to EMF files

THANK YOU VERY MUCH !!!!

the reg. worked ...

the wildcard command - as i told last - works now too:

C:\Programme\Doc2Any>doc2any -useoffice 1 -xres 200 y:\ww4\a2\nesting\11-95021\* .xls y:\ww4\a2\nesting\11-95021\*.jpg

only some minor questions:

- when i use *.EMF instead of *.JPG the file quality will be very less i i'm looking with irfanview into the file (attached)
- and the resulting filename of EMF will been added with "0000" ...
- can i only have NO MARGINS with trimimage.exe or are there any options in doc2any ?
=============================
>>- when i use *.EMF instead of *.JPG the file quality will be very less
>>i i'm looking with irfanview into the file (attached)

You can add -useprinter to create high quality JPG files, for example,

C:\Programme\Doc2Any>doc2any -useprinter -useoffice 1 -xres 300 -yres 300 y:\ww4\a2\nesting\11-95021\*.xls y:\ww4\a2\nesting\11-95021\*.jpg

You can also use following command line to convert your XLS file to EMF file,

doc2any C:\test.xls C:\test.emf

doc2any C:\*.xls C:\*.emf

We hoping above command lines will work fine to you.

>>- and the resulting filename of EMF will been added with "0000" ...

Because EMF file doesn't support multi-page format, so we have to append "0000", "0001", "0002", etc. numbers to the filenames, one page per EMF file.

>>- can i only have NO MARGINS with trimimage.exe or are there any options in doc2any ?

You can use trimimage.exe to remove the margins from image files, doc2any hasn't an option to remove the margins.

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)
docconverter com

Use DocConverter COM to convert TIFF to PDF file

Hello - We have two questions:

1)    Are we able to convert TIF to PDF with DocConverter or PDFCamp without the GUI?  If so, how do we do this?
2)    We want to use 2.3 and we have 2.1.  What do we need to do?  Our current password does not work.

Thanks in advance.
==================================
When we try to use the service to convert tif, we get the attached error.
==================================
I am the software developer for XXXXXXXXXXX that works with your product.  I just wanted to add some additional information about the problem we're having.  The software performs as expected when we use it with ".doc" files.  I attempted to use the exact same code to convert a ".tif" file to ".pdf" when we receive the error shown in the graphic of Jeff's email.  For reference, the code I execute is the following:

Private Sub ConvertDOCtoPDF(ByVal DocName As String, ByVal PdfName As String)
Dim PdfCreator As New PDFOUTLib.PdfCreator
PdfCreator.html2PDF = DocName
PdfCreator.fileName = PdfName
PdfCreator.Doc2PDFViaSocket()
PdfCreator = Nothing
End Sub

As I mentioned this works find when performed on files of type ".doc", but does not seem to work for files of type ".tif".  Also, I had noticed that the "print" option for files of type ".tif" was associated with a different application from the one associated with ".doc" files.  Unfortunately, making the changes so that the two file types use the same application for printing did not resolve the problem.  If you need any additional information, please don't hesitate to contact me with your inquiries.
==================================
Thanks for your message, DocConverter COM is can only convert office documents and HTML files to PDF files, it can't convert TIFF files to PDF files, if you wish convert TIFF files to PDF files, please download Image to PDF Converter from our website to try, you can use Image to PDF Converter to convert TIFF files to PDF files quickly,

https://www.verypdf.com/tif2pdf/tif2pdf.htm#dl

also, PDF Editor Toolkit Professional Version is can also convert TIFF files to PDF files, you can download PDF Editor Toolkit Professional Version from following web page to try,

https://www.verypdf.com/pdfsdk/index.html#dl

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)
pdfcamp printer

Question about using the PDF Writer Solution

I am the member of system development project and has a role of adopting solution.
We have a question about using the pdfwriter solution.
This is the software's requirement :
" This software should support java API for the application.
that is, if customer want to upload some files(PPT, DOC, etc) to a system,
system should convert those files to PDF document using java API. "
I have another question :
- What is the software license policy ?
* We have some platforms :  Unix base(IBM, HP-UX), and Windows 2003 server Please give me the answer.
Gook luck.
=====================================
>>- What is the software license policy ?

Thanks for your message, please refer to our license agreement from following web page,

https://www.verypdf.com/custom/license_agreement.htm

>>* We have some platforms :  Unix base(IBM, HP-UX), and Windows 2003 server

Our products are all support Windows 2003 server, they are not support Unix based systems, please understand.

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

PDF to PCL Converter questions

I am evaluating the pdf2vec program and have a couple of questions before we purchase it.

I am attempting to convert a PDF file of a blank form to PCL format and the PDF has a small logo in it that prints out fine from the PDF but is quite distorted (seems to be missing a lot of it) when printing the PCL file that was converted with no command line options.

If I add -enablepv2r and -pv2rmergetext 100 then the logo looks much better. The problem is that the PCL file has grown from about 68k to 888K in size. Also, the form seems to have been reduced in scale just enough to throw off the alignment of data that I am trying to print on the form. I can go through my program and change where the data prints but would like to avoid that if possible. Also, the larger file seems to slow down the printing of the form.

So my questions, in order of importance, would be, are there command line options that can:
1. Preserve the original logo quality?
2. Reduce the size of the PCL file (68K vs. 888K)?
3. Keep the form scale the same as with no command line options?
==================================
Thanks for your message, can you please email to us your sample PDF file for checking? after we checked your sample PDF file, we will figure out a solution to you shortly.

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)