Sha256: e8aa06b04e0106ecd87a86b228b72de79d034f666a9a14701404e013913381e5
Contents?: true
Size: 1.32 KB
Versions: 6
Compression:
Stored size: 1.32 KB
Contents
# encoding: utf-8 # reference.rb : Implementation of PDF indirect objects # # Copyright April 2008, Gregory Brown. All Rights Reserved. # # This is free software. Please see the LICENSE and COPYING files for details. require 'zlib' module Prawn class Reference #:nodoc: attr_accessor :gen, :data, :offset attr_reader :identifier, :stream def initialize(id, data, &block) @identifier = id @gen = 0 @data = data @compressed = false @on_encode = block end def object @on_encode.call(self) if @on_encode output = "#{@identifier} #{gen} obj\n" << Prawn::PdfObject(data) << "\n" if @stream output << "stream\n" << @stream << "\nendstream\n" end output << "endobj\n" end def <<(data) raise 'Cannot add data to a stream that is compressed' if @compressed (@stream ||= "") << data end def to_s "#{@identifier} #{gen} R" end def compress_stream @stream = Zlib::Deflate.deflate(@stream) @data[:Filter] = :FlateDecode @data[:Length] ||= @stream.length @compressed = true end end module_function def Reference(*args, &block) #:nodoc: Reference.new(*args, &block) end end
Version data entries
6 entries across 6 versions & 3 rubygems