<< More Tutorials
How to convert an image to JPG, GIF, PNG, TIF or WebP in Python 2 using rethumb?
To convert an image to JPG, GIF, PNG, TIF or WebP in Python 2 use the following code:
import urllib2
# First apply a square operation, then convert to PNG format.
param_operation1 = "square"
param_value1 = 100
param_operation2 = "format"
param_value2 = "png" # Other formats available: jpg, gif, tiff and webp.
image_url = "http://images.rethumb.com/image_coimbra_600x300.jpg"
image_filename = "resized-image.jpg"
response = urllib2.urlopen("http://api.rethumb.com/v1/{0}/{1}/{2}/{3}/{4}".format(param_operation1, param_value1, param_operation2, param_value2, image_url))
fh = open(image_filename, "w")
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-python2-examples.git
$ cd rethumb-python2-examples
$ python format.js
More examples using Python 2
How to use rethumb in Python 2?
How to resize an image by width in Python 2 using rethumb?
How to resize an image by height in Python 2 using rethumb?
How to resize an image by width and height in Python 2 using rethumb?
How to create a square thumbnail from an image in Python 2 using rethumb?
How to read Exif data in json format from an image in Python 2 using rethumb?
How to make an image responsive in Python 2 using rethumb?
How to read GPS coordinates from an image in Python 2 using rethumb?
How to convert an image to JPG, GIF, PNG, TIF or WebP in Python 2 using rethumb?
How to resize an image to cover any dimensions in Python 2 using rethumb?