MVN

io.github.se-be : pdf2dom

Maven & Gradle

Feb 19, 2024
0 stars

Pdf2Dom · Pdf2Dom is a PDF parser that converts the documents to a HTML DOM representation. The obtained DOM tree may be then serialized to a HTML file or further processed. The inline CSS definitions contained in the resulting document are used for making the HTML page as similar as possible to the PDF input. A command-line utility for converting the PDF documents to HTML is included in the distribution package. Pdf2Dom may be also used as an independent Java library with a standard DOM interface for your DOM-based applications or as an alternative parser for the CSSBox rendering engine in order to add the PDF processing capability to CSSBox.

<dependency>
    <groupId>io.github.se-be</groupId>
    <artifactId>pdf2dom</artifactId>
    <version>3.0.0RC2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of io.github.se-be : pdf2dom to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 3.0.0RC2

All Versions

Choose a version of io.github.se-be : pdf2dom to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
3.0.x
pdf2dom-3.0.0RC2
pdf2dom-3.0.0RC1

How to add a dependency to Maven

Add the following io.github.se-be : pdf2dom maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>io.github.se-be</groupId>
    <artifactId>pdf2dom</artifactId>
    <version>3.0.0RC2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following io.github.se-be : pdf2dom gradle dependency to your build.gradle file:

implementation 'io.github.se-be:pdf2dom:3.0.0RC2'

Gradle Kotlin DSL: Add the following io.github.se-be : pdf2dom gradle kotlin dependency to your build.gradle.kts file:

implementation("io.github.se-be:pdf2dom:3.0.0RC2")

How to add a dependency to SBT Scala

SBT Scala: Add the following io.github.se-be : pdf2dom sbt scala dependency to your build.sbt file:

libraryDependencies += "io.github.se-be" % "pdf2dom" % "3.0.0RC2"