Search found 1147 matches

by glennrp
2006-08-03T16:58:24-07:00
Forum: Users
Topic: removing all even numbered frames from my animated gif
Replies: 1
Views: 7726

On Unix/Linux:
  • convert big.gif +adjoin frame%04d.gif
    convert frame???[13579].gif small.gif
If your big.gif has offsets (images smaller than the first frame)
you will have to use the -coalesce and -deconstruct options.

Glenn
by glennrp
2006-08-03T16:49:01-07:00
Forum: Users
Topic: Convertion of 12 bits PGM images to JPEG2000 and back
Replies: 2
Views: 10716

Have you considered using 16-bit grayscale PNG? The extra 4 bits
are highly compressible in PNG and don't waste much space.
by glennrp
2006-07-25T05:16:35-07:00
Forum: Users
Topic: Convert from YUV Abekas to png
Replies: 0
Views: 7025

The format is "yuv" not "yuv8".
Try playing with the -sampling-factor option and perhaps the
-interlace option.
  • convert yuv:file.yuv8 -sampling-factor 2x1 file.png
Glenn
by glennrp
2006-07-24T18:06:28-07:00
Forum: Users
Topic: Halftones - anyone solved this one?
Replies: 5
Views: 18483

I've extended the "-ordered-dither" option to provide some half-tone-like
patterns. It will be available in ImageMagick-6.2.8-6 (beta) tomorrow.

The new options are 2x1, 4x1, 6x1, and 8x1.

Glenn
by glennrp
2006-07-23T22:48:17-07:00
Forum: Users
Topic: TIFF to PNG conversion changes 16-bit B/W to 24-bit RGB?
Replies: 0
Views: 6121

Try
  • -type Grayscale
Glenn
by glennrp
2006-07-23T22:03:42-07:00
Forum: Users
Topic: gif animation: Looping within looping?
Replies: 3
Views: 12417

anthony wrote: Glenrp, do you have a reference on how?

Unfortunately, no. It takes custom MNG-editing software to do stuff like that.
by glennrp
2006-07-23T13:29:28-07:00
Forum: Users
Topic: gif animation: Looping within looping?
Replies: 3
Views: 12417

Re: gif animation: Looping within looping?

dognose wrote: Is it possible to have a separate loop within a gif animation..
?

Nope. You can do it in MNG though.
by glennrp
2006-07-18T05:28:03-07:00
Forum: Users
Topic: HELP: Problems converting 32-bit bmp to 8-bit
Replies: 2
Views: 12694

There's no BMP8 format:
  • $ convert -list format | grep -i bmp
    BMP* rw- Microsoft Windows bitmap image
    BMP2* -w- Microsoft Windows bitmap image v2
    BMP3* -w- Microsoft Windows bitmap image v3
    WBMP* rw- Wireless Bitmap (level 0) image
by glennrp
2006-07-17T14:44:08-07:00
Forum: Users
Topic: code for cropping PNG images
Replies: 1
Views: 7662

Code: Select all

convert input.png -crop 100x100 scene%04d.png
by glennrp
2006-07-14T13:50:41-07:00
Forum: Users
Topic: Need to Batch .JPG Modify - Linux
Replies: 3
Views: 14476

Use

Code: Select all

for image in *.jpg
not

Code: Select all

for image in ls *.jpg
which expands to

Code: Select all

ls
file0.jpg
...
fileN.jpg
and then cannot find the file called "ls".
by glennrp
2006-07-12T15:41:45-07:00
Forum: Users
Topic: Fitting an Image to a certain frame
Replies: 1
Views: 8417

You have to decide how you want to do that. Several choices: 1. Scale the image down to fit the smaller dimension, then stretch to fill the void. 2. Scale the image down to fit the smaller dimension, then fill the void with background color. 3. Scale the image down to fit the larger dimension and cr...
by glennrp
2006-07-12T14:26:01-07:00
Forum: Users
Topic: Convert.exe usage
Replies: 0
Views: 6216

mkdir fixedheight96
mkdir fixedsize120x96
copy TWW* fixedheight96
copy TWW* fixedsize120x96
cd fixedheight96
mogrify -resize x96 TWW*
cd ..
cd fixedsize120x96
mogrify -resize 120x96 TWW*
by glennrp
2006-07-10T15:08:17-07:00
Forum: Users
Topic: vbv_delay overflow ! - using convert - Please help
Replies: 0
Views: 6566

I get those sometimes and I ignore them. I think it's just a warning that the requested delay can't be generated exactly.
by glennrp
2006-07-05T15:53:11-07:00
Forum: Users
Topic: Converting PCT to GIF is not working
Replies: 2
Views: 11898

Is it bigger in both directions or just stretched out horizontally? The latter might mean some mixup with the bits-per-pixel.
by glennrp
2006-07-04T14:31:34-07:00
Forum: Users
Topic: Converting PCT to GIF is not working
Replies: 2
Views: 11898

The "geometry" has no offsets. The histogram says there is nothing there but white pixels.