cws-blogs
cws-blogs
Untitled
4 posts
Don't wanna be here? Send us removal request.
cws-blogs · 3 years ago
Text
How to compress file size using python
How to compress file size using python
Compressing the file size using python programs is handy. You can use the PIL package to do it. Source Code: from PIL import Image # Open the image file image = Image.open('test.jpg') # Compress the image image.save('compressed_image.jpg', quality=50) Make sure you have a file named test.jpg or you can change the file name in the code at line 4. Here, we are compressing the file with…
Tumblr media
View On WordPress
0 notes
cws-blogs · 3 years ago
Text
How to convert RGB images to Grayscale?
How to convert RGB images to Grayscale?
We can easily convert RGB images into grayscale images using the python programming language. Make sure you have installed python in your system along with the python package manager pip. Source code: from PIL import Image # Open the image file image = Image.open('test.jpg') # Convert the image to grayscale gray_image = image.convert('L') # Save the grayscale…
Tumblr media
View On WordPress
0 notes
cws-blogs · 3 years ago
Text
How to generate audio using python?
How to generate audio using python?
Generating audio using python programming is an easy-peasy task actually. All we need is python installed in our system with pip. import struct import wave import math # Set up the audio parameters num_channels = 1 sample_width = 2 sample_rate = 44100 duration = 1 # in seconds frequency = 440 # in Hz # Calculate the number of samples num_samples = int(duration * sample_rate) # Create a wave…
View On WordPress
0 notes
cws-blogs · 3 years ago
Text
Programming lessons that I learned in 2022
Programming lessons that I learned in 2022
During a recent vacation, I had the chance to reflect on my programming experiences in 2022. As a result, I have written down my most valuable programming lessons with great clarity. Photo by Lukas on Pexels.com These 20 lessons will provide you with the opportunity to learn early on what I only learned later in my programming journey. Programming itself may not be difficult, but maintaining…
Tumblr media
View On WordPress
1 note · View note