Support

Account

Home Forums Front-end Issues Convert hexadecimal value to CMYK Reply To: Convert hexadecimal value to CMYK

  • Information on what you want to output is what I was trying to get you to tell me.

    
    $cmyk = rgb2cmyk(hex2rgb(get_sub_field('your-field-name')));
    foreach ($cmyk as $i => $v) {
      echo 'cmyk('.implode(',', $cmyk).')';
    }