Relative Content

Tag Archive for typescriptrgbcmykpdf-lib.js

Convert CMYK to RGB in typescript

I try to convert CMYK to RGB with the following formula.
R = 255 × (1-C) × (1-K)
G = 255 × (1-M) × (1-K)
B = 255 × (1-Y) × (1-K)

Convert CMYK to RGB in typescript

I try to convert CMYK to RGB with the following formula.
R = 255 × (1-C) × (1-K)
G = 255 × (1-M) × (1-K)
B = 255 × (1-Y) × (1-K)