Search found 457 matches

by GreenKoopa
2013-07-25T22:59:54-07:00
Forum: Bugs
Topic: -strip
Replies: 2
Views: 6322

Re: -strip

Thank you Glenn.
by GreenKoopa
2013-07-25T22:50:09-07:00
Forum: Users
Topic: resizing photos
Replies: 6
Views: 4994

Re: resizing photos

Thank you all for the advice. Photoshop makes that a default! What was that about Photoshop? I resize in sRGB space. Even when blowing up pixels, I can't see any difference between this or converting to RGB or Lab before the resize, and then converting back to sRGB. I think colorspace would matter l...
by GreenKoopa
2013-07-25T21:49:35-07:00
Forum: Users
Topic: Is there anyway to dissolve between the last/first frames?
Replies: 9
Views: 9424

Re: Is there anyway to dissolve between the last/first frame

Thank you for the example, but it is difficult to see what you mean. If you can define exactly what you want, it likely can be done. Do you want to add a frame at the end that is an average of the first and last frames? Or a longer transition of ??? frames?
by GreenKoopa
2013-07-25T00:32:19-07:00
Forum: Bugs
Topic: -modulate in HCLp
Replies: 4
Views: 8181

Re: -modulate in HCLp

I see the change in the source code http://www.imagemagick.org/download/windows/ImageMagick-windows.zip but the behavior is the same in the new version http://www.imagemagick.org/download/binaries/ImageMagick-6.8.6-7-Q16-x64-dll.exe The fix seemed easy, unless the source didn't make it into the new ...
by GreenKoopa
2013-07-24T11:26:31-07:00
Forum: Users
Topic: Luminize, Colorize, HCL
Replies: 17
Views: 20868

Re: Luminize, Colorize, HCL

This is my best guess of what PS is doing. convert infile.jpg ^ ( -clone 0 -colorspace Rec601Luma +level-colors black,red -colorspace HCLp -separate ) ^ ( -clone 0 -colorspace HCLp -separate ) ^ -delete 0,3,4,5 -combine -set colorspace HCLp -colorspace sRGB ^ out.png If you like, I would be happy to...
by GreenKoopa
2013-07-24T07:54:36-07:00
Forum: Users
Topic: Luminize, Colorize, HCL
Replies: 17
Views: 20868

Re: Luminize, Colorize, HCL

-modulate in HCLp is not implemented.
viewtopic.php?f=3&t=23811
by GreenKoopa
2013-07-24T07:52:31-07:00
Forum: Bugs
Topic: -modulate in HCLp
Replies: 4
Views: 8181

-modulate in HCLp

-modulate works in HCL, but not in HCLp. Searching the source I find 11 instances of HCLColorspace, but only 8 of HCLpColorspace. The instance missing in enhance.c is likely causing this issue. Demonstration of the problem: convert hald:10 -colorspace Rec601Luma Luma.png convert hald:10 -colorspace ...
by GreenKoopa
2013-07-23T21:14:27-07:00
Forum: Users
Topic: Luminize, Colorize, HCL
Replies: 17
Views: 20868

Re: Luminize, Colorize, HCL

I guess I don't know enough about PS to know what a Gradient Map is. Is it identical to +level-colors?
by GreenKoopa
2013-07-23T20:45:12-07:00
Forum: Users
Topic: Luminize, Colorize, HCL
Replies: 17
Views: 20868

Re: Luminize, Colorize, HCL

I cannot reproduce the white turns black using HCL (or HCLp) problem mentioned in that post and the changelog. It must have been fixed.

Fred, what steps did you do in PS to produce that image?
by GreenKoopa
2013-07-23T13:42:09-07:00
Forum: Users
Topic: Luminize, Colorize, HCL
Replies: 17
Views: 20868

Re: Luminize, Colorize, HCL

I did a round trip test for HCLp using a hald. RGB -> HCLp -> RGB Worked great! HCLp -> RGB -> HCLp L is preserved. H is preserved correctly. When hue is undefined (gray, when C=0), it is reset to 0. When L is 0 or QuantumRange, C is clamped to 0, which puts us in the previous case. H is circular, s...
by GreenKoopa
2013-07-23T12:44:49-07:00
Forum: Users
Topic: Luminize, Colorize, HCL
Replies: 17
Views: 20868

Re: Luminize, Colorize, HCL

HCL to RGB Invalidly large values of C are ignored. This results in RGB values out of range in both directions. These are clamped. HCLp to RGB When RGB values are out of range, they are scaled in such a way that C is clamped so that H and L may be preserved. Very clever! -compose Luminize uses HCL. ...
by GreenKoopa
2013-07-23T10:33:00-07:00
Forum: Users
Topic: Luminize, Colorize, HCL
Replies: 17
Views: 20868

Re: Luminize, Colorize, HCL

Thank you Fred. You always know where to read next. C is simply chroma (MAX-MIN). HSB/HSV and HSL stretch chroma into saturation to fill the interval to create a cylinder. HCL does not stretch C to fill the interval. This means less distortion, but also leaves invalid values in the HCL space. RGB to...
by GreenKoopa
2013-07-23T09:28:37-07:00
Forum: Users
Topic: Luminize, Colorize, HCL
Replies: 17
Views: 20868

Re: Luminize, Colorize, HCL

The documentation for Luminize compose is unclear. Hopefully I can research, experiment, and stumble my way to some answers. My hope is that such a compose mode (or color space?) could replace some of my uses of HSB/HSV, HSL, and Lab. Please correct me where I am wrong. Photoshop's Luminosity and Co...
by GreenKoopa
2013-07-22T22:10:02-07:00
Forum: Users
Topic: Luminize, Colorize, HCL
Replies: 17
Views: 20868

Luminize, Colorize, HCL

Photoshop has the layer blend modes Luminosity and Color. Does anyone know if these are IM's Luminize and Colorize compose methods, or what colorspace Luminize and Colorize work in (HSB/HSV, HSL, HSLuma)?

EDIT: subject
by GreenKoopa
2013-07-22T22:06:27-07:00
Forum: Users
Topic: bilinear point in percents
Replies: 19
Views: 9627

Re: bilinear point in percents

snibgo and I thought not. Sorry it took so long to demonstrate this clearly.