Unplanned
Last Updated: 07 Mar 2019 08:39 by ADMIN
ADMIN
Tanya
Created on: 15 Sep 2016 15:51
Category: PdfProcessing
Type: Bug Report
7
PdfProcessing: The alpha channel of gradient stop is not respected
When creating a GradientStop, an alpha channel of the color could be applied. However, this setting is not respected it the result document and the gradient is with full opacity.

Steps to reproduce:
1. Create a gradient with an alpha channel:

RadFixedDocument document = new RadFixedDocument();
RadFixedPage page = document.Pages.AddPage();
FixedContentEditor containerEditor = new FixedContentEditor(page);

LinearGradient linearGradient = new LinearGradient(new Point(0, 0), new Point(30, 30));
linearGradient.GradientStops.Add(new GradientStop(new RgbColor(10, 0, 207, 0), 0));
linearGradient.GradientStops.Add(new GradientStop(new RgbColor(10, 0, 102, 204), 1));

containerEditor.GraphicProperties.FillColor = linearGradient;
containerEditor.DrawRectangle(new Rect(10, 10, 48, 29));

2. Export the document to PDF

Observed: The alpha channel is not respected and the gradient is with full opacity
2 comments
ADMIN
Tanya
Posted on: 08 Mar 2018 09:24
Hi Peter,

The task is currently not scheduled for fixing, thus I cannot say when a fix might be available. Continue following this item so you can be notified when its status changes.

Regards,
Tanya
Peter
Posted on: 01 Mar 2018 01:13
This still seems to be an issue. Any idea of when this will be fixed?