开发者

Make a html to pdf converter

开发者 https://www.devze.com 2023-03-21 07:08 出处:网络
I am pretty new to developing softwares and am intrigued by the huge world out there!! I have working knowledge of C/C++ and Java.. I was thinking of making an application that would convert a webpage

I am pretty new to developing softwares and am intrigued by the huge world out there!! I have working knowledge of C/C++ and Java.. I was thinking of making an application that would convert a webpage to a pdf document.. I know there are many solutions available -- both online and offline..But I want to develop my own.. I googled but couldn't find anything that would help me get started.. I want to know how do we go about a conversion process?? How to get started?? What languages and technologies are pre-requisites for making a开发者_JAVA百科 converter like this??

Thank You


So at least you need to get to the bottom to following specifications:

  1. HTML specification
  2. CSS specification
  3. JavaScript specification
  4. PDF specification

Moreover here are a lot of minor stuff such as Fonts, Decription/Encription algorithms and many many other minor but still necessary things.

I think you can imagine that this is quite a long way to get all this working. In fact, the complexity of such software is the reason why so many companies make money in this field.

Anyway, I'd suggest you to start from the simple things and grow your software gradually. Start with converting HTML to Image, because it is a bit simpler. Take and parse HTML, its CSS, its JavaScript. Clean HTML. Build DOM of the HTML document. Apply styles. Go thru the DOM and draw elements to the image.

Good luck!

0

精彩评论

暂无评论...
验证码 换一张
取 消