thanks for your answer , this image in memory will be handled by other app.
another question if i may ..
do you recommend me to use the C API directly from C++ app?
are they more updated ?
Search found 12 matches
- 2019-06-28T08:00:13-07:00
- Forum: Developers
- Topic: Can i save image in memory and not in disk using C API ?
- Replies: 4
- Views: 83936
- 2019-06-28T04:55:00-07:00
- Forum: Developers
- Topic: Can i save image in memory and not in disk using C API ?
- Replies: 4
- Views: 83936
Re: Can i save image in memory and not in disk using C API ?
thanks for the fast replay , so if i like to see what imagemagik is doing i need to check the convert.c file ? and just follow the path ? also i was planning to use the c++ API aka Magick++ , is it the same as the C API i mean has all the options ? the memory part what i meant is to do all opertion ...
- 2019-06-28T01:35:48-07:00
- Forum: Magick++
- Topic: Win VC++ ImageMagick-7.0.8-Q16\Magick++_Demo - Getting :error LNK2019: unresolved external symbol "__declspec(dllimport)
- Replies: 2
- Views: 160568
- 2019-06-28T01:35:28-07:00
- Forum: Developers
- Topic: Can i save image in memory and not in disk using C API ?
- Replies: 4
- Views: 83936
Can i save image in memory and not in disk using C API ?
Hello all i have this command line : \ImageMagick-7.0.8-Q16\magick.exe -background transparent -fill white -font Amiri-Bold -pointsize 100 -kerning 5.0 -gravity center label:@c:\users\foo\appdata\local\temp\tmpahpcw2.txt -type truecolormatte PNG32:c:\users\foo\appdata\local\temp\tmp1ogyjm.png as you ...
- 2019-06-25T20:22:26-07:00
- Forum: Magick++
- Topic: Win VC++ ImageMagick-7.0.8-Q16\Magick++_Demo - Getting :error LNK2019: unresolved external symbol "__declspec(dllimport)
- Replies: 2
- Views: 160568
Win VC++ ImageMagick-7.0.8-Q16\Magick++_Demo - Getting :error LNK2019: unresolved external symbol "__declspec(dllimport)
I try to compile the ImageMagick-7.0.8-Q16\Magick++_Demo the button example using VC++ 2017 , added CORE_RL_MagickCore_.lib to the linkage as no CORE_RL_magick_.lib exists The dll are in the PATH no problem to find them what im missing here ? but im getting : 1>------ Build started: Project: button ...
- 2012-07-18T12:21:49-07:00
- Forum: MagickWand
- Topic: making image transitions programmatically,how to ?
- Replies: 4
- Views: 20988
Re: making image transitions programmatically,how to ?
Thanks allot i will try it , by the way it can be also in perl or other interface that i can convert easily to c++ /c
also question i have is , does each command line operations can be translated to API operation ?
also question i have is , does each command line operations can be translated to API operation ?
- 2012-07-18T11:47:21-07:00
- Forum: MagickWand
- Topic: making image transitions programmatically,how to ?
- Replies: 4
- Views: 20988
Re: making image transitions programmatically,how to ?
fred thanks ,
i know this site very good job you did there .
but i really need to make it work via c/c++ interface
i know this site very good job you did there .
but i really need to make it work via c/c++ interface
- 2012-07-18T09:18:53-07:00
- Forum: MagickWand
- Topic: making image transitions programmatically,how to ?
- Replies: 4
- Views: 20988
making image transitions programmatically,how to ?
Hello all
im beginner with this great lib .
i need to make programmatically transitions between 2 images , with simple effect .
is there any link to tutorial / example / books to give me good kickstarter on the subject ?
Thanks
im beginner with this great lib .
i need to make programmatically transitions between 2 images , with simple effect .
is there any link to tutorial / example / books to give me good kickstarter on the subject ?
Thanks
- 2012-06-28T05:47:18-07:00
- Forum: Magick++
- Topic: Making transitions between images and output as set of image
- Replies: 0
- Views: 6458
Making transitions between images and output as set of image
after digging in the ++ test examples and the scripts on the web , I notice that each time building transitions between images , there is need to always work with miff files (sort of image container ?? ) my question is simple and I need some pointers here . Is there away to take set of 2 images for ...
- 2012-06-28T05:41:53-07:00
- Forum: MagickWand
- Topic: how to get the real error string from MagickReadImage
- Replies: 4
- Views: 23026
Re: how to get the real error string from MagickReadImage
ok i was missing configuration and dll files ,
i didn't find any visual studio tutorial on how to set up simple project ...
i didn't find any visual studio tutorial on how to set up simple project ...
- 2012-06-28T00:30:27-07:00
- Forum: MagickWand
- Topic: how to get the real error string from MagickReadImage
- Replies: 4
- Views: 23026
Re: how to get the real error string from MagickReadImage
Thanks I do get error that says something like : NoDecodeDelegateForThisImageFormat `D:\cpp\\debug\image.jpg' @ error/constitute.c/ReadImage/544 which Decode it talking about ? im using : Imagemagick/lib/debug\CORE_DB_magick_.lib Imagemagick/lib/debug\CORE_DB_wand_.lib and : CORE_DB_bzlib_.dll CORE ...
- 2012-06-27T11:54:52-07:00
- Forum: MagickWand
- Topic: how to get the real error string from MagickReadImage
- Replies: 4
- Views: 23026
how to get the real error string from MagickReadImage
Hello all im begginer with this great lib , and i started to work with simple example . the problem is that im looking to get the real error ( if even i can get it ) other then true or false for example i have this function : if(MagickReadImage(mw,"D:\\cpp\\debug\\image.jpg") == MagickFalse ...