Search found 40 matches

by josephaaroncampbell
2017-03-01T16:12:36-07:00
Forum: Users
Topic: -CLUT solarizes tiff image from Capture One Pro but not with a tiff image from Photoshop?
Replies: 4
Views: 6346

Re: -CLUT solarizes tiff image from Capture One Pro but not with a tiff image from Photoshop?

Figured it out. Thanks for your help fmw42. If i remove the legacy convert call then there is no issue. so that legacy command was doing something different. Its interesting still that the legacy convert command did not have issues with the tiff from adobe photoshop. The full usage of the CLUT in my...
by josephaaroncampbell
2017-03-01T13:22:42-07:00
Forum: Users
Topic: -CLUT solarizes tiff image from Capture One Pro but not with a tiff image from Photoshop?
Replies: 4
Views: 6346

Re: -CLUT solarizes tiff image from Capture One Pro but not with a tiff image from Photoshop?

Ok. Thanks for correcting my syntax. I will have to try this out and see if my grammar is the issue.
by josephaaroncampbell
2017-03-01T12:46:56-07:00
Forum: Users
Topic: -CLUT solarizes tiff image from Capture One Pro but not with a tiff image from Photoshop?
Replies: 4
Views: 6346

-CLUT solarizes tiff image from Capture One Pro but not with a tiff image from Photoshop?

Hello, I am using -clut to apply edits to grayscale , 8bit , '.tif' images produced via Capture One Pro 9. How i produce the CLUT image: magick convert -colorspace LAB -channel R -separate -size 1x256 gradient: -rotate 90 clut.tif How I apply the CLUT image: magick convert -quiet CO_IMAGE.tif CLUT.t...
by josephaaroncampbell
2017-02-28T11:11:50-07:00
Forum: Users
Topic: use identify and convert in same command? mpr: format. windows batch file.
Replies: 6
Views: 10292

Re: use identify and convert in same command? mpr: format. windows batch file.

confirmed. This works just fine with out the added MPR.

Thank for making this more efficient.
by josephaaroncampbell
2017-02-13T00:19:42-07:00
Forum: Users
Topic: use identify and convert in same command? mpr: format. windows batch file.
Replies: 6
Views: 10292

Re: use identify and convert in same command? mpr: format. windows batch file.

I will test it out. I was doing it without the mpr before but didnt see any changes in the histogram. so maybe i was overlooking something then.

thanks for the info
by josephaaroncampbell
2017-02-12T23:43:43-07:00
Forum: Users
Topic: is this histogram output correct?
Replies: 5
Views: 6653

is this histogram output correct?

The magick code in batch file: magick convert -quiet input.tif -colorspace gray -gravity center -crop 60%% -format %%c histogram:info:- >> %~dp0hist.txt Reading from a grayscale image, part of this histogram output is: 1: ( 2, 2, 2) #020202 gray(2) 1: ( 5, 5, 5) #050505 gray(5) 2: ( 5, 5, 5) #050505...
by josephaaroncampbell
2017-02-12T23:06:19-07:00
Forum: Users
Topic: use identify and convert in same command? mpr: format. windows batch file.
Replies: 6
Views: 10292

Re: use identify and convert in same command? mpr: format. windows batch file.

I also ended up using the mpr format with '-write' like this: **from windows batch file: magick convert -quiet !fullpath! %~dp0clut.tif -clut -colorspace gray -gamma !gNum! -gravity center -crop 60%% -write mpr:hgram +delete mpr:hgram -format %%c histogram:info:- >> %~dp0hist.txt this is to output t...
by josephaaroncampbell
2017-02-12T22:56:15-07:00
Forum: Users
Topic: use identify and convert in same command? mpr: format. windows batch file.
Replies: 6
Views: 10292

Re: use identify and convert in same command? mpr: format. windows batch file.

Thank you for the response. sorry for the delay in mine.

this works very well.
by josephaaroncampbell
2016-12-07T14:03:32-07:00
Forum: Users
Topic: use identify and convert in same command? mpr: format. windows batch file.
Replies: 6
Views: 10292

use identify and convert in same command? mpr: format. windows batch file.

Hello, Is it possible to use the covert and identify commands in the same command string? I need to apply settings to an .tiff image file but also want to know the mean and other stats about the images AFTER the settings are applied. I was hoping to avoid writing the file to disk. I tried the mpr: f...
by josephaaroncampbell
2016-11-17T08:05:26-07:00
Forum: Magick++
Topic: image.read() throws exception and fails. But works when creating constructor?
Replies: 2
Views: 16317

image.read() throws exception and fails. But works when creating constructor?

Hello, I am using version: Version: ImageMagick 7.0.3-5 Q16 x64 2016-11-08 http://www.imagemagick.org Copyright: Copyright (C) 1999-2015 ImageMagick Studio LLC License: http://www.imagemagick.org/script/license.php Visual C++: 180040629 Features: Cipher DPC HDRI Modules OpenMP Delegates (built-in): ...
by josephaaroncampbell
2016-07-04T22:58:47-07:00
Forum: MagickWand
Topic: [solved]successful build/compile using GCC/Ubuntu and Windows VS2015 CMD Prompt. but cant get IDE to build. Code::BLocks
Replies: 1
Views: 16885

Re: successful build/compile using GCC/Ubuntu and Windows VS2015 CMD Prompt. but cant get IDE to build. Code::BLocks

So I randomly tried something I tried earlier today from this resource on the code::blocks wiki that gave details about third party #include files: http://wiki.codeblocks.org/index.php/FAQ-Compiling_(errors)#Q:_What_do_I_need_to_know_when_using_3rd_party_libs.3F I needed to also goto Project -> Buil...
by josephaaroncampbell
2016-07-04T22:45:02-07:00
Forum: MagickWand
Topic: [solved]successful build/compile using GCC/Ubuntu and Windows VS2015 CMD Prompt. but cant get IDE to build. Code::BLocks
Replies: 1
Views: 16885

[solved]successful build/compile using GCC/Ubuntu and Windows VS2015 CMD Prompt. but cant get IDE to build. Code::BLocks

Hello, So i can say I was successful in building/compiling a MagickWand script with VisualStudio 2015 Native Tools x64 Command Prompt as well as through the terminal in Ubuntu using gcc. The GCC code from the MagickWand example page : http://www.imagemagick.org/script/magick-wand.php cc -o wand wand...
by josephaaroncampbell
2016-07-04T11:07:12-07:00
Forum: Developers
Topic: cant compile C program from example. IM 7.0.2 . Ubuntu. Fatal error.
Replies: 3
Views: 8639

Re: cant compile C program from example. IM 7.0.2 . Ubuntu. Fatal error.

So the porting guide helped solve the issues. Updating the example code to the v7 header names, function calls, and locations did the trick. example of updated C program "wandTest.c" : #include "MagickWand/MagickWand.h" int main(int argc, char *argv[]) { MagickWand *newWand; Magi...
by josephaaroncampbell
2016-07-02T20:58:33-07:00
Forum: Developers
Topic: cant compile C program from example. IM 7.0.2 . Ubuntu. Fatal error.
Replies: 3
Views: 8639

cant compile C program from example. IM 7.0.2 . Ubuntu. Fatal error.

Hello, I just installed IM from source folowing these instructions: http://www.imagemagick.org/script/install-source.php identify -version returns: Version: ImageMagick 7.0.2-2 Q16 x86_64 2016-07-02 http://www.imagemagick.org Copyright: Copyright (C) 1999-2016 ImageMagick Studio LLC License: http://...