In this post, we will take a look at how to convert images to Webp format using command line tools or the Linux terminal. Over the past year, I have used several tools on the Linux terminal to optimize or convert jpg, png and HEIF images. You can find some of those posts here. Today, I wanted to revisit the conversion of to Webp format using Linux commands. (more…)
Category: images
-
Tutorial: Create a Video from images using FFmpeg
In this tutorial, we will learn how to Create a Video from images using FFmpeg. We will merge up to 10 images from a single folder to create a video using FFmpeg on a Linux Debian machine. We will start with simple iterations and gradually add more complex features to our video. (more…)
-

Image Gallery: Har Ghar Tiranga
The Government of India launched the Har Ghar Tiranga campaign (a Tricolour in every home) in early 2022. This campaign was conducted To Celebrate 75 years of India’s independence. On this occasion, I used AI image generation technology to create the below images in early August 2022. This post was updated in March 2024.
-
Image Compression and Optimization
Learn the ins and outs of image compression and optimization for faster loading times, better SEO scores, and improved user experience. Get up to speed with the basics of compression, optimization tools, and optimization best practices. Improve your website’s performance today!
अपनी वेबसाइट के लोडिंग समय को कम करने और उसकी SEO रैंकिंग में सुधार करने के लिए छवि अनुकूलन की मूल बातें सीखें। हम आपको दिखाएंगे कि गुणवत्ता से समझौता किए बिना छवियों को कैसे कंप्रेस, ऑप्टिमाइज़ और आकार बदलें। बेहतर गति और SEO के लिए आज ही शुरुआत करें! वेब के लिए छवियों को आसानी से कंप्रेस और अनुकूलित करना सीखें और अपनी वेबसाइट की गति और खोज इंजन अनुकूलन को बढ़ाएं। इमेज कंप्रेशन पर मददगार टिप्स, ट्यूटोरियल और व्यवहारिक सलाह के साथ शुरुआत करें।
-

How to convert WebP images to jpg format?
Have you ever felt the need to convert WebP images to jpg format? read on…WebP is a image format developed and ‘encouraged’ by Google. It is designed to be more efficient than JPEG, (or .jpg format). In many cases, the WebP images can be up to 30% smaller than JPEG images. there have been many tutorials, How-Tos and videos in recent years that show how to convert an image to WebP format. But what if one wants to do the reverse? Read this post to learn how to convert WebP images to jpg format.
-
Script for searching public domain images
Python script
import requests # Function to search Pexels def search_pexels(query): API_KEY = "Your Pexels API Key" search_url = f"https://api.pexels.com/v1/search?query={query}" headers = {"Authorization": API_KEY} response = requests.get(search_url, headers=headers) if response.status_code == 200: return response.json()["photos"] else: return [] # Function to search Pixabay def search_pixabay(query): API_KEY = "Your Pixabay API Key" search_url = f"https://pixabay.com/api/?key={API_KEY}&q={query}" response = requests.get(search_url) if response.status_code == 200: return response.json()["hits"] else: return [] def main(): query = input("Enter the title of the image: ") pexels_results = search_pexels(query) pixabay_results = search_pixabay(query) print("Pexels results: ", pexels_results) print("Pixabay results: ", pixabay_results) if __name__ == "__main__": main() -
Image compression service
In this post, I have compared the performance of over 20 different image compression and optimization services over a series of tests. This will help you in finding a possible answer to
(more…)
“Which is the Best Image Optimization Service?” -
How to use Prompts for AI Imaging using Stable Diffusion
In this post, I will introduce you to some commands or prompts to help you create images using Stable Diffusion. (more…)









































































