Search found 3 matches
- 2018-11-02T09:25:37-07:00
- Forum: Magick++
- Topic: Large GIF with Magick++
- Replies: 4
- Views: 83892
Re: Large GIF with Magick++
Got it, thank you, I changed disk limit in policy.xml to 10 GiB and and now GIF opens.
- 2018-11-02T08:37:40-07:00
- Forum: Magick++
- Topic: Large GIF with Magick++
- Replies: 4
- Views: 83892
Re: Large GIF with Magick++
You want to say that: Magick::InitializeMagick( nullptr ); std::vector< Magick::Image > frames; Magick::readImages( &frames, fileName.toStdString() ); Magick::coalesceImages( &d->m_frames, frames.begin(), frames.end() ); uses policy.xml? Can I somehow don't use any configuration files, just C++ code?
- 2018-11-02T07:47:39-07:00
- Forum: Magick++
- Topic: Large GIF with Magick++
- Replies: 4
- Views: 83892
Large GIF with Magick++
Hello, Is it possible to disable core limits of ImageMagick so it will open 500 frames GIF of ~1900x1000 size, so it will use all available memory and fail only if memory is exhausted? Right now it correctly reads somewhere first 35 coalesced frames and no one operation can be done as pixel cache is ...