Sha256: 71e4087058a1d9810c6ee74779219b5eb6c0cadaca30bfa0c1b75b57de6f9618

Contents?: true

Size: 725 Bytes

Versions: 128

Compression:

Stored size: 725 Bytes

Contents

#!/usr/bin/env ruby

require "poppler"

if ARGV.size != 2
  puts "usage: #{$0} input.pdf output.pdf"
  exit(-1)
end

input, output = ARGV

doc = Poppler::Document.new(input)

width, height = doc.pages[0].size
x_margin = width * 0.1
y_margin = height * 0.1
croped_width = width - (2 * x_margin)
croped_height = height - (2 * y_margin)
Cairo::PDFSurface.new(output, croped_width, croped_height) do |surface|
  context = Cairo::Context.new(surface)

  doc.each do |page|
    width, height = page.size
    context.save do
      context.translate(-x_margin, -y_margin)
      context.rectangle(x_margin, y_margin, croped_width, croped_height)
      context.clip
      page.render(context)
      context.show_page
    end
  end
end

Version data entries

128 entries across 128 versions & 1 rubygems

Version Path
poppler-3.1.8-x64-mingw32 sample/pdfcrop.rb
poppler-3.1.8-x86-mingw32 sample/pdfcrop.rb
poppler-3.1.8 sample/pdfcrop.rb
poppler-3.1.7-x64-mingw32 sample/pdfcrop.rb
poppler-3.1.7-x86-mingw32 sample/pdfcrop.rb
poppler-3.1.7 sample/pdfcrop.rb
poppler-3.1.6-x64-mingw32 sample/pdfcrop.rb
poppler-3.1.6-x86-mingw32 sample/pdfcrop.rb
poppler-3.1.6 sample/pdfcrop.rb
poppler-3.1.5-x64-mingw32 sample/pdfcrop.rb
poppler-3.1.5-x86-mingw32 sample/pdfcrop.rb
poppler-3.1.4-x64-mingw32 sample/pdfcrop.rb
poppler-3.1.4-x86-mingw32 sample/pdfcrop.rb
poppler-3.1.4 sample/pdfcrop.rb
poppler-3.1.3-x64-mingw32 sample/pdfcrop.rb
poppler-3.1.3-x86-mingw32 sample/pdfcrop.rb
poppler-3.1.3 sample/pdfcrop.rb
poppler-3.1.2-x64-mingw32 sample/pdfcrop.rb
poppler-3.1.2-x86-mingw32 sample/pdfcrop.rb
poppler-3.1.2 sample/pdfcrop.rb