-
20 Years of Adobe Photoshop
Posted on February 18th, 2010 No commentsAdobe Photoshop is a graphics editing software developed and marketed by Adobe Systems. It is the current market leader for commercial bitmap and image manipulation software, and is the flagship product of Adobe Systems.
-
imgopt – PNG And JPEG Image Optimization
Posted on January 20th, 2010 No commentsImgopt is a bash script that makes use of different image optimization command line tools to drastically reduce the size of your JPEG and PNG images with minimal loss in quality.
Read the rest of this entry » -
ZScreen – An Open Source Screen Capture Tool For Windows
Posted on January 15th, 2010 No commentsZScreen is an open source screen capture tool for Windows. However, unlike other screen capture tools, ZScreen is much more versatile.
ZScreen is developed in Microsoft
C# 3.0language and requires .NET 3.5 framework to run. If you are a Linux user, you should take a look at Shutter which is also as powerful as ZScreen. -
Phatch – Batch process thousands of images at once
Posted on December 15th, 2009 No commentsPhatch is a photo batch processor with a nice graphical user interface. It supports all popular image formats and can duplicate folder hierarchies which makes it ideal for identically manipulating 1000s of images in one go. It can also be used to rename exif data in your photos. Phatch is based on Python and will work in Windows, Mac OS X, and Linux.
-
Save for Web GIMP Plugin
Posted on November 19th, 2009 No commentsIf you are using GIMP to create images or pictures for the web, then this GIMP plugin comes really handy. It is called Save for Web plugin. Normally, when you save your images (pictures, photos) in GIMP, it produces images of large file size even 100s of kilobytes. However, hosting images of such large sizes on the web is not optimal as it slows the loading of web page.
Read the rest of this entry » -
Photo Retouching Tutorial in Photoshop
Posted on October 26th, 2009 No commentsThis is an excellent video tutorial on photo retouching. Here the author explains how to use Photoshop to remove the flash hotspots you encounter in your photos when you shoot pictures.
Read the rest of this entry » -
pngcrush – Image Optimizer for PNG Graphics
Posted on September 22nd, 2009 No commentspngcrushis a command line image optimizer for PNG graphics files. It optimizes a PNG graphics file by reducing the size of the file’s IDAT chunk. Pngcrush is not installed by default in Linux, but it is available in the repositories of most Linux distributions. In Ubuntu Linux, you can install pngcrush by running the following command :
Read the rest of this entry » -
Shutter – Screenshot Capture Tool
Posted on September 21st, 2009 No commentsShutter is a free screenshot capture tool for GNU/Linux. It has almost all the features of professional screenshot tools such as SnagIT. Shutter was formerly named GScrot (Not to be mistaken with scrot ). Using Shutter, you can take a screenshot of a specific area, window, your whole screen, or even of a website – apply different effects to it, draw on it to highlight points, and then upload to an image hosting site, all within one window.
Read the rest of this entry » -
Mogrify – How to resize images from the command line
Posted on August 10th, 2009 No commentsIn Linux, if you have installed ImageMagick suite, you can use a nifty command to resize images, photos or pictures. The name of the command line tool is
mogrify. Here is how it is done.Suppose you want to resize all your images to a size of 800×600.
You open a terminal and navigate to the directory containing your images, photos or pictures.
Create a directory in the location named “
resized-pictures” as follows :$ mkdir resized-picturesNow run the
mogrifycommand from the same location.$ mogrify -path ./resized-pictures/ -resize 800x600 *.jpgThe above command will resize all the jpeg pictures in the current directory to a 800×600 size and save the output to the
resized-pictures/directory leaving the original pictures intact.Note: You can also run the
mogrifycommand without the-pathoption; in which case, all the images will be resized and overwritten in the current directory itself. -
How to stitch pictures using ImageMagick
Posted on July 26th, 2009 No commentsImageMagick is a command line graphics suite which allows you to manipulate and retouch your photos in various ways. It is not installed by default on many Linux distributions but installing it is a simple affair of using their respective package management tool. ImageMagick is also available for Windows.
Here is a simple method of stitching pictures together using one of the tools in ImageMagick graphics suite.
Let’s assume I want to stitch together three pictures namely
a.jpg,b.jpgandc.jpgone below the other. Here is how it is done.$ convert a.jpg b.jpg c.jpg -append abc.jpg
Where,
convertis a tool in the ImageMagick suite.abc.jpgis the output picture which is a combination of the three pictures.Note: In the above command,
-appendoption will stitch the pictures one below the other. But if you want to stitch the pictures together horizontally, use the+appendoption.
