예제 #1
0
파일: __init__.py 프로젝트: theFong/pywebp
 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)
예제 #2
0
 def new(width, height, enc_opts):
     ptr = lib.WebPAnimEncoderNew(width, height, enc_opts.ptr)
     return WebPAnimEncoder(ptr, enc_opts)