コード例 #1
0
ファイル: jpeg.py プロジェクト: HT154/art-packer
 def __init__(self,
              output_path,
              filename_prefix,
              progressive=False,
              quality=85):
     Saver.__init__(self, 'jpg', output_path, filename_prefix)
     self.progressive = progressive
     self.quality = quality
     self.output_path = output_path
コード例 #2
0
ファイル: png.py プロジェクト: Miroff/art-packer
 def __init__(self, output_path, filename_prefix):
     Saver.__init__(self, 'png', output_path, filename_prefix)
コード例 #3
0
ファイル: png.py プロジェクト: HT154/art-packer
 def __init__(self, output_path, filename_prefix):
     Saver.__init__(self, 'png', output_path, filename_prefix)
コード例 #4
0
ファイル: jpeg.py プロジェクト: Miroff/art-packer
 def __init__(self, output_path, filename_prefix, progressive=False, quality=85):
     Saver.__init__(self, 'jpg', output_path, filename_prefix)
     self.progressive = progressive
     self.quality = quality
     self.output_path = output_path