pdf.js
Version:
A PDF generation library for Node.js
49 lines (40 loc) • 1.41 kB
text/coffeescript
###
PDFReference - represents a reference to another object in the PDF object heirarchy
By Devon Govett
###
class PDFReference
constructor: (@id, @data = {}) ->
@gen = 0
@stream = null
@finalizedStream = null
object: ->
@finalize() if not @finalizedStream
out = ["#{@id} #{@gen} obj"]
out.push PDFObject.convert(@data)
if @stream
out.push "stream"
out.push @finalizedStream
out.push "endstream"
out.push "endobj"
return out.join '\n'
add: (s) ->
@stream ?= []
@stream.push if Buffer.isBuffer(s) then s.toString('binary') else s
finalize: (compress = false) ->
# cache the finalized stream
if @stream
data = @stream.join '\n'
if compress
# create a byte array instead of passing a string to the Buffer
# fixes a weird unicode bug.
data = new Buffer(data.charCodeAt(i) for i in [0...data.length])
@finalizedStream = data.toString 'binary'
@data.Length ?= @finalizedStream.length
else
@finalizedStream = data
else
@finalizedStream = ''
toString: ->
"#{@id} #{@gen} R"
module.exports = PDFReference
PDFObject = require './object'