Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,894 questions

51,825 answers

573 users

How to convert CMYK to RGB in C

1 Answer

0 votes
#include <stdio.h>
#include <math.h>

// CMYK = Cyan, Magenta, Yellow, Key(black)
// RGB = Red, Green, Blue

struct CMYK {
    double C;
    double M;
    double Y;
    double K;
};

struct RGB {
    unsigned char R;
    unsigned char G;
    unsigned char B;
};

struct RGB CMYKToRGB(struct CMYK cmyk) {
    struct RGB rgb;

    rgb.R = round(255 * (1 - cmyk.C / 100) * (1 - cmyk.K / 100));
    rgb.G = round(255 * (1 - cmyk.M / 100) * (1 - cmyk.K / 100));
    rgb.B = round(255 * (1 - cmyk.Y / 100) * (1 - cmyk.K / 100));

    return rgb;
}

int main(void)
{
    struct CMYK data = {5.0, 16.0, 100.0, 0.0};
    struct RGB rgb = CMYKToRGB(data);

    printf("R = %d G = %d B = %d", rgb.R, rgb.G, rgb.B);

    return 0;
}




/*
run:

R = 242 G = 214 B = 0

*/

 



answered Jan 30, 2023 by avibootz
edited Jan 31, 2023 by avibootz

Related questions

1 answer 96 views
96 views asked Jan 31, 2023 by avibootz
1 answer 138 views
138 views asked Jan 31, 2023 by avibootz
1 answer 89 views
89 views asked Jan 30, 2023 by avibootz
1 answer 122 views
122 views asked Feb 2, 2023 by avibootz
1 answer 124 views
124 views asked Feb 1, 2023 by avibootz
1 answer 121 views
121 views asked Feb 1, 2023 by avibootz
1 answer 125 views
125 views asked Jan 31, 2023 by avibootz
...