コード例 #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)