Search found 11 matches
- 2013-04-11T12:25:54-07:00
- Forum: Magick++
- Topic: Unable to Read EXIF attributes from Image
- Replies: 4
- Views: 21944
Re: Unable to Read EXIF attributes from Image
That worked for me as well. Thanks.
- 2013-04-09T13:24:32-07:00
- Forum: Magick++
- Topic: Unable to Read EXIF attributes from Image
- Replies: 4
- Views: 21944
Re: Unable to Read EXIF attributes from Image
The Magick++ does not properly pull exif data easily, and I have been unable to determine how to use the library to that end. I did find a pretty simple project that is easily included in your project to read exif data from an image, for anyone who is having a similar problem: http://www.codeproject ...
- 2013-04-09T07:19:40-07:00
- Forum: Magick++
- Topic: Unable to Read EXIF attributes from Image
- Replies: 4
- Views: 21944
Re: Unable to Read EXIF attributes from Image
Attempting to access FileInfo in this manner also doesn't seem to work: void main() { //-- ImageMagick InitializeMagick("D:\\common\\ImageMagick-6.8.4\\VisualMagick\\bin"); char cInFile[MAX_PATH]; strcpy_s( cInFile, MAX_PATH, "d:\\exif.jpg" ); Image img_test; img_test.read(cInFile); img_test.verbose ...
- 2013-04-04T10:21:55-07:00
- Forum: Magick++
- Topic: Unable to Read EXIF attributes from Image
- Replies: 4
- Views: 21944
Unable to Read EXIF attributes from Image
I am attempting to read EXIF data from Images so I can store this information for later use and I am unable to read any attributes from the images I have. I downloaded and built the latest source for Windows ImageMagick-6.8.4 sucessfully, and when I run the provided application for viewing image ...
- 2012-07-05T12:20:14-07:00
- Forum: Magick++
- Topic: Attempting to Resize an image not behaving properly
- Replies: 2
- Views: 9641
Re: Attempting to Resize an image not behaving properly
Corrected my issue, perfectly, thanks for the quick response.
- 2012-07-05T10:37:12-07:00
- Forum: Magick++
- Topic: Attempting to Resize an image not behaving properly
- Replies: 2
- Views: 9641
Attempting to Resize an image not behaving properly
I am trying to resize an image, from 320x240 to any size I may need, it is simply a black bmp, that I composite under the natural size of an existing image (used then for watermarking ) The problem is when i try to resize the image to a rather large size i end up with a different width and height ...
- 2012-04-18T14:33:27-07:00
- Forum: Bugs
- Topic: GIF crop problem
- Replies: 7
- Views: 21104
Re: GIF crop problem
I had a similar issue cropping gifs that left the canvas the original size using the Magick++ API in C++, code looks like this: bool CropImage(char cFileIn[], char cFileOut[], int nNewWidth, int nNewHeight ) { bool bRet = false; char cLog[MAX_STRING_LARGE]; int nWidth; int nHeight; try { cLog[0 ...
- 2011-04-05T14:42:01-07:00
- Forum: Users
- Topic: Magick++ API Access Violation on Image::Read()
- Replies: 6
- Views: 16927
Re: Magick++ API Access Violation on Image::Read()
Scratch the last comment.
I built ImageMagick from source in Visual Studio 2005 and the Demo projects seems to be working properly, I will now go through the arduous task of implementing these libraries into my existing project.
Thanks for the help.
I built ImageMagick from source in Visual Studio 2005 and the Demo projects seems to be working properly, I will now go through the arduous task of implementing these libraries into my existing project.
Thanks for the help.
- 2011-04-05T13:24:30-07:00
- Forum: Users
- Topic: Magick++ API Access Violation on Image::Read()
- Replies: 6
- Views: 16927
Re: Magick++ API Access Violation on Image::Read()
I used the default to build the ImageMagick project which does not define the MAGICKCORE_INSTALLED_SUPPORT preprocessor directive. So I defined PATH and MAGICK_HOME to point to the location where the IM_MOD_*.dll and the CORE_*.dll are located in my case: #define MAGICK_HOME "d:\\Projects VS05 ...
- 2011-03-25T14:00:43-07:00
- Forum: Users
- Topic: Magick++ API Access Violation on Image::Read()
- Replies: 6
- Views: 16927
Re: Magick++ API Access Violation on Image::Read()
Installed the ImageMagick from source Built the project using the instruction http://www.imagemagick.org/script/install-source.php Now I am seeing another exception: ImageMagick::ErrorMissingDelegate.
Is there some other step I am missing in building this project for use?
Is there some other step I am missing in building this project for use?
- 2011-03-25T08:24:21-07:00
- Forum: Users
- Topic: Magick++ API Access Violation on Image::Read()
- Replies: 6
- Views: 16927
Magick++ API Access Violation on Image::Read()
Recently installed ImageMagick with: ImageMagick-6.6.8-1-Q16-windows-dll.exe On WindowsXP Professional. The Magick++_Demo builds fine in VIsualStudio 2005 without any issues. However when I try to debug the code I run into an Access Violation Exception in the button.cpp file. This code segment ...