Search found 6 matches
- 2011-12-08T00:53:02-07:00
- Forum: Developers
- Topic: Help on OSX cross-compiling on 10.6 for 10.5 or before
- Replies: 0
- Views: 3936
Help on OSX cross-compiling on 10.6 for 10.5 or before
I'm getting this error on some macs, which suggests that my build is not compatible with OSX 10.5: Dyld Error Message: unknown required load command 0x80000022 So I googled on the web and found this page: http://grauonline.de/wordpress/?p=71 I am using the following commands to build the jpeg ...
- 2009-04-10T19:07:45-07:00
- Forum: Users
- Topic: newbie needs help compiling a simple Magick++ program
- Replies: 2
- Views: 10741
Re: newbie needs help compiling a simple Magick++ program
It worked. :D for those who follow, the problem was as follows: - installed eclipse & CDT using apt-get - downloaded Imagemagick source to /path/to/Imagemagick - tried to config Build to point to Magick++ source. didn't work. :( - when I ran g++ from the command line, I discoverd that `Magick ...
- 2009-04-09T07:56:48-07:00
- Forum: Users
- Topic: newbie needs help compiling a simple Magick++ program
- Replies: 2
- Views: 10741
newbie needs help compiling a simple Magick++ program
hi, I've got a bit of experience with PHP, Java, etc., but new to C++. I'm just trying to compile one of the test programs found in Magick++. I am using ubuntu linux , Eclipse 3.2.2, and CDT 3.1.2. here is what I have done so far. - File>New>Managed Make C++ project - File>New>Source File, created a ...
- 2008-09-15T20:19:12-07:00
- Forum: Users
- Topic: HELP Convert is not copying Exif:Orient tag when resizing.
- Replies: 2
- Views: 7594
Re: HELP Convert is not copying Exif:Orient tag when resizing.
You need to use the -resample option to update the EXIF resolution information. ImageMagick does not do this automatically. If think other tags should be updated, let us know which ones and what you think their updated values should be. Its possible that your version of ImageMagick has less support ...
- 2008-09-15T20:06:38-07:00
- Forum: Users
- Topic: HELP Convert is not copying Exif:Orient tag when resizing.
- Replies: 2
- Views: 7594
HELP Convert is not copying Exif:Orient tag when resizing.
I'm running this command to resize a JPG to max 640px along the longest dimension and save in a preview folder. The convert works just fine: find $TESTFOLDER -iname *.jpg -exec convert -verbose {} -resize 640x640">" $PREVIEWFOLDER/{} \; HOWEVER, if I check the exif data using: find $TESTFOLDER ...
- 2008-05-08T16:42:25-07:00
- Forum: Users
- Topic: Can you auto-Rotate, rename, resize in one step?
- Replies: 1
- Views: 19228
Can you auto-Rotate, rename, resize in one step?
I'm using the following to process my images # autorotate from EXIF orientation, set filetime to EXIF date_taken jhead -autorot -ft *.jpg # create 640px preview, save a copy of preview subfolder mkdir preview mogrify -quality 85 -path ./preview -resize 640x640">" *.jpg But what I really want is to ...