one of my web app's i have situation to convert HTML to PDF files. I have used http://www.abcpdf.com/ its 3rd party server-side component. It is not free.
But i never worked PDF to Image
I am sure fellow members will suggest other alternatives.
Plz do click "Mark as Answer" on the post that helped you. This will also give you point and help readers to know which post solved your issue and make their search easy.
I saw your comment about abcpdf.net 6.0. Can you tell me how it worked? I have a enterprise version of PDF995, but I haven't figured out how to use it in my ASP.Net 3.5 project. (So far, I use it in a VB6 project.
Dim theDoc As Doc = New Doc()
theDoc.AddImageUrl("http://www.google.com/")
theDoc.Save("htmlimport.pdf")
theDoc.Clear()
If the content doesn't fit within a page you'll need to chain the pages with AddImageToChain...
Here's a longer example written in VB.NET for convenience:
Dim theDoc As Doc = New Doc()
theDoc.Rect.Inset(72, 144)
Dim theID As Integer
theID = theDoc.AddImageUrl("http://www.yahoo.com/")
While True
theDoc.FrameRect()
If Not theDoc.Chainable(theID) Then
Exit While
End If
theDoc.Page = theDoc.AddPage()
theID = theDoc.AddImageToChain(theID)
End While
For i As Integer = 1 To theDoc.PageCount
theDoc.PageNumber = i
theDoc.Flatten()
Next
theDoc.Save(Server.MapPath("pagedhtml.pdf"))
theDoc.Clear()
In my application I use Web2PDF API http://www.web2pdfconvert.com/pdf-api I am satisfied with quality of Web2pdf services and I can recommend it to you.
Member
3 Points
33 Posts
HTML to PDF Converter
Nov 09, 2009 04:55 AM|sajesh28|LINK
Hi members,
In our Web application we need to add three functionalities
1)HTM to PDF
2)PDF to Image
3) Re-size image
I think we need to use third party controls.is there is any third party control is available with these three functionalities?
regards,
sajesh
PDF conversion
Member
610 Points
153 Posts
Re: HTML to PDF Converter
Nov 09, 2009 06:05 AM|PavanOIrish|LINK
one of my web app's i have situation to convert HTML to PDF files. I have used http://www.abcpdf.com/ its 3rd party server-side component. It is not free.
But i never worked PDF to Image
I am sure fellow members will suggest other alternatives.
Contributor
2131 Points
866 Posts
Re: HTML to PDF Converter
Nov 09, 2009 06:23 AM|devensawant|LINK
Hi,
you can go for iTextSharp dll its free and very easy to impliment
http://sourceforge.net/projects/itextsharp/
http://sourceforge.net/projects/itextsharp/files/
If my post helps you then please mark as answer
Participant
1541 Points
450 Posts
Re: HTML to PDF Converter
Nov 09, 2009 06:26 AM|nimish_soft|LINK
i m using abcpdf.net 6.0. its easy to use..
try this
Software Developer
IndiaMART InterMESH Limited, Noida
For Free ASP.NET & Oracle Code Snippets
Follow: http://nimishgarg.blogspot.com/
Plz do click "Mark as Answer" on the post that helped you. This will also give you point and help readers to know which post solved your issue and make their search easy.
Member
3 Points
33 Posts
Re: HTML to PDF Converter
Nov 09, 2009 07:37 AM|sajesh28|LINK
Hi devenswant,
I think iTextSharp is for converting HTML to PDF.is there is PDF to image and image resize functionalities for this dll?
sajesh
Member
3 Points
33 Posts
Re: HTML to PDF Converter
Nov 09, 2009 07:38 AM|sajesh28|LINK
hi nimish,
abcpdf.net have functionalities for PDF to image and image resize?
Member
3 Points
33 Posts
Re: HTML to PDF Converter
Nov 24, 2009 02:30 AM|sajesh28|LINK
Finally i am decidede to use abcpdf.net 6.0. its easy to use..
Member
139 Points
252 Posts
Re: HTML to PDF Converter
Jun 22, 2011 07:41 PM|Carthalion|LINK
Hi sajesh28,
I saw your comment about abcpdf.net 6.0. Can you tell me how it worked? I have a enterprise version of PDF995, but I haven't figured out how to use it in my ASP.Net 3.5 project. (So far, I use it in a VB6 project.
Thanks,
Carthalion
thor@mortgagesoftware.com
Member
120 Points
34 Posts
Re: HTML to PDF Converter
Jun 23, 2011 10:42 PM|Pebble94464|LINK
Hi Carthalion
Converting web pages to a PDF document is quite simple with ABCpdf's AddImageUrl function...
If the content doesn't fit within a page you'll need to chain the pages with AddImageToChain...
Here's a longer example written in VB.NET for convenience:
In order to render PDF documents to image formats you'd need the Professional edition (not free), or the time-limited trial version. There's a PDF rendering example in the documentation you may find useful...
None
0 Points
1 Post
Re: HTML to PDF Converter
Aug 19, 2011 09:53 AM|webser|LINK
In my application I use Web2PDF API http://www.web2pdfconvert.com/pdf-api I am satisfied with quality of Web2pdf services and I can recommend it to you.
PDF conversion pdf web
None
0 Points
3 Posts
Re: HTML to PDF Converter
Aug 21, 2011 04:39 PM|dvparth|LINK
Best way I see is to adopt XSL-FO technology. PDF,Image,SVG all formats are permitted with this XML based technology.
Member
383 Points
153 Posts
Re: HTML to PDF Converter
Aug 22, 2011 10:21 AM|TP|LINK
We normally use this ITextSharp for this.
ref : http://hugoware.net/blog/itextsharp-utility