RgbColorProfile

JpegImage.RgbColorProfile property

Das RGB-Farbprofil für CMYK- und YCCK-JPEG-Bilder. Muss für eine korrekte Farbkonvertierung mit CMYKColorProfile gepaart sein.

public StreamSource RgbColorProfile { get; set; }

Beispiele

Das folgende Beispiel lädt PNG und speichert es unter Verwendung eines benutzerdefinierten ICC-Profils als CMYK-JPEG. Lädt dann CMYK JPEG und speichert es wieder in PNG. Die Farbkonvertierung von RGB nach CMYK und von CMYK nach RGB erfolgt über benutzerdefinierte ICC-Profile.

[C#]

string dir = "c:\\temp\\";

// PNG laden und als CMYK JPEG speichern
using (Aspose.Imaging.FileFormats.Png.PngImage image = (Aspose.Imaging.FileFormats.Png.PngImage)Image.Load(dir + "sample.png"))
{
    using (System.IO.Stream rgbProfileStream = System.IO.File.OpenRead(dir + "eciRGB_v2.icc"))
    using (System.IO.Stream cmykProfileStream = System.IO.File.OpenRead(dir + "ISOcoated_v2_FullGamut4.icc"))
    {
        Aspose.Imaging.ImageOptions.JpegOptions saveOptions = new Aspose.Imaging.ImageOptions.JpegOptions();
        saveOptions.ColorType = Aspose.Imaging.FileFormats.Jpeg.JpegCompressionColorMode.Cmyk;

        // Benutzerdefinierte ICC-Profile verwenden
        saveOptions.RgbColorProfile = new Aspose.Imaging.Sources.StreamSource(rgbProfileStream);
        saveOptions.CmykColorProfile = new Aspose.Imaging.Sources.StreamSource(cmykProfileStream);

        image.Save(dir + "output.cmyk.jpg", saveOptions);
    }
}

// Lade CMYK JPEG und speichere es als PNG
using (Aspose.Imaging.FileFormats.Jpeg.JpegImage image = (Aspose.Imaging.FileFormats.Jpeg.JpegImage)Image.Load(dir + "output.cmyk.jpg"))
{
    using (System.IO.Stream rgbProfileStream = System.IO.File.OpenRead(dir + "eciRGB_v2.icc"))
    using (System.IO.Stream cmykProfileStream = System.IO.File.OpenRead(dir + "ISOcoated_v2_FullGamut4.icc"))
    {
        // Benutzerdefinierte ICC-Profile verwenden
        image.RgbColorProfile = new Aspose.Imaging.Sources.StreamSource(rgbProfileStream);
        image.CmykColorProfile = new Aspose.Imaging.Sources.StreamSource(cmykProfileStream);

        Aspose.Imaging.ImageOptions.PngOptions saveOptions = new Aspose.Imaging.ImageOptions.PngOptions();
        image.Save(dir + "output.rgb.png", saveOptions);
    }
}

Siehe auch