
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Pixelate a Square Image to 256 Big Pixels with Python Matplotlib
To pixelate a square image to 256 big pixels with Python, we can take the following steps −
- Set the figure size and adjust the padding between and around the subplots.
- Open and identify the given image file.
- Resize the image samples.
- Make resultant images and resize them.
- Save the resultant figure.
Example
from PIL import Image from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True img = Image.open("bird.png") imgSmall = img.resize((16, 16), resample=Image.BILINEAR) result = imgSmall.resize(img.size, Image.NEAREST) result.save('result.png')
Input Image
Output Image
Advertisements