Search found 457 matches

by GreenKoopa
2014-01-06T16:39:47-07:00
Forum: Users
Topic: RAW support
Replies: 9
Views: 11571

Re: RAW support

This Christmas was my first attempt to shoot in RAW with my new camera, so I am on entirely new ground. IM does successfully read the file. But I don't want the raw image. Sony embeds color and geometry correction data within the file, and I want it to be applied. I'll guess that dcraw can't do this...
by GreenKoopa
2014-01-06T15:04:11-07:00
Forum: Users
Topic: RAW support
Replies: 9
Views: 11571

RAW support

I have a raw image file (.arw) from a Sony Alpha NEX 6 camera. IM can read the file, but it gets the raw, uncorrected image. Using a driver from Sony, Windows Explorer displays the file properly. Can IM be made to read through the Sony driver?
by GreenKoopa
2013-12-13T21:29:48-07:00
Forum: Kudos and Rants
Topic: podcast mention
Replies: 2
Views: 62522

Re: podcast mention

The story was about Gmail's potential change to the serving of images. IM was mentioned in passing as a image scripting tool. Nothing special, my brain just lit up with "I know that." TNT has a show page and rss feed . More relevant, Tekzilla had an entire short ( Revision3 or YouTube ) on...
by GreenKoopa
2013-12-13T17:42:46-07:00
Forum: Kudos and Rants
Topic: podcast mention
Replies: 2
Views: 62522

podcast mention

ImageMagick was briefly mentioned on Tech News Today today (episode 902 at 21:24) by Darren Kitchen. Makes me want to start playing with IM again.
by GreenKoopa
2013-12-04T10:37:03-07:00
Forum: Users
Topic: IM Unsharp vs PS USM
Replies: 3
Views: 8945

Re: IM Unsharp vs PS USM

I don't have Photoshop, but I did recently have this same question using GIMP. See topic: unsharp parameters: GIMP -> IM http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=23747 I found amount/gain and threshold to work as I expected. My issue was with converting radius & sigma....
by GreenKoopa
2013-10-10T16:32:56-07:00
Forum: Users
Topic: Different quality setting for different areas of an image
Replies: 13
Views: 7909

Re: Different quality setting for different areas of an imag

The jpegtran utility supports "crop 'n' drop". I'm curious if you could achieve smaller files or faster processing.
jpegclub.org/jpegtran/ wrote: Here is a sample output image and an equivalent shell script producing the same image using one temporary file.
by GreenKoopa
2013-08-29T23:17:01-07:00
Forum: Users
Topic: convert: unrecognized option `-morphology'
Replies: 8
Views: 8990

Re: convert: unrecognized option `-morphology'

The changelog says that version is over four years old.
by GreenKoopa
2013-08-29T15:03:44-07:00
Forum: Users
Topic: Do i need all 50 MB of ImageMagick?
Replies: 8
Views: 6691

Re: Do i need all 50 MB of ImageMagick?

There is a portable version available. Is that the build you are trying to slim down?
by GreenKoopa
2013-08-29T14:56:34-07:00
Forum: Users
Topic: How to just rename each image in a folder
Replies: 8
Views: 9143

Re: How to just rename each image in a folder

IM isn't the right tool for this, but file renaming is a crowded category so you have endless options. Many tools will let you include image properties and metadata in your filenames. Some will let you create hard or soft links, which may be useful if you have just one progrm/step that requires the ...
by GreenKoopa
2013-08-25T17:26:00-07:00
Forum: Users
Topic: watermark just 2nd page of tiff and keeping both pages
Replies: 12
Views: 14496

Re: watermark just 2nd page of tiff and keeping both pages

On Windows, parenthesis don't need escaping with backslashes.
http://www.imagemagick.org/Usage/windows/#conversion

Alternatively to operating on the second image/page, Fred's command could be changed to watermark the last page.
http://www.imagemagick.org/Usage/basics/#list_ops
by GreenKoopa
2013-08-22T13:59:27-07:00
Forum: Users
Topic: Drawing a complex image with many (lots of) shapes
Replies: 8
Views: 8213

Re: Drawing a complex image with many (lots of) shapes

IM also has a PHP interface.

snibgo, is the @file feature documented somewhere? I've never seen that before.
by GreenKoopa
2013-08-22T13:50:10-07:00
Forum: Users
Topic: From sRGB to CMYK and gamma?
Replies: 48
Views: 48672

Re: From sRGB to CMYK and gamma?

Exactly as snibgo and magick said. Additionally, the command line is read from left to right. -set colorspace and -colorspace operate on all images currently in the list. An operation that occurs when the list is empty does nothing. Settings may occur before the first image. It's not clear to me if ...
by GreenKoopa
2013-08-22T10:02:31-07:00
Forum: Users
Topic: From sRGB to CMYK and gamma?
Replies: 48
Views: 48672

Re: From sRGB to CMYK and gamma?

joew, you are of course correct that some knowledge of data is needed to process it properly. But not all knowledge is needed for most operations. Let's take your ascii example. Knowing that a file is encoded as ascii is enough to count the occurrences of 'a', but is not enough knowledge to count th...
by GreenKoopa
2013-08-21T14:57:01-07:00
Forum: Users
Topic: combine crop and scale into one command?
Replies: 3
Views: 3942

Re: combine crop and scale into one command?

You may want a +repage after the -crop.
http://www.imagemagick.org/Usage/crop/#crop_repage

Lossy formats, such as jpeg, are not ideal for intermediate files.
by GreenKoopa
2013-08-21T11:25:46-07:00
Forum: Users
Topic: From sRGB to CMYK and gamma?
Replies: 48
Views: 48672

Re: From sRGB to CMYK and gamma?

Linear RGB is 'correct'. But our eyes are not. Now what? It would be easier if there were one correct answer. Sigh. I have far less experience than snibgo, but here is what I've seen so far. When the change is small (a 2/3 resize or 10% increase in brightness), there is nearly no difference in nearl...