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 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
Built Distribution
File details
Details for the file smilewebp-1.0.3.tar.gz
.
File metadata
- Download URL: smilewebp-1.0.3.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ecd1623e306146b70eb3ad41d02ac698b3ff8ac0195f95425ffba00eb5b2392 |
|
MD5 | 1d955f3bdc7554153d0d09f8a507df61 |
|
BLAKE2b-256 | 1429be27d6240c00821aa9cd1d34546ceecce2fe178b1bfe0ea7902df38eb468 |
File details
Details for the file smilewebp-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: smilewebp-1.0.3-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2fe1c0d91ff2db460ab04df0e248d46e9a0e87620225c7dab04a49073d3f0ef |
|
MD5 | 08f267a2ca3f9456cae32f651a3a55e1 |
|
BLAKE2b-256 | d2fd2744ab05d1157fe476d421d007fc672cf41b89fececaeb4232b34aa37877 |