經 wpCubed - 產品類型: 構件 / VCL
Create PDF files from your Delphi or C++Builder application. wPDF is a PDF maker which is optimized for greater compatibility with most drawing commands commonly found in Windows applications. Used alone, with your own component or linked with WPTools, wPDF instantly creates PDF files. wPDF is compatible with WPTools, WPForm, QuickReport and HTMLView, to name just a few possibilities. This component provides you with a compatible 'canvas' property which you can use for direct drawing.
我們的常規價格如下。 請登錄後查看打折後的價格。
| 加入購物車 | $ 261.12 | 1 Developer License * | 下載 (1.8 MB) | |
| 加入購物車 | $ 1,044.49 | Team License (allows 2 to 6 developers) * | 下載 (1.8 MB) | |
| 加入購物車 | $ 2,611.23 | Site License (Allows up to 20 Developers at a Single Physical Address) * | 下載 (1.8 MB) |
| 加入購物車 | $ 910.89 | 1 Developer License * | 下載 (2.2 MB) | |
| 加入購物車 | $ 1,694.26 | Team License (allows 2 to 6 developers) * | 下載 (2.2 MB) | |
| 加入購物車 | $ 3,261.00 | Site License (Allows up to 20 Developers at a Single Physical Address) * | 下載 (2.2 MB) |
| 加入購物車 | $ 1,457.43 | 1 Developer Source Code - Delivered separately by email * | 下載 (28 KB) | |
| 加入購物車 | $ 4,372.29 | Team License Source Code (allows 2 to 6 developers) - Delivered separately by email * | 下載 (28 KB) | |
| 加入購物車 | $ 11,659.44 | Site License Source Code (Allows up to 20 Developers at a Single Physical Address) - Delivered separately by email * | 下載 (28 KB) |
我們的價格包括ComponentSource的技術支持。對於大多數可下載的產品,還提供線上備份和免費升級為新版本,若新版本在購買後的30日內發佈的話。 所有銷售都是按照我們的標準條款 進行的,並且適用我們的退貨政策. 請 聯繫我們 若您需要任何未在列出的License選擇,包括批量License及以前的版本。
我們的常規價格見上。 請登錄後查看打折後的價格。
What's New in V3.0?
Overview
wPDF converts enhanced metafiles to PDF while preserving the vector and text information. This results in small PDF files which can be printed at high resolution, thus making wPDF superior to other solutions which convert embedded metafiles into bitmaps. wPDF supports the usual PDF features, including compression and 128 bit encryption and it was the first Delphi library to allow embedding of font subsets to reduce file size even further.
Code
The code needed for to create a PDF file is very similar to that needed for printing:
const Resolution = 72;
WPPDFPrinter1.BeginDoc; // Starts a new document
try
WPPDFPrinter1.StartPage( // start a page of a certain page
Round(8.5*Resolution), 5*Resolution, Resolution, Resolution, 0);
DrawPage(WPPDFPrinter1.Canvas); // subprocedure to draw to the TCanvas
WPPDFPrinter1.EndPage; // close the page
finally
WPPDFPrinter1.EndDoc; // close the document
end;
If you are using WPTools file creation can be done with just one line of code:
WPPDFExport1.Print;
Even though the export functions quickly, there's nothing missing from wPDF. Compression, encryption, embedded fonts, charsets (eastern European, Greek and Cyrillic) are all supported. Thumbnails can be created and you can add code to create outlines and hyperlinks. Graphics can be embedded using deflate or JPEG compression.