Loading


class

pdf-dc% : class?

  superclass: object%

  extends: dc<%>
Like post-script-dc%, but generates a PDF file instead of a PostScript file.

constructor

(new pdf-dc% 
    [[interactive interactive] 
    [parent parent] 
    [use-paper-bbox use-paper-bbox] 
    [as-eps as-eps] 
    [width width] 
    [height height] 
    [output output]]) 
  (is-a?/c pdf-dc%)
  interactive : any/c = #t
  parent : (or/c (is-a?/c frame%) (is-a?/c dialog%) #f) = #f
  use-paper-bbox : any/c = #f
  as-eps : any/c = #t
  width : (or/c (and/c real? (not/c negative?)) #f) = #f
  height : (or/c (and/c real? (not/c negative?)) #f) = #f
  output : (or/c path-string? output-port? #f) = #f
See post-script-dc% for information on the arguments. The as-eps argument is allowed for consistency with post-script-dc%, but its value is ignored.