Sha256: 2ec4b8fb0ea6e75346e8586ba90b50c7703d91d710e5051eb4230c915acced17

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

[![Test Coverage](https://api.codeclimate.com/v1/badges/d402008317c8f6cc6715/test_coverage)](https://codeclimate.com/github/ldrner/pdf_tools/test_coverage)

# PdfTools

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



## Installation

Add this line to your application's Gemfile:

```ruby
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

```ruby
  PdfTools::Tool::ImageToPdf.new do |tool|
    tool.lk "license key"
    tool.f
    tool << "input.tif"
    tool << "output.pdf"
  end
```

```ruby
  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.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pdf_tools-0.1.0 README.md