-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbtaa_pdf
61 lines (48 loc) · 1.45 KB
/
btaa_pdf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env ruby
# frozen_string_literal: true
# Script
require 'optparse'
require 'ostruct'
require 'os'
# Determine the root directory of the code base.
script_dir = File.expand_path(File.dirname(__FILE__))
root_dir = File.dirname(script_dir)
require_relative File.join(root_dir, "lib", "logger")
script_logger = UMPTG::Logger.create(logger_fp: STDOUT)
# Process the script parameters.
options = OpenStruct.new
option_parser = OptionParser.new do |opts|
opts.banner = "Usage: #{File.basename(__FILE__)} pdf_file [<pdf_file>..]"
opts.on_tail('-h', '--help', 'Print this help message') do
script_logger.info(opts)
exit 0
end
end
option_parser.parse!(ARGV)
if ARGV.count < 1
script_logger.info(option_parser.help)
exit 0
end
pdf_file_list = ARGV
require 'origami'
#require_relative File.join(root_dir, 'lib', 'fulcrum')
pdf_file_list.each do |pdf_file|
pdf_file = File.expand_path(pdf_file)
unless File.exist?(pdf_file)
script_logger.error("file \"#{File.basename(pdf_file)}\" does not exist.")
next
end
script_logger.info("processing file \"#{File.basename(pdf_file)}\"")
pdf = Origami::PDF.read(pdf_file)
script_logger.info("This document has #{pdf.pages.size} page(s)")
pdf.each_page do |page|
page.each_font do |name, font|
# ... only parse the necessary bits
puts font
end
end
pdf.each_object.select {|obj| obj.is_a?(Stream)}.each do |stream|
#puts stream
end
STDOUT.flush
end