Search found 7 matches

by sradu
2012-01-05T12:30:33-07:00
Forum: Users
Topic: How to convert JPG to GIF similar to Photoshop
Replies: 3
Views: 7127

Re: How to convert JPG to GIF similar to Photoshop

Quantize NoDither seems to solve it temporarily.
by sradu
2012-01-05T03:45:50-07:00
Forum: Users
Topic: How to convert JPG to GIF similar to Photoshop
Replies: 3
Views: 7127

Re: How to convert JPG to GIF similar to Photoshop

I'm bumping this to make it more clear. The imagemagick created one is much more pixelated, while the photoshop version is smoother. If you focus on red bubble maker you'll notice that it contains a lot of white pixels, while the photoshop one is a lot smoother. Similarly this can be noticed on the ...
by sradu
2012-01-05T03:38:58-07:00
Forum: Users
Topic: Different -delay behavior on different machines
Replies: 4
Views: 8616

Re: Different -delay behavior on different machines

Thanks for looking into this. There were two problems, both in my code. First the behavior of Dir.glob which would return sorted files on my dev machine but not in production, and a Rails plugin called delayed_job which was overwriting the .delay function.

I got it working now.
by sradu
2012-01-03T02:05:14-07:00
Forum: Users
Topic: Different -delay behavior on different machines
Replies: 4
Views: 8616

Re: Different -delay behavior on different machines

What happens when you create an aniGIF on one platform and view it on the other, and vice versa ? What application are you using to view the GIF? On mac os x I am opening the aniGIF in 2 browsers (Chrome & Firefox) and via the system preview (pressing space on the gif in Finder). The behavior is ...
by sradu
2012-01-02T17:36:48-07:00
Forum: Users
Topic: Different -delay behavior on different machines
Replies: 4
Views: 8616

Different -delay behavior on different machines

I'm creating an animated gif using rmagick: input = ImageList.new input.delay = 14.2 gif_files.each do |pic| image = Image.read(pic).first input << image end input = input.optimize_layers(Magick::OptimizeTransLayer) out_filename = "/tmp/mm_#{rand(1000000)}.gif" input.write(out_filename) On my ...
by sradu
2011-12-18T12:57:44-07:00
Forum: Users
Topic: How to convert JPG to GIF similar to Photoshop
Replies: 3
Views: 7127

How to convert JPG to GIF similar to Photoshop

http://i.imgur.com/ouC0c.png this is a snapshot of the original jpg, a gif created with ImageMagick, and a gif created by Photoshop.

Is it possible to convert the original jpg to gif and make it look like the Photoshop version in ImageMagick?
by sradu
2011-11-30T05:47:55-07:00
Forum: Users
Topic: -reverse or patrol cycle using iOS/C API
Replies: 0
Views: 3832

-reverse or patrol cycle using iOS/C API

Hi!

I have an animated GIF and I'm trying to test out -reverse and patrol cycle (-clone) as mentioned in the docs. How can I implement these methods using the iOS/C API (MagickWand)?

-R.