IPROCESS(1) General Commands Manual IPROCESS(1)NAME
iprocess - simple image processing operations
SYNOPSIS
iprocess [options] inputfiles... -o outputfile
DESCRIPTION
iprocess is a program for simple image processing operations.
OPTIONS --help Print help message
-o %s Set output filename
Image operations:
--add Add two images
--crop %d %d %d %d
Crop an image (xmin, xmax, ymin, ymax)
--flip Flip the Image (upside-down)
--flop Flop the Image (left/right mirror)
Output options:
--filter %s %f
Set the filter to use for resize
--resize %d %d
Resize the image to x by y pixels
SEE ALSO iconvert(1), idiff(1), igrep(1), iinfo(1), iv(1), maketx(1), oiiotool(1).
AUTHOR
OpenImageIO was written by Larry Gritz and the other authors and contributors.
This manual page was written by IRIE Shinsuke <irieshinsuke@yahoo.co.jp>, for the Debian project (and may be used by others).
May 19, 2012 IPROCESS(1)
Check Out this Related Man Page
IPROCESS(1) General Commands Manual IPROCESS(1)NAME
iprocess - simple image processing operations
SYNOPSIS
iprocess [options] inputfiles... -o outputfile
DESCRIPTION
iprocess is a program for simple image processing operations.
OPTIONS --help Print help message
-o %s Set output filename
Image operations:
--add Add two images
--crop %d %d %d %d
Crop an image (xmin, xmax, ymin, ymax)
--flip Flip the Image (upside-down)
--flop Flop the Image (left/right mirror)
Output options:
--filter %s %f
Set the filter to use for resize
--resize %d %d
Resize the image to x by y pixels
SEE ALSO iconvert(1), idiff(1), igrep(1), iinfo(1), iv(1), maketx(1), oiiotool(1).
AUTHOR
OpenImageIO was written by Larry Gritz and the other authors and contributors.
This manual page was written by IRIE Shinsuke <irieshinsuke@yahoo.co.jp>, for the Debian project (and may be used by others).
May 19, 2012 IPROCESS(1)
hello everyone,
i am not well-versed with unix programming, but could you help me on how to embed an image(maybe a bitmap) to the output file?
how about animations(avi, etc)? can this also be embeded to the output?
thanks (0 Replies)
Hello everyone
I need to resize a filesystem /home I want to add 200mb and I have space on the disk with lsvg rootvg command I check this but I cant because has a mirror.
Do you know some way that I can do this.
Thanks in advance (1 Reply)
Hi,
i have created some image files with name conatining Japaneese characters "Banner Image 2 _ with Japan char_こくさいかんけい.jpg", but when i see this file in unix file system (through WinSCP) its showing lilke "Banner Image 2 _ with Japan
char_こくさいかんけい.jpg". Becoz of this the image is not... (1 Reply)
Hi, How to use Image::size function ? because I want to list all image thatare less than size pixels in horizontal resolution. so here is my code :
#!/usr/bin/perl -w
use Image::Size;
use constant GIVEN_WIDTH = '100';
my @filtered_images = grep { my @d = imgsize( $_ ); $d < GIVEN_WIDTH }... (8 Replies)
Hi Friends,
I'm trying to create a script that allows me to recursively resize, crop (holding the center of the image) and optimize images jpg, jpeg, png for a specific folder and subfolder with the ability to exclude certain folder and its subdirectory.
Again, I should to do with this script:... (3 Replies)