Archive for the 'Uncategorized' Category
ImageMagick + Gimp + PNG Offset Trouble
August 5th, 2007I have a custom little utility that I wrote that uses ImageMagick and Zenity to take a screen shot. I have the script hooked up to Z keyboard command. This is the bash script.
#!/bin/bash
fn=$(zenity –entry –title=’File Name’ –text=’File Name Prefix’);
dt=`date ‘+%Y%m%d’`;
screenshot=”/home/USERNAME/Desktop/$fn-$dt.png”;
import -frame +repage $screenshot;
Be sure to change USERNAME to your actual username so the path […]