Hello,
I have read a document telling about larger image support.
It is said that:
" For large images, ImageMagick will likely create a pixel cache on disk. Make sure you have plenty of temporary disk space. If your default temporary disk partition is too small, tell ImageMagick to use another ...
Search found 12 matches
- 2016-07-26T00:56:16-07:00
- Forum: Magick++
- Topic: Large Image Support
- Replies: 1
- Views: 10868
- 2016-07-25T19:05:09-07:00
- Forum: Magick++
- Topic: Destroy Image
- Replies: 0
- Views: 14577
Destroy Image
Hello there,
Is there any function to destroy Image in Magick++?
For example:
And then I want to destroy image. How can I do now?
Thanks!
Is there any function to destroy Image in Magick++?
For example:
Code: Select all
Image image;
image.read("myImage.tiff");
image.addNoise(GaussianNoise);
Thanks!
- 2016-07-19T21:11:50-07:00
- Forum: Developers
- Topic: "Unable to extend cache" errors
- Replies: 4
- Views: 23809
Re: "Unable to extend cache" errors
Dear @magick,
Could you give us a detail example dealing with this problem?
Thank you!
Could you give us a detail example dealing with this problem?
Thank you!
- 2016-07-07T18:36:16-07:00
- Forum: MagickWand
- Topic: [SOLVED] RegistryKeyLookupFailed when using the DLLs without having ImageMagick installed
- Replies: 6
- Views: 41425
Re: [SOLVED] RegistryKeyLookupFailed when using the DLLs without having ImageMagick installed
Hi there,
I got the same error.
I have set MAGICK_CODER_MODULE_PATH but it only work with windows.
How can I fix with Mac Os x?
Thanks!
I got the same error.
I have set MAGICK_CODER_MODULE_PATH but it only work with windows.
How can I fix with Mac Os x?
Thanks!
- 2016-06-27T20:02:01-07:00
- Forum: Users
- Topic: Java crash related to libMagickCore-6.Q16HDRI-2.dll
- Replies: 0
- Views: 7437
Java crash related to libMagickCore-6.Q16HDRI-2.dll
Hi there,
I use Java to call a videocore.dll file (which is compiled using ImageMagick library).
It can work perfectly in my computer.
However, I copy into other computer, It does not work.
The Java process has exited.
An hs_err_pid*.log file has been created.
The following appears in the hs_err ...
I use Java to call a videocore.dll file (which is compiled using ImageMagick library).
It can work perfectly in my computer.
However, I copy into other computer, It does not work.
The Java process has exited.
An hs_err_pid*.log file has been created.
The following appears in the hs_err ...
- 2016-06-22T18:18:25-07:00
- Forum: MagickWand
- Topic: Can not read image using MagickReadImageFile
- Replies: 8
- Views: 25489
Re: Can not read image using MagickReadImageFile
When I use MagickReadImage instead of MagickReadImageFile, It's work.
You can see the code below:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <wand/MagickWand.h>
MagickWand
*magick_wand;
int main()
{
FILE *fin;
MagickWandGenesis();
MagickBooleanType status;
magick ...
You can see the code below:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <wand/MagickWand.h>
MagickWand
*magick_wand;
int main()
{
FILE *fin;
MagickWandGenesis();
MagickBooleanType status;
magick ...
- 2016-06-22T18:11:51-07:00
- Forum: MagickWand
- Topic: Can not read image using MagickReadImageFile
- Replies: 8
- Views: 25489
Re: Can not read image using MagickReadImageFile
Yes, of course.
I can use convert to process all kinds of images that IM support.
I can use convert to process all kinds of images that IM support.
- 2016-06-22T03:37:36-07:00
- Forum: MagickWand
- Topic: Can not read image using MagickReadImageFile
- Replies: 8
- Views: 25489
Re: Can not read image using MagickReadImageFile

It shows "MagickReadImageFile failed".
Version: ImageMagick 6.9.3-7 Q16 x64 2016-03-06 http://www.imagemagick.org
- 2016-06-22T02:43:31-07:00
- Forum: MagickWand
- Topic: Can not read image using MagickReadImageFile
- Replies: 8
- Views: 25489
Re: Can not read image using MagickReadImageFile
Here is my simple code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <wand/MagickWand.h>
MagickWand
*magick_wand;
int main()
{
FILE *fin;
MagickWandGenesis();
MagickBooleanType status;
magick_wand = NewMagickWand();
fin = fopen("D:\\asb\\res\\upload\\animal.gif", "r ...
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <wand/MagickWand.h>
MagickWand
*magick_wand;
int main()
{
FILE *fin;
MagickWandGenesis();
MagickBooleanType status;
magick_wand = NewMagickWand();
fin = fopen("D:\\asb\\res\\upload\\animal.gif", "r ...
- 2016-06-22T02:21:17-07:00
- Forum: Users
- Topic: No Decode Delegate For This Image Format
- Replies: 2
- Views: 5756
Re: No Decode Delegate For This Image Format
I have fixed this. Thank you
!

- 2016-06-22T02:03:58-07:00
- Forum: MagickWand
- Topic: Can not read image using MagickReadImageFile
- Replies: 8
- Views: 25489
Can not read image using MagickReadImageFile
When I read image using MagickReadImage, it is success.
However, using MagickReadImageFile, I can not read image.
I use window 7, QT.
Here is my code:
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "magick/MagickCore.h"
#include "wand/MagickWand.h"
#include ...
However, using MagickReadImageFile, I can not read image.
I use window 7, QT.
Here is my code:
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "magick/MagickCore.h"
#include "wand/MagickWand.h"
#include ...
- 2016-06-10T00:13:15-07:00
- Forum: Users
- Topic: No Decode Delegate For This Image Format
- Replies: 2
- Views: 5756
No Decode Delegate For This Image Format
I develop a C/C++ program using ImageMagick(MagickWand, Magickcore).
When I run the program, I see the error "No Decode Delegate For This Image Format".
I copy the folder lib (the folder containing imagemagick lib) into the folder containing .exe file. => the problem is fixed.
However, when I build ...
When I run the program, I see the error "No Decode Delegate For This Image Format".
I copy the folder lib (the folder containing imagemagick lib) into the folder containing .exe file. => the problem is fixed.
However, when I build ...