Module Encoder.Dirac


module Dirac: sig .. end


type t = {
   quality : float;
   width : int Lazy.t;
   height : int Lazy.t;
   aspect_numerator : int;
   aspect_denominator : int;
   fill : int option;
}
val to_string : t -> string