Project

pdf_tools

0.0
No release in over a year
Ruby wrapper for the PDF Tools command-line utils. https://www.pdf-tools.com/
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.17
>= 0
>= 12.3.3
~> 3.7
 Project Readme

Gem Version RuboCop Maintainability

PdfTools

Ruby wrapper for the PDF Tools command-line utils. https://www.pdf-tools.com/

Installation

Add this line to your application's Gemfile:

gem 'pdf_tools'

And then execute:

$ bundle

Or install it yourself as:

$ gem install pdf_tools

Usage

Native support for next tools are available:

  • 3-Heights™ PDF Merge Split
  • 3-Heights™ Image to PDF Converter
  PdfTools::Tool::ImageToPdf.new do |tool|
    tool.lk "license key"
    tool.f
    tool << "input.tif"
    tool << "output.pdf"
  end
  PdfTools::Tool::MergeSplit.new do |tool|
    tool.lk "license key"
    tool.m
    tool << "in1.pdf"
    tool.ot "Bookmark"
    tool << "in2.pdf"
    tool << "out.pdf"
  end

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/ldrner/pdf_tools.