Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- github
- truffle
- web
- 제어의역전
- 솔리디티
- 네트워크
- 이더리움
- Programming
- MySQL
- Docker
- git
- geth
- 블록체인
- web3
- ethers
- ERC165
- JavaScript
- tcp
- erc
- server
- ERC20
- NFT
- 트랜잭션
- erc721
- Python
- solidity
- Ethereum
- 스마트 컨트랙트
- blockchain
- web3.js
Archives
- Today
- Total
목록HWP (1)
멍개의 연구소
파일 리더기 만들기 - 사용 모듈 정리, pdf 구조, hwp 구조
pdf -> html 변환가장 무난하다. 기본적으로 pdf는 htm와 비슷한 형태의 구조를 가지고 있다. 크게 header, body, xref table, trailer의 구조로 되어있다. pdf는 환경에 상관없이 표현을 하기 위한 목적을 가지고 있는 파일이다. 이런 이유 때문에 무난히 진행이 된 것 같다. pdf2htmlex와 pdftohtmljs라는 모듈을 이용을 했다.var pdftohtml = require('pdftohtmljs'); var converter = new pdftohtml('test.pdf', "sample.html"); converter.convert('ipad').then(function() { console.log("Success"); }).catch(function(err..
서버/nodejs
2017. 5. 1. 14:57