doc to any converter

PPT to SVG

I’ve been looking at your PPT Converter … I see ETC but do not see a conversion from PPT to SVG.

I do see that you convert a number of other formats to SVG.

Note:  I have been using Flash … however, I am finding that SVG is being included in new HTML browsers and SVG is much safer than using flash … I only need clickable shapes in the drawing.  (I use Flash as a navigation image).

Are you planning to include PPT to SVG in the Converter tool or is there already an option that I can use?

Thanks in advance!
===========================
Thanks for your message, you can download our PPT to SVG Converter from following web page to try, this product can convert PPT files to SVG files,

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

VeryPDF
VN:F [1.9.20_1166]
Rating: 6.0/10 (1 vote cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)
pdfcamp printer

excel output to pdf slow on win64 than win32

Our product utilizes the pdfcamp printer driver to generate PDF output.

Here is the story:

Recently, one of our customers reported the performance discrepancy  on win32 and win64 when generating PDF output from their excel file . On my test environment, I could see that the speed of generating PDF output file on win64 box is way too slow than my win32 box. For example, by using the attached excel file to output a pdf  takes 70 seconds on win64. On win32, it only take 30 seconds.


There is what I did,

1. Setup pdfcamp printer driver as default printer.
2. Open the excel file from excel2003 . Print whole book to a file by using  File->print...
3. Monitor the time difference between the start and finish the output.

Very appreciate if you could look into this issue and provide suggestion.


Regards,
=====================================
We apologize for any inconvenience this may have caused to you, the printing speed is affected by lots of issues, such as anti-virus, network connection speed (for network printer), CPU idle or busy, available amount of RAM memory, etc.

Because PDFcamp Printer Driver is same on both 32bit and 64bit systems, so we guess the speed may affected by external factors, just for checking, on your 64bit system, please print a document from Word2003 to PDFcamp Printer, how long time between "printer icon" appear and disappear at right-bottom SYSTEM tray area? This time is the REAL time of MS Word Printing, is it possible for you to calculate this time on your both 32bit and 64bit Windows systems?

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)
pdfstamp command line

PDF Underlay option in PDF Stamp

I am trying to get the text to appear as an underlay to be a watermark, the manual says:

-L : (default is top most of all layers, overlay)

Use the -L parameter to stamp under the existing text and/or graphics of the input PDF document; the default is top most of all layers.

I am passing the following:-

-AT Copy -fs10 -p5 -p9 -fn200 -r-45 -c13684944 -fs48 -1 -fn301


If I add a –L then the watermark does appear at all, I just require the word Copy in grey as an underlay
===========================
You can add “-opacity” parameter to try again, the “-opacity” parameter will add watermark with opacity to your PDF pages, for example,
pdfstamp.exe -PDF "example.pdf" -o "opacity.pdf" -AT "VeryPDF Opacity" -FT "Arial" -P9 -FS100 -opacity50 -C#FF0000 -AI logo.jpg -opacity80 -P2 -AL -LW30 -opacity30 -LINEEX 100,100,200,200

OR

-AT Copy -fs10 -p5 -p9 -fn200 -r-45 -c13684944 -fs48 -1 -fn301 -opacity50

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)
verypdf blog

how to make use of EncrptPDF at ASP Application Server Level?

Please let advice how to make use of EncrptPDF at ASP Application Server Level ( Usable in Background Jobs).
================================
Hi,

Please refer to following information about how to call EncryptPDF SDK from ASP code,

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The EncryptPDF COM for asp user manual

Steps:
1.Copy the encryptpdf.dll and EncryptPDFOCX.dll files to your system32 directory, for example,
~~~~~~~~~~~
copy encryptpdf.dll c:\windows\system32
copy EncryptPDFOCX.dll c:\windows\system32
~~~~~~~~~~~
2.Register the EncryptPDFOCX.dll library in your system, for example,
~~~~~~~~~~~
regsvr32 c:\windows\system32\EncryptPDFOCX.dll
~~~~~~~~~~~
3.Put the test.asp file into your "C:\wwwhome" directory,
5.Run the MS IE software, input http://127.0.0.1 site, and open the "test.asp" file,
6.The result files are generated in the "C:\wwwhome" directory.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Please refer to the ASP code at below,
<%
dim oTest
dim very_ID
dim ret
Set oTest = Server.CreateObject("EncryptPDFOCX.CEncryptPDF")
Response.write "Create Object Success!"
very_ID=oTest.veryEncryptPDFEx("C:\wwwhome\test1.pdf","C:\wwwhome\test1_encrypted.pdf",128,4,"Owner","User")
if very_ID < 0 then
Response.write "Convert  Failer!"
Response.write very_ID
else
Response.write "Convert  Success!"
end if
%>

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 editor toolkit

Tagged PDF

Hello, on of our customers asked a question that we could not answer about PDF bookmarking.  If we have a multi-page PDF for release and the PDF contains multiple sub-folders, can we release that PDF and have it bookmarked on each sub-section?  If so, how do we do that?
=================================
Sorry, we don't understand your meaning for the "PDF contains multiple sub-folders"? do you mean that one PDF file contain all image files which come from multiple sub-folders? If yes, you can add the bookmark for each page without any problem, please refer to following sample code,

void AddTIFFImage(long id)
{
char szImageFile[256];

GetModulePath(szImageFile,"multipage.tif");
//add bookmark
int parentBookmark = pVerySetFunction(id, Very_Set_BookMark, 0, 0,"bookmark one",0);
//get multi page tiff page nums
int pagenum=pVeryGetFunction(id,Very_Get_ImagePageCount,0,0,szImageFile,0);
if(pagenum>4)
{
//set multi page tiff convert
int beginpage=2;
int pagenums=2;
pVerySetFunction(id,Very_Set_MultiPage,beginpage,pagenums,0,0);
}
if(pagenum)
pVeryAddImage(id,szImageFile);
}

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)