473,915 Members | 4,599 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

PDF Libraries

Hi all

After finding out that my pdf library (ABCPdf) doesn't support HTML
being imported as an input (Well it does but doesn't support the <table>
element), I'm looking for a good quality component (can be commercial)
that takes in HTML (and a stylesheet) and can create a PDF based on that
HTML.

Any ideas?

Regards
Ray
Jun 23 '06 #1
5 1611
Hi Ray,

I did a review of the DynamicPDF library for the January 2005 issue of
Visual Studio Magazine. It discussed the HTML capabilities.

http://www.ftponline.com/vsm/2005_01...oks/page3.aspx

"Generator' s Enterprise version makes text insertion easier because it
includes an HTMLTextArea object that understands and parses a simple subset
of HTML tags (see Figure 1). You assign a string of text with HTML markup to
the HTMLTextArea object, and Generator converts the HTML into PDF code at
run time and inserts it into the flow. I assembled a custom PDF creator
application in minutes by dropping a free HTML editor on a WinForms page and
passing its markup to Generator. You have to restrict your HTML to standard
fonts and bare-bones formatting (such as bold and colors). For example, the
object understands <B> but not <STRONG>. Even with the limitations, it's
better to let users create and insert blocks of text for PDFs so you can
avoid the coding grunt work."

If you want to evaluate it, you can check it out here.

http://www.cete.com/Products/GeneratorForNET/

Let us know how you may out?

Ken
Microsoft MVP [ASP.NET]


"Ray Booysen" <rj***********@ rjb.za.net> wrote in message
news:OX******** ******@TK2MSFTN GP03.phx.gbl...
Hi all

After finding out that my pdf library (ABCPdf) doesn't support HTML being
imported as an input (Well it does but doesn't support the <table>
element), I'm looking for a good quality component (can be commercial)
that takes in HTML (and a stylesheet) and can create a PDF based on that
HTML.

Any ideas?

Regards
Ray

Jun 23 '06 #2
there are several good libraries for writing pdf. as for parsing html into
pdf there are few. this is a small niche, and only a couple support full
html. http://www.activepdf.com/ is the leader.

most html to pdf libraries that support html 4.0, work by using IE as html
parser and a custom print driver to get pdf output. then they write some
components to bundle this up as a callable interface.

-- bruce (sqlwork.com)

"Ray Booysen" <rj***********@ rjb.za.net> wrote in message
news:OX******** ******@TK2MSFTN GP03.phx.gbl...
Hi all

After finding out that my pdf library (ABCPdf) doesn't support HTML being
imported as an input (Well it does but doesn't support the <table>
element), I'm looking for a good quality component (can be commercial)
that takes in HTML (and a stylesheet) and can create a PDF based on that
HTML.

Any ideas?

Regards
Ray

Jun 23 '06 #3
Hi Ken

Thanks for the tip, I'll have a look.

Regards
Ray

Ken Cox [Microsoft MVP] wrote:
Hi Ray,

I did a review of the DynamicPDF library for the January 2005 issue of
Visual Studio Magazine. It discussed the HTML capabilities.

http://www.ftponline.com/vsm/2005_01...oks/page3.aspx

"Generator' s Enterprise version makes text insertion easier because it
includes an HTMLTextArea object that understands and parses a simple subset
of HTML tags (see Figure 1). You assign a string of text with HTML markup to
the HTMLTextArea object, and Generator converts the HTML into PDF code at
run time and inserts it into the flow. I assembled a custom PDF creator
application in minutes by dropping a free HTML editor on a WinForms page and
passing its markup to Generator. You have to restrict your HTML to standard
fonts and bare-bones formatting (such as bold and colors). For example, the
object understands <B> but not <STRONG>. Even with the limitations, it's
better to let users create and insert blocks of text for PDFs so you can
avoid the coding grunt work."

If you want to evaluate it, you can check it out here.

http://www.cete.com/Products/GeneratorForNET/

Let us know how you may out?

Ken
Microsoft MVP [ASP.NET]


"Ray Booysen" <rj***********@ rjb.za.net> wrote in message
news:OX******** ******@TK2MSFTN GP03.phx.gbl...
Hi all

After finding out that my pdf library (ABCPdf) doesn't support HTML being
imported as an input (Well it does but doesn't support the <table>
element), I'm looking for a good quality component (can be commercial)
that takes in HTML (and a stylesheet) and can create a PDF based on that
HTML.

Any ideas?

Regards
Ray


Jun 23 '06 #4
Hi Bruce

Thanks for the link. I'll have a look.

Regards
Ray

bruce barker (sqlwork.com) wrote:
there are several good libraries for writing pdf. as for parsing html into
pdf there are few. this is a small niche, and only a couple support full
html. http://www.activepdf.com/ is the leader.

most html to pdf libraries that support html 4.0, work by using IE as html
parser and a custom print driver to get pdf output. then they write some
components to bundle this up as a callable interface.

-- bruce (sqlwork.com)

"Ray Booysen" <rj***********@ rjb.za.net> wrote in message
news:OX******** ******@TK2MSFTN GP03.phx.gbl...
Hi all

After finding out that my pdf library (ABCPdf) doesn't support HTML being
imported as an input (Well it does but doesn't support the <table>
element), I'm looking for a good quality component (can be commercial)
that takes in HTML (and a stylesheet) and can create a PDF based on that
HTML.

Any ideas?

Regards
Ray


Jun 23 '06 #5
B
Hey i have used both

Active PDF and ABCPDF ,,

Its a known fact that you cant convert any html directly to PDF in
active PDF , the main use of this active pdf is filling PDF forms or
PDF templates .. its really use full if thats your only need and when
you move to HTML parsing .. Active PDF will fail ,, there is another
tool called webgrabber from the same activePDF company,, but its little
tricky to configure...

Speaking about ABC Pdf ,, its really a good tool but it too has its own
cons .. within two or three lines of code you can convert HTML to PDF
,, but when you want to convert Templates to PDF the problem arrises
particularly when you trying to add images ,, its so simple in Active
PDF ,, and the Object.Clear() doesnt actually work most of the times ,,
until you change the input data ...and another issue is that when you
have any URL in the Text that you are adding into the page.. it
actually doesnt take it as string it conects to the site and displays
the page itself..

bruce barker (sqlwork.com) wrote:
there are several good libraries for writing pdf. as for parsing html into
pdf there are few. this is a small niche, and only a couple support full
html. http://www.activepdf.com/ is the leader.

most html to pdf libraries that support html 4.0, work by using IE as html
parser and a custom print driver to get pdf output. then they write some
components to bundle this up as a callable interface.

-- bruce (sqlwork.com)

"Ray Booysen" <rj***********@ rjb.za.net> wrote in message
news:OX******** ******@TK2MSFTN GP03.phx.gbl...
Hi all

After finding out that my pdf library (ABCPdf) doesn't support HTML being
imported as an input (Well it does but doesn't support the <table>
element), I'm looking for a good quality component (can be commercial)
that takes in HTML (and a stylesheet) and can create a PDF based on that
HTML.

Any ideas?

Regards
Ray


Jun 24 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
1710
by: Cecil Westerhoff | last post by:
I just started with programming under linux with c++. I have programmed for years with Borland C++ Builder. So I have some experience. But I can not find the libraries for intenet stuff. (Ping, fetching a page, etc.) The only thing I found was a library for CGI. Can someone tell me where to find those libraries? Or for that mather where to look for libraries in general?
0
1556
by: Nikki Locke | last post by:
Archive-name: C++-faq/libraries/part1 Comp-lang-c++-archive-name: C++-faq/libraries/part1 Available C++ Libraries FAQ =========================== Introduction ~~~~~~~~~~~~ Dos and don'ts - (Mostly don'ts)
3
3474
by: fabio de francesco | last post by:
Hello, I have a couple of years of experience with C++. I started studying C++ syntax, then I read the B.Stroustrup's book, and eventually I went through the N.Josuttis' book on how to program with the C++ Standard Library. I am not a professional programmer however I would like to gain more knowledge of the language to get what could be considered the skills you'd expect from a professional developer ( I also know Unix
27
2305
by: Matt Kruse | last post by:
Since this topic has come up several times in other threads, I thought I'd make a separate thread and gather opinions from (hopefully) a more varied range of newsgroup participants. What are your thoughts on the development and use of generalized, reusable javascript libraries? Discussion points: 1) Is the overhead of a 25k (for example) .js file too much for a typical
1
2548
by: rajesh_krec | last post by:
Hello Everybody, I'm using Microsoft Visual Studio .NET 2003 (with Vc7 compiler) I have some 15 projects each of which generate a static library when i build the solution in release mode. The solution also contains a project which includes all the above generated static libraries.I have set all the above projects as dependent projects in the 'Project Dependencies' option.
7
2633
by: Thiru | last post by:
I am writing an application that interacts with Oracle and Teradata. In order to create the executable, I need to link various Oracle and Teradata libraries. I found out that when I link the Oracle and Teradata libraries together, the Teradata API functions are not working properly. My assumption is that these libraries are sharing identical function names and parameter lists and hence the conflicts are causing the problem. Is my...
5
1908
by: Jon Kneller | last post by:
I have 2 seperate libraries, compiled to .so files (these are being loaded into a Tcl process). I would like to be able to share data (a linked list) between these libraries - one needs to modify the data, the other needs to search it. I cannot be certain that both libraries will loaded at any given time. Because the program using the libraries is Tcl, I can't store the data at that level. Any ideas on how I can achieve this?
3
2331
by: joseluismarchetti | last post by:
Hello everybody, Although I am sure this is an important question for this group, I am not sure this question belongs to this group and I will be happy to move it to the correct one after you point it to me. Direct question: How can I know if a function is defined in more than one static library that I am using to link ?
23
2049
by: Matt Silberstein | last post by:
Are there any good qualities libraries out there, free or for "reasonable" cost? -- Matt Silberstein Do something today about the Darfur Genocide http://www.beawitness.org
85
5403
by: g | last post by:
Hello, is there any library for C as Boost is for C++? thanks in advance,
0
11354
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
11066
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10542
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9732
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
8100
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
7256
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5943
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
6148
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4778
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.