powerpoint to flash

Call PowerPoint to SWF Converter from PHP code

I am looking for a solution that I can use to allow a user to upload a ppt file to my server and then extract the images of the file for placement onto the machine.

I need to be able to control the process with php and then also write code that will allow me to place references to file location in a database for script use in showing the images.

Does your app allow this?
=================================
Please download PowerPoint Converter product from following web page to try, you can call PowerPoint Converter Command Line (pptconv.exe) from your PHP code to convert PPT file to image file easily,

https://www.verypdf.com/ppt-converter/index.html

please download the trial version of PowerPoint Converter Command Line to try, if you encounter any problem, please feel free to let us know.

VeryPDF
=================================
Thanks for your reply.

I would love to try it.

However, as I am not a command line guru, I would like to ask if you have any examples of how to use php code to call your app.
Thanks again
=================================
Please by following steps to try again,

1. Please download EXEShell COM Library from following URL,

http://www.verydoc.com/download/exeshell.zip

Please refer to following page about EXEShell COM Library,

http://www.verydoc.com/exeshell.html

2. Please use following code to call pptconv.exe from PHP or ASP code,

ASP code,
<%
Set comEXEShell = Server.CreateObject("exeshell.shell")
comEXEShell.RunCommandLine "Administrator", "123456", "C:\pptconv.exe -$ XXXXXXXXXXXXXXXXXXX ""C:\in.ppt"" ""C:\out.swf"""
Set comEXEShell = Nothing
%>

PHP code,

<?php
$PdfCreator =new COM("exeshell.shell") or die("Cannot start PdfCreator");
$PdfCreator->RunCommandLine("Administrator", "123456", "C:\pptconv.exe -$ XXXXXXXXXXXXXXXXXXX C:\in.ppt C:\out.swf");
$PdfCreator = null;
?>

Please set correct username and password to RunCommandLine() function, then you can launch the conversion from this special user account.

Remark:
You may encounter Error 1314 in some Windows systems when you launch the conversion, please by following steps to solve the 1314 Error,

ERROR 1314:
~~~~~~~~~~~~~
1314 A required privilege is not held by the client. ERROR_PRIVILEGE_NOT_HELD ~~~~~~~~~~~~~

To resolve this issue:
1. Click Start, click Run, type "secpol.msc", and then press ENTER.
2. Double-click "Local Policies".
3. Double-click "User Rights Assignment".
4. Double-click "Replace a process level token".
5. Click "Add", and then double-click the "Everyone" group 6. Click "OK".
7. You may have to logout or even reboot to have this change take effect.

Please refer to following two screenshots to understand above steps,

http://www.verydoc.com/images/err1314-1.png
http://www.verydoc.com/images/err1314-2.png

Please look at following page for the details about ERROR 1314,

http://www.verydoc.com/exeshell.html

3. OK, you should no problem to call pptconv.exe from ASP or PHP code now.

Please notice, you need change "XXXXXXXXXXXXXXXXXXXX" to correct License Key which sent to you by swreg.

However, if you still have same problem, please create a remote desktop account on your test machine, email to us the IP address, user name and password of this remote desktop account, we will login your test machine and assist you to solve this problem asap.

VeryPDF

VN:F [1.9.20_1166]
Rating: 7.0/10 (3 votes cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)
pdf editor toolkit

Register pdfshell.dll on Windows 7 system

I'm trying to install the verypdf library on windows 7 ultimate but I'm getting errors when I run install_for_asp.bat. I get an error message that pdfshell.dll failed to load. Additionally, have you got any updates to the libraries?
========================
Please use administrator privilege to launch a CMD window, run install_for_asp.bat in this CMD window, then you can register pdfshell.dll properly.

VeryPDF
========================
Didn't work. Here's a screen capture of the error.
========================
Are you using 64bit Windows 7 system? If yes, please copy all DLL files to C:\windows\syswow64 folder first, and run following command line to register pdfshell.dll file again,

C:\windows\syswow64\regsvr32.exe C:\windows\syswow64\pdfshell.dll

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)
barcode generator

Support EAN/UCC Code 128 in PDF Form Filler SDK

We have finished the "EAN/UCC Code 128" feature in the PDFForm_InsertDataBarcodeImageIntoPDF() function, please download the new version of PDFForm SDK from following URL,

https://www.verypdf.com/pdfform/pdfformsdk.zip

after you unzip it to a folder, please look at "Barcode_VC++3_Code128" folder, this folder is the example source code about how to add EAN Code128 into PDF file.

We have added two types of Code128 into the new version to you, they are Code128_UCC and Code128_RAW barcode types, you can use following sample source code to insert Code128_UCC (also named EAN Code 128) into PDF file,

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

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

string strFormValues;
strFormValues += "BarCode1[0]=>Code128=>(01)01234567890128(15)051231";
strFormValues += "\n";
strFormValues += "BarCode2[0]=>Code128_UCC=>(01)01234567890128(15)051231";
strFormValues += "\n";
strFormValues += "BarCode3[0]=>Code128_RAW=>(01)01234567890128(15)051231";
strFormValues += "\n";
strFormValues += "BarCode4[0]=>Code128=>(01)01234567890128(15)051231";
strFormValues += "\n";
strFormValues += "BarCode5[0]=>Code128_UCC=>(01)01234567890128(15)051231";
strFormValues += "\n";
strFormValues += "BarCode6[0]=>Code128_RAW=>(01)01234567890128(15)051231";
strFormValues += "\n";
strFormValues += "BarCode7[0]=>Code128=>(01)01234567890128(15)051231";
strFormValues += "\n";
strFormValues += "BarCode8[0]=>Code128_UCC=>(01)01234567890128(15)051231";
bRet = PDFForm_InsertBarcodeIntoPDF2(szBarcodeTemp, szBarcodeNew, strFormValues.c_str());

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

barcode128
barcode128

If you have any question for the “Code128_UCC” code, please feel free to let us know, we will assist you asap.

VeryPDF
=========================================
we have tested the software, especially the Code 128 EAN and everything is ok.
One question :  Is “Code128_RAW” the same as the former “Code128” ? “Code128” works as before !

The functionality is that what we specified, good job.
=========================================
No, Code128_RAW and Code128 are two different barcode types, original Code128 is “Code128”, Code128_RAW is the Code128 RAW type, it is a new barcode type, if you needn’t it, you can simple ignore it.

VeryPDF

VN:F [1.9.20_1166]
Rating: 1.0/10 (1 vote cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)
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)