In short: I want to assign a ICC color profile to an image and not apply it.
More info:
In my company we need to merge a multiple layered pdf file into one layer. To do this we merge the pdf page into an image and then save the image as a pdf. But in the process of creating the image the color profile of the image gets lost. If we Apply the color profile in C# the profile will transform from Device RGB (default output of .NET) to the sRGB_IEC61966-2-1_no_black_scaling.icc
profile. In the transformation some colors change. Instead of applying the color profile we need to assign it. Meaning that no colors are transformed.
Does anyone know how to achieve this? Thanks in advance.