PDF Tips

【结构原理篇】

1、什么是PDF

2、PDF文件结构——物理结构

3、PDF文件结构——逻辑结构

4、一个简单PDF文件的结构分析

5、PDF文件中交叉引用流对象(cross-reference stream)的解析方法

【iText/iTextSharp】

1、iText Developers

2、itextsharp sourceforge

3、itextsharp github

4、iTextSharp快速使用指南

【水印篇】

1、PDF去水印资源索引

2、使用PDFlib-6.0.2库生成PDF文档的水印清除方法

3、PDF内容抽取:3-Heights PDF Extract

【mupdf】

1、mupdf官网

2、CentOS编译mupdf

【在线工具】

1、pdf to jpg - CloudConvert

2、在线pdf压缩(smallpdf)

*** walker ***

时间: 2024-10-02 08:02:51

PDF Tips的相关文章

java 使用 pdf.js 在线查看 pdf 文档

1. 下载对应的 pdf.js 文件: 推荐地址:             https://github.com/mozilla/pdf.js/            http://mozilla.github.io/pdf.js/ 2. 下载完成后打开对应的 viewer.js 文件. 可以看到,默认打开的是 compressed.tracemonkey-pldi-09.pd f文件,如果后面我们需要打开我们指定的地址,于是清空默认地址. 3. 这样,我们就可以使用传递 file 形参来动态指

总会有一个是你需要的

http://www.shouce.ren/post/d/id/112300 黑客攻防实战入门与提高.pdfhttp://www.shouce.ren/post/d/id/112299 黑客入门新手特训.pdfhttp://www.shouce.ren/post/d/id/112298 黑客与设计-剖析设计之美的秘密(彩印).pdfhttp://www.shouce.ren/post/d/id/112297 鸟哥的LINUX私房菜:服务器架设篇 (第二版).pdfhttp://www.shouc

Min Edit Distance

Min Edit Distance ----两字符串之间的最小距离 PPT原稿参见Stanford:http://www.stanford.edu/class/cs124/lec/med.pdf Tips:由于本人水平有限,对MED的个人理解可能有纰漏之处,请勿尽信. Edit:个人理解指编辑之意,也即对于两个字符串,对其中的一个进行各种编辑操作(插入.删除.替换)使其变为另一个字符串.要解决的问题是求出最小的编辑操作次数是多少. 基因系列比对 定义距离: X,Y是大小分别为n,m的字符串. 定

Ten Tips for Writing CS Papers, Part 2

Ten Tips for Writing CS Papers, Part 2 This continues the first part on tips to write computer science papers. 6. Ideal Structure of a Paragraph A paper has different levels of formal structure: sections, subsections, paragraphs, sentences. It is imp

Matlab tips and tricks

matlab tips and tricks and ... page overview: I created this page as a vectorization helper but it grew to become my annotated Matlab reading cache. In order to motivate the DSP people out there, I am showing below how one can apply a window and scal

10 Interesting Linux Command Line Tricks and Tips Worth Knowing

I passionately enjoy working with commands as they offer more control over a Linux system than GUIs(Graphical User Interfaces) applications, therefore am always on the look out to discover or figure out interesting ways and ideas to make Linux so eas

(C# Version ) PDF Viewer Control Without Acrobat Reader Installed

by Julian Joseph - India, 17 Apr 2015 Introduction This Article shows how we can display PDF on Web without having to install any third party pdf tool on either client or server. Background The Article is original written by Ron Schuler in VB.NET. I

pdf.js打印

为了使在不同浏览器上打印显示页面一样,最终选择使用pdf.js打印效果. 直接把下载的pdf文件夹放到项目的js目录下 页面上 <a  target="_blank" style="position:absolute;" id="jump"><span></span></a> <a class="btn btn-primary print_"  href="jav

三万字、91道MySQL面试题。 附PDF

文末领取面试题 高清PDF 数据库基础知识 1. 为什么要使用数据库 数据保存在内存 优点:存取速度快 缺点:数据不能永久保存 数据保存在文件 优点:数据永久保存 缺点:1)速度比内存操作慢,频繁的IO操作.2)查询数据不方便 数据保存在数据库 1)数据永久保存 2)使用SQL语句,查询方便效率高. 3)管理数据方便 2. 什么是SQL? 结构化查询语言(Structured Query Language)简称SQL,是一种数据库查询语言. 作用:用于存取数据.查询.更新和管理关系数据库系统.