Skip to main content

Webp image library for python3.

Project description

smilewebp

What's new 1.0.1

  • fix bug
  • update doc with smile-third-party

The first version 1.0.0.
Webp image library for python3.

Download

Find package

Or download any from smile-third-party

There are some versions which compacts some OS such as Mac, Ubuntu, ..etc

Find

which cwebp

$ /usr/bin/cwebp

Check version

cwebp -version

$ 0.6.1

Start to code

from smilewebp.Webp import Webp
# initialize
smile    = Webp()
or
smile    = Webp('/usr/bin/cwebp')

*** by default the application located in /usr/bin/cwebp

*** it's able to set to another location via

smile.setWebp(path= '/usr/bin/cwebp')

test a filename

quality value starts 20 to 100, and it's integer

smile.compress(
  filename  = '/home/pseth/Download/kara.png'
  , quality = 80
)

verify before use

if smile.isError():
  print(f'Everything is okay, the file name is: {smile.getFilename()}')

else:
  print(f'{smile.getErrorMessage()}')

Options

  • dirname: can be None set coy to a new directory for the new file

  • newFilename: can be None set a new copy name

Both can set any value, or None, or one of them.

Let check the example:

Ex 1

smile.convert(
  filename      = '/home/pseth/Download/kara.png'
  , quality     = 100
  # move to new directory
  , dirname     = '/home/pseth/Document/'
  , newFilename = 'jojo'
)

Ex 2

smile.convert(
  filename      = '/home/pseth/Download/kara.png'
  , quality     = 100
  # move to new directory
  , dirname     = '/home/pseth/Document/'
)

Ex 3

smile.convert(
  filename      = '/home/pseth/Download/kara.png'
  , quality     = 100
  # move to new directory
  , newFilename = 'jojo'
)

It is also available on https://pypi.org/project/smilewebp
To Support my work, please donate me via Buy me a PizzaBuy me a Coffee

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

smilewebp-1.0.3.tar.gz (4.9 kB view hashes)

Uploaded Source

Built Distribution

smilewebp-1.0.3-py3-none-any.whl (5.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page