You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
692 B

Chalk/krita will crash trying to load PNGs it saved if it is built with libpng-1.6.
The patch included with the SlackBuild is a workaround until koffice issue 20 has been fixed.
If it is necessary to convert the image to the RGB working space, there are a number of profiles installed with {chalk,krita} in <TDE-installation-directory>/share/apps/{chalk,krita}/profiles/ which can be installed with Imagemagick's 'convert', or GraphicsMagick's 'gm convert'
Example:
"""""""
in=<path-to>/original.png
out=<path-to>/converted.png
profile=<TDE-installation-directory>/share/apps/{chalk,krita}/profiles/srgb_color_space_profile.icm
convert='gm convert'
($convert $in -profile $profile $out)