by wpCubed - 상품타입: Component / 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.
평균
1 리뷰.
일반 적인 소비자 가격은 하기에 표시되어 있습니다. 고객님의 할인가격은 표시 하시려면 로그인 해주시기 바랍니다.
| 주문 | ₩ 412,500 | 1 Developer License | 다운로드 (1.8 MB) | |
| 주문 | ₩ 1,649,900 | Team License (allows 2 to 6 developers) | 다운로드 (1.8 MB) | |
| 주문 | ₩ 4,124,700 | Site License (Allows up to 20 Developers at a Single Physical Address) | 다운로드 (1.8 MB) |
| 주문 | ₩ 1,438,900 | 1 Developer License | 다운로드 (2.2 MB) | |
| 주문 | ₩ 2,676,300 | Team License (allows 2 to 6 developers) | 다운로드 (2.2 MB) | |
| 주문 | ₩ 5,151,100 | Site License (Allows up to 20 Developers at a Single Physical Address) | 다운로드 (2.2 MB) |
가격에는 ComponentSource의 기술지원 요금이 포함되어 있습니다. 또한 다운로드 판매를 하고 있는 상품의 대부분은 온라인 백업요금이 포함되어 있어서 구입날로부터 30일 이내에 새로운 버전이 발매된 경우 무료로 업그레이드해 드리고 있습니다. 모든 주문에 대해서 당사표준 계약조건 및 반품조건 의 내용이 적용됩니다. 다음의 경우,고객 서비스로연락하시기 바랍니다. (상기의 리스트에 게재되지 않은 대량의 라이센스나 구 버전 등의 라이센스 옵션이 필요한 경우)
일반 적인 소비자 가격은 상기에 표시되어 있습니다. 고객님의 할인가격은 표시 하시려면 로그인 해주시기 바랍니다.
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.