def jp2_create_command(source_path:, output:)
options = []
# since CMYK becomes sRGB in make_tmp_tiff, jp2_space option should be set for both;
# we're not sure at this time what happens for grayscale (or what Tony C. wants for grayscale)
options << '-jp2_space sRGB' if image.srgb?
We have this in the jp2_creator code:
Options:
What should we do?