Search found 186 matches: ImageMagick

Searched query: +ImageMagick

by loicaigon
Fri Apr 04, 2025 12:47 pm
Forum: Preflighting
Topic: Hundreds of files - one report
Replies: 4
Views: 29942

Re: Hundreds of files - one report

... info to a sheet. There is a Google sheet App for that. https://www0.enfocus.com/en/appstore/product/google-sheets-connect So you could use imageMagick to quickly get resolution data and then store data outside. Then you can have simple look at the google sheet anytime. If you need something ...
by Tenzo
Sat Mar 29, 2025 9:18 pm
Forum: PitStop Server
Topic: Invert B&W PNG to W&B?
Replies: 6
Views: 33955

Re: Invert B&W PNG to W&B?

... Thanks for the reply! However, my development ended up needing even more customization so for now I have just defaulted to using Imagemagick for my lots of my raster editing.
by Terkelsen
Fri Mar 28, 2025 11:07 am
Forum: Color Management
Topic: RGB to CMYK conversions
Replies: 2
Views: 62098

Re: RGB to CMYK conversions

An ImageMagick argument like this should do what you want. Just replace the path to the source and destination profiles with whatever is relevant in you setup. "%1" -profile "/Library/Application Support/Adobe/Color/Profiles/Recommended/sRGB ...
by freddyp
Thu Mar 27, 2025 9:25 am
Forum: Switch
Topic: Photoshop 20.0 app
Replies: 2
Views: 14522

Re: Photoshop 20.0 app

... you want to do is to reduce the size of images (by reducing the resolution I assume) then a much faster, much more efficient alternative is to use ImageMagick. You can install that on your Switch server and run it via "Execute command". There is also an app that makes the whole setup ...
by Tenzo
Tue Mar 04, 2025 11:34 am
Forum: Node.js scripting
Topic: Syntax for Multiple job.createchild()
Replies: 5
Views: 36860

Syntax for Multiple job.createchild()

... jobs to send to data. Any help on this would be appreciated! Input job = await job.get(AccessLevel.ReadWrite); <----Customize Input job With Imagemagick----> <----Customize Input job With Imagemagick----> let New_Job_1 = await job.createChild(Input job); await New_Job_1.setPrivateData(Set_Private_Data(PD1)); ...
by Stefke2303
Thu Feb 13, 2025 10:21 am
Forum: Applications
Topic: Using Ghostscript in Switch
Replies: 4
Views: 40985

Using Ghostscript in Switch

... use the Photoshop plugin but this was way too slow and had annoying popups. Now I was looking on the forum for better ways to implement this and ImageMagick/Ghostscript pops up a lot. When browsing the Ghostscript website I noticed that the free version falls under the AGPL license. I am no legal ...
by loicaigon
Mon Feb 10, 2025 2:42 pm
Forum: LEGACY scripting
Topic: ImageMagick and Run Command issue with JPEG
Replies: 9
Views: 251136

Re: ImageMagick and Run Command issue with JPEG

Did you update the bin location?

meaning
"/opt/homebrew/bin/magick"
to
"/opt/homebrew/Cellar/imagemagick/7.1.1-43/bin/magick"

I am running out of ideas :)
by valaxedo
Mon Feb 10, 2025 2:02 pm
Forum: LEGACY scripting
Topic: ImageMagick and Run Command issue with JPEG
Replies: 9
Views: 251136

Re: ImageMagick and Run Command issue with JPEG

... with just one quote. But I found the issue. I've missed two double quote in front and the end of the whole variable: "/opt/homebrew/Cellar/imagemagick/7.1.1-43/bin/magick" "[Job.Path]/[Job.NestedName:Index="2",Space="trim"]" "[Job.Path]/[Job.NestedName:Index="3",Space="trim"]" ...
by loicaigon
Mon Feb 10, 2025 12:28 pm
Forum: LEGACY scripting
Topic: ImageMagick and Run Command issue with JPEG
Replies: 9
Views: 251136

Re: ImageMagick and Run Command issue with JPEG

On a Windows? Because sometimes you need to escape the quotes \"

Did you try using single quotes? Or you may need to contact the author of the script to get some insights?
by valaxedo
Mon Feb 10, 2025 12:26 pm
Forum: LEGACY scripting
Topic: ImageMagick and Run Command issue with JPEG
Replies: 9
Views: 251136

Re: ImageMagick and Run Command issue with JPEG

Hello Loïc.
Thank you for the suggestion!

But I'm still have an error in the Run Command:
"Command failed wtih exit code: "1", error output: "zsh"1: unmatched " "

Best.
by loicaigon
Sat Feb 08, 2025 10:49 pm
Forum: LEGACY scripting
Topic: ImageMagick and Run Command issue with JPEG
Replies: 9
Views: 251136

Re: ImageMagick and Run Command issue with JPEG

Ok, I could get it working somehow: "/opt/homebrew/bin/magick" "[Job.Path]/[Job.NestedName:Index="2",Space="trim"]" "[Job.Path]/[Job.NestedName:Index="3",Space="trim"]" -append "%%OutputPath%%/appended.jpg" When i say so...
by valaxedo
Mon Feb 03, 2025 4:38 pm
Forum: LEGACY scripting
Topic: ImageMagick and Run Command issue with JPEG
Replies: 9
Views: 251136

Re: ImageMagick and Run Command issue with JPEG

Hello Loïc! How are you? Thank you for your input. I already tested the cli magick cmd and it works fine. But in Switch: Command failed with exit code: "1", Error output: "magick: unable to open image '%%/Users/svc_masterbrowser/Documents/Switch Email Template v2/IN_Magick/_000BG_000B...
by loicaigon
Mon Feb 03, 2025 3:57 pm
Forum: LEGACY scripting
Topic: ImageMagick and Run Command issue with JPEG
Replies: 9
Views: 251136

Re: ImageMagick and Run Command issue with JPEG

Hi Have you looked at the log messages what is the command Switch exactly tries to execute? https://i.ibb.co/HTgznhXV/Screenshot-2025-02-03-at-15-56-25.png It's typically a good way to see if your command is well constructed and you can even copy/paste in a terminal to double test local vs Switch.
by valaxedo
Mon Feb 03, 2025 3:49 pm
Forum: LEGACY scripting
Topic: ImageMagick and Run Command issue with JPEG
Replies: 9
Views: 251136

Re: ImageMagick and Run Command issue with JPEG

Hello Freddy! Thank you for your answer. I amended it but the result, still an error, is quite different now: "Command failed with exit code: "1", error ouput: "magick: unable t oopen image. No such file or directory @ error/blob.c/OpenBlob/3596." It's the same with a double...
by freddyp
Thu Jan 30, 2025 5:35 pm
Forum: LEGACY scripting
Topic: ImageMagick and Run Command issue with JPEG
Replies: 9
Views: 251136

Re: ImageMagick and Run Command issue with JPEG

The paths of the input file and output file that you tested in Terminal did not contain spaces. The paths to the backing folders in Switch will, and I think that is your problem. Place quotes around the paths (because there are already double quotes, I would first try with single quotes): '%%[Job......