Search found 12 matches

by Luyen
2016-07-26T00:56:16-07:00
Forum: Magick++
Topic: Large Image Support
Replies: 1
Views: 8516

Large Image Support

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 ...
by Luyen
2016-07-25T19:05:09-07:00
Forum: Magick++
Topic: Destroy Image
Replies: 0
Views: 12049

Destroy Image

Hello there,

Is there any function to destroy Image in Magick++?
For example:

Code: Select all

Image image;
image.read("myImage.tiff"); 
image.addNoise(GaussianNoise); 
And then I want to destroy image. How can I do now?
Thanks!
by Luyen
2016-07-19T21:11:50-07:00
Forum: Developers
Topic: "Unable to extend cache" errors
Replies: 4
Views: 21854

Re: "Unable to extend cache" errors

Dear @magick,

Could you give us a detail example dealing with this problem?
Thank you!
by Luyen
2016-07-07T18:36:16-07:00
Forum: MagickWand
Topic: [SOLVED] RegistryKeyLookupFailed when using the DLLs without having ImageMagick installed
Replies: 6
Views: 35622

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!
by Luyen
2016-06-27T20:02:01-07:00
Forum: Users
Topic: Java crash related to libMagickCore-6.Q16HDRI-2.dll
Replies: 0
Views: 6306

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_pid...
by Luyen
2016-06-22T18:18:25-07:00
Forum: MagickWand
Topic: Can not read image using MagickReadImageFile
Replies: 8
Views: 21098

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_wand = NewM...
by Luyen
2016-06-22T18:11:51-07:00
Forum: MagickWand
Topic: Can not read image using MagickReadImageFile
Replies: 8
Views: 21098

Re: Can not read image using MagickReadImageFile

Yes, of course.

I can use convert to process all kinds of images that IM support.
by Luyen
2016-06-22T03:37:36-07:00
Forum: MagickWand
Topic: Can not read image using MagickReadImageFile
Replies: 8
Views: 21098

Re: Can not read image using MagickReadImageFile

:( I copy your code, and It doesn't work also. I don't know why.

It shows "MagickReadImageFile failed".

Version: ImageMagick 6.9.3-7 Q16 x64 2016-03-06 http://www.imagemagick.org
by Luyen
2016-06-22T02:43:31-07:00
Forum: MagickWand
Topic: Can not read image using MagickReadImageFile
Replies: 8
Views: 21098

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", &qu...
by Luyen
2016-06-22T02:21:17-07:00
Forum: Users
Topic: No Decode Delegate For This Image Format
Replies: 2
Views: 4320

Re: No Decode Delegate For This Image Format

I have fixed this. Thank you :)!
by Luyen
2016-06-22T02:03:58-07:00
Forum: MagickWand
Topic: Can not read image using MagickReadImageFile
Replies: 8
Views: 21098

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/MagickWan...
by Luyen
2016-06-10T00:13:15-07:00
Forum: Users
Topic: No Decode Delegate For This Image Format
Replies: 2
Views: 4320

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, whe...