Search found 4 matches

by royxr
2017-05-09T22:25:03-07:00
Forum: Magick++
Topic: ImageMagick convert jpg images to gif being slow?
Replies: 1
Views: 14926

ImageMagick convert jpg images to gif being slow?

I am using Magick++(IM 7.0.3, platform:CentOS Linux release 7.0) to convert images to gif. I read images from files, the problem is that when I convert 9 png files(each 50kb) to gif, it taks only 50ms. but when it turns to 9 jpg files (each 20kb), it takes 1900ms. What is the reason behind? How can ...
by royxr
2017-05-04T02:13:36-07:00
Forum: Magick++
Topic: Write Animated GIFs to Blob
Replies: 5
Views: 32261

Re: Write Animated GIFs to Blob

problem solved. the reason is that I forgot to add img->magick("gif").
by royxr
2017-05-03T00:20:29-07:00
Forum: Magick++
Topic: Write Animated GIFs to Blob
Replies: 5
Views: 32261

Re: Write Animated GIFs to Blob

magick wrote: 2013-02-04T04:07:44-07:00 We can reproduce the problem you posted and have a patch in ImageMagick 6.8.2-4 Beta available by sometime tomorrow. Thanks.
could you help me with this? I am using version 7.0.3-9 with Magick++ (writeImages of STL.h)
by royxr
2017-05-02T23:46:14-07:00
Forum: Magick++
Topic: Write Animated GIFs to Blob
Replies: 5
Views: 32261

Re: Write Animated GIFs to Blob

sorry to bother you. I have a problem write images (as gif) to blob, could you pls help me out? I write the same vector<Magick::Image> frames to file and to blob, the to file part works fine, but when I write images to blob, it went wrong. it seems it only write the first frame to blob. here is my c...