<< More Tutorials
How to create a square thumbnail from an image in Python 3 using rethumb?
To create a square thumbnail in Python 3 use the following code:
from urllib.request import urlopen
param_operation = "square"
param_value = 100 # Square size in pixels.
image_url = "http://images.rethumb.com/image_coimbra_600x300.jpg"
image_filename = "resized-image.jpg"
response = urlopen("http://api.rethumb.com/v1/{0}/{1}/{2}".format(param_operation, param_value, image_url))
fh = open(image_filename, "wb")
fh.write(response.read())
fh.close()
Start using this example now
Use the following commands to get started:
$ git clone https://github.com/rethumb/rethumb-python3-examples.git
$ cd rethumb-python3-examples
$ python3 resize-to-square.js
More examples using Python 3
How to use rethumb in Python 3?
How to resize an image by width in Python 3 using rethumb?
How to resize an image by height in Python 3 using rethumb?
How to resize an image by width and height in Python 3 using rethumb?
How to create a square thumbnail from an image in Python 3 using rethumb?
How to read Exif data in json format from an image in Python 3 using rethumb?
How to make an image responsive in Python 3 using rethumb?
How to read GPS coordinates from an image in Python 3 using rethumb?
How to convert an image to JPG, GIF, PNG, TIF or WebP in Python 3 using rethumb?
How to resize an image to cover any dimensions in Python 3 using rethumb?