Search found 23 matches
- 2019-02-23T10:26:53-07:00
- Forum: Bugs
- Topic: Adware in ImageMagick installer? (7.08-28-Q16-x64-dll)
- Replies: 2
- Views: 8522
Re: Adware in ImageMagick installer? (7.08-28-Q16-x64-dll)
Most likely a false positive, as far as I know the installers have never included anything else than just ImageMagick (and delegates). I have .27 installed on a Windows-PC, no issues with the installer (but I do not use any anti-virus, only what's included (or not) in Windows). My experience with ...
- 2019-01-10T16:06:02-07:00
- Forum: Users
- Topic: error/blob.c/OpenBlob/3491 After testing ImageMagick install at Command
- Replies: 2
- Views: 22636
Re: error/blob.c/OpenBlob/3491 After testing ImageMagick install at Command
Run "magick" from a folder you have permissions to write to, you are trying to write file(s) to "C:\Program Files\ImageMagick-7.0.8-Q16" as a user, that won't work. You will also need to use full path to files if they are not in the same folder as you are. You should read a "Command line howto ...
- 2019-01-10T15:58:41-07:00
- Forum: Bugs
- Topic: ImageMagick.MagickResourceLimitErrorException
- Replies: 3
- Views: 11391
- 2019-01-10T15:55:15-07:00
- Forum: Magick++
- Topic: 8 Bit BMP Image
- Replies: 2
- Views: 76727
Re: 8 Bit BMP Image
Code: Select all
Magick::Image image(Magick::Geometry(512, 512), Magick::ColorRGB(1, 1, 1));
image.depth(8);
image.magick("BMP");
- 2019-01-08T16:42:00-07:00
- Forum: Users
- Topic: Using GPU acceleration
- Replies: 1
- Views: 7845
Re: Using GPU acceleration
https://imagemagick.org/script/opencl.php
You will probably need to rebuild ImageMagick against the OpenCL SDK, as most distros don't ship ImageMagick with OpenCL enabled.
You will probably need to rebuild ImageMagick against the OpenCL SDK, as most distros don't ship ImageMagick with OpenCL enabled.
- 2019-01-08T16:39:50-07:00
- Forum: Users
- Topic: Packaging an application that uses the ImageMagick C API
- Replies: 1
- Views: 3997
Re: Packaging an application that uses the ImageMagick C API
You should do a custom build of ImageMagick for the targeted platform (XP in your case), I recommend doing a static build with zero-conf enabled. You should not deploy an application depending on the official DLL's in my opinion, but if you do, it works as with any application you deploy on Windows ...
- 2019-01-03T00:44:17-07:00
- Forum: Developers
- Topic: Installing Imagemagick on Ubuntu - HEROKU
- Replies: 1
- Views: 9251
Re: Installing Imagemagick on Ubuntu - HEROKU
You have a broken (ImageMagick) installation/package. Install the required dependency (djvu) or build ImageMagick yourself.
- 2018-12-25T23:02:09-07:00
- Forum: Magick++
- Topic: [SOLVED] Magick++ ColorCMYK
- Replies: 13
- Views: 126310
Re: [SOLVED] Magick++ ColorCMYK
I have finally ported the app to IM7 and to my surprise it now works, no more transparent strokes
- 2018-12-16T14:09:42-07:00
- Forum: Magick++
- Topic: Magick++ feature request: PingImages()
- Replies: 2
- Views: 78254
Re: Magick++ feature request: PingImages()
Sure, I can open an issue on github.
Yes, readImages (https://www.imagemagick.org/Magick++/STL.html).
Yes, readImages (https://www.imagemagick.org/Magick++/STL.html).
Code: Select all
std::list<Magick::Image> images;
Magick::readImages(&images, filename);
Code: Select all
std::list<Magick::Image> images;
Magick::pingImages(&images, filename);
- 2018-12-16T13:52:01-07:00
- Forum: Magick++
- Topic: Magick++ feature request: PingImages()
- Replies: 2
- Views: 78254
Magick++ feature request: PingImages()
Hi,
I would be great to have a PingImages() function in Magick++ that works like ReadImages().
I would be great to have a PingImages() function in Magick++ that works like ReadImages().
- 2018-12-16T13:32:43-07:00
- Forum: Users
- Topic: [SOLVED] Saving Composite Operator in MIFF
- Replies: 4
- Views: 7380
Re: Saving Composite Operator in MIFF
Thanks for the information, will use custom attributes.
- 2018-12-16T12:39:32-07:00
- Forum: Users
- Topic: Unable to open compressed MIFF with multiple images
- Replies: 2
- Views: 6167
Re: Unable to open compressed MIFF with multiple images
Zip and LZMA works, probably just a minor issue(?).
- 2018-12-16T12:14:34-07:00
- Forum: Users
- Topic: Unable to open compressed MIFF with multiple images
- Replies: 2
- Views: 6167
Unable to open compressed MIFF with multiple images
Hi, I'm unable to open MIFF with multiple images that is compressed with bzip. convert rose: logo: test.miff test.miff[0] MIFF 70x46 70x46+0+0 8-bit TrueColor sRGB 318423B 0.010u 0:00.000 test.miff[1] MIFF 640x480 640x480+0+0 8-bit Palette sRGB 256c 318423B 0.010u 0:00.000 Works fine, but when I ...
- 2018-12-16T12:07:58-07:00
- Forum: Users
- Topic: [SOLVED] Saving Composite Operator in MIFF
- Replies: 4
- Views: 7380
Re: Saving Composite Operator in MIFF
6.9.10-16 Q16HDRI Linux. Command: set compose operator (not "Over") on a image, save as MIFF, run identify and check "Compose: XXX". My question is: If I set the compose operator on an image can I expect that info to be saved in the MIFF? Btw, I have already added custom attr to workaround this, I ...
- 2018-12-15T23:33:25-07:00
- Forum: Users
- Topic: [SOLVED] Saving Composite Operator in MIFF
- Replies: 4
- Views: 7380
[SOLVED] Saving Composite Operator in MIFF
Hi, MIFF files has Compose: Over when you identify them, is it possible to change it? I want to save a project as MIFF and I need to save the composite operator for later use. I tried (in Magick++): Composition operator to be used when composition is implicitly used (such as for image flattening ...