ICC Profiles dropped when converting images in Opus

Just a note - I understand Opus isn't the be all and end all of ICC aware image viewers/processors, but one thing it really shouldn't do is drop the profile when converting from, say, TIFF to JPG - even if it's not really aware of profiles for display etc., it should at least tag the output file with the same profile.

Would make the convert functionality a LOT more useful.

1 Like

I don't think any metadata is preserved when converting between image formats at the moment; only when altering images without changing their formats.

If you need more advanced conversion functionality but want to remain within Opus for convenience, ImageMagick is a good, free tool with a conversion tool which can be integrated into Opus toolbars, hotkeys, etc.

Thanks Leo - yep, plenty of third party tools, would just be nice for the built in one to pass the basics of metadata on.

Are there any pre-made opus - IM toolbars etc?

I can't think of a pre-made toolbar, but ImageMagick can do so many different things that you'd probably end up changing it anyway, unless what you want happened to be the same as the toolbar creator.

ImageMagick's command line is really easy to use with Opus, though. Here's an example Opus function which will use ImageMagick to convert from any existing format into JPG format:

@runmode hide @nodeselect "%ProgramFiles(x86)%\ImageMagick\convert.exe" {filepath$} {filepath$|ext=jpg}

Ok that's great, thanks

This works a treat - any way to track it's progress though? With large files it's totally silent till the output appears which is disconcerting...but I am guessing there is no way to do a progress bar or similar??

Remove the "@runmode hide" and you'll get a window while it is working.

I don't know it ImageMagick has an option to show detailed progress as it works.

imagemagick.org/script/comma ... hp#monitor

Thanks again - although a pretty hilarious way to implement a progress monitor, that definitely works at least to indicate it's working...