Exemple #1
0
 def new(width, height, enc_opts=None):
     if enc_opts is None:
         enc_opts = WebPAnimEncoderOptions.new()
     ptr = lib.WebPAnimEncoderNew(width, height, enc_opts.ptr)
     return WebPAnimEncoder(ptr, enc_opts)
Exemple #2
0
 def new(width, height, enc_opts):
     ptr = lib.WebPAnimEncoderNew(width, height, enc_opts.ptr)
     return WebPAnimEncoder(ptr, enc_opts)