Unplanned
Last Updated: 25 Aug 2025 06:59 by ADMIN
Created by: Svitlana
Comments: 1
Category: PictureBox
Type: Bug Report
0

Overview

A bug found in the Telerik PictureBox control for Windows Forms. The issue specifically affects the rendering of SVG graphics, where the text element is being duplicated by the viewer.

Affected Component

- Product: Telerik UI for WinForms
- Control: `RadPictureBox'
- Version: 2025.02
- Platform: Windows Forms (.NET Framework)

Steps to Reproduce

1. Run the application from provided MCVE
2. Observe the text in SVG preview: the text is duplicated twice 
3. Zoom in the view
4. Observe the text in SVG preview: there are many instances of the same text

Expected Behavior

The Telerik PictureBox should render only a single instance of the text from SVG file.

Actual Behavior

PictureBox shows many instances of the same text and the specifix number of them depends on the zoom level.

Sample Files

- ✅ `example.svg`: A SVG file that renders correctly in Microsoft Edge. 
- ✅ `browser.png`: Screenshot of how the SVG file looks in Microsoft Edge. 
- ✅ `browser_after_zoom.png`: Screenshot of how the SVG file looks in Microsoft Edge after 150% zoom. 
- ❌ `telerik.png`: Screenshot of how the same file looks in the Telerik PictureBox.
- ❌ `telerik_after_zoom.png`: Screenshot of how the same file looks in the Telerik PictureBox after zooming in.

Environment

| Component      | Version            |
|----------------|--------------------|
| Telerik UI     | 2025.2.520.48      |
| .NET Framework | .NET Framework 4.8 |
| OS             | Windows 11         |

Unplanned
Last Updated: 30 Jan 2025 10:31 by ADMIN
Created by: Alok Tibrewal
Comments: 1
Category: PictureBox
Type: Feature Request
0
 
Unplanned
Last Updated: 18 Dec 2023 11:49 by Sean

Currently, SVG image blurs for example when "opacity:0.2995 (...)" See below image:

Unplanned
Last Updated: 26 May 2023 04:45 by ADMIN
Created by: S
Comments: 1
Category: PictureBox
Type: Feature Request
1

Moving the cursor over the image would display a zoomed portion of the image located under the mouse position:

Unplanned
Last Updated: 05 Aug 2022 09:24 by Troy
Created by: Troy
Comments: 0
Category: PictureBox
Type: Feature Request
2

Currently, SVG files that have filter tags in their XML are not respected by the RadPictureBox control. Sample code:

<filter ..>
  <feGaussianBlur .. />
  <feMorphology .. />
  <feGaussianBlur .. />
  <feColorMatrix .. />
  <feComposite .. />
  <feGaussianBlur .. />
  <feDiffuseLighting ...>
	<feDistantLight ... />
  </feDiffuseLighting>
  <feBlend .. />
  <feComposite ../>
  <feSpecularLighting ...>
	<feDistantLight ../>
  </feSpecularLighting>
  <feComposite .. />
</filter>