This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
HELP_STR = "Usage: $ remove_rightslink_images file1.pdf file2.pdf" | |
begin | |
require 'hexapdf' # HexaPDF is AGPL licensed according to https://hexapdf.gettalong.org/ | |
rescue LoadError | |
if system("gem install --no-doc hexapdf") | |
Gem.clear_paths | |
require "hexapdf" |
OlderNewer