In Development
Last Updated: 25 Apr 2025 12:38 by ADMIN
Scheduled for 2025 Q2
InvalidOperationException is thrown when a comment uses legacyDrawingHF element instead of legacyDrawing.
In Development
Last Updated: 25 Apr 2025 08:52 by ADMIN
When the line spacing of the paragraph is set to "at least" and the line spacing value is smaller than the font size, Word makes the actual value of the line spacing to be larger in order not to squish the lines. During export to HTML, Word skips the line spacing in such case, in order to preserve the same effect. WordsProcessing exports the line spacing, which causes the lines to become squished.
In Development
Last Updated: 25 Apr 2025 07:57 by ADMIN
The case is invalid according to the specification but all readers manage to open the document and allow editing its fields. The document can be also opened in RadPdfViewer but without the fields and the widgets.
In Development
Last Updated: 25 Apr 2025 07:19 by ADMIN

Incorrect timestamp of a DateTime with custom number format.

Expected:

Actual:

In Development
Last Updated: 25 Apr 2025 05:40 by ADMIN
This is a sample code to replicate the error which is triggered on export: 
            string inputFileName = "input.xlsx";
            if (!File.Exists(inputFileName))
            {
                throw new FileNotFoundException(String.Format("File {0} was not found!", inputFileName));
            }

            Telerik.Windows.Documents.Spreadsheet.Model.Workbook workbook;
            IWorkbookFormatProvider formatProvider = new Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml.Xlsx.XlsxFormatProvider();

            using (Stream input = new FileStream(inputFileName, FileMode.Open))
            { 
                workbook = formatProvider.Import(input, TimeSpan.MaxValue);
            }
            string outputFilePath = "output.xlsx";

            using (Stream output = new FileStream(outputFilePath, FileMode.Create))
            {
                formatProvider.Export(workbook, output, TimeSpan.MaxValue);
            }
            Process.Start(new ProcessStartInfo() { FileName = outputFilePath, UseShellExecute = true });
In Development
Last Updated: 24 Apr 2025 14:42 by ADMIN
Created by: Jan Brandenburger
Comments: 0
Category: Telerik Document Processing
Type: Bug Report
1
When the image passed to the GetAllTextFromImage() method doesn't have any text in it, a NullReferenceException is thrown. The expected behaviour should be to return a null or empty string.
In Development
Last Updated: 24 Apr 2025 09:05 by ADMIN
Wrong glyph rendering due to incorrectly parsed Type1Font glyph data.
In Development
Last Updated: 24 Apr 2025 08:55 by ADMIN
AcroForms are not saved when splitting a document into pages. This leads to forms not being recognized when the file is imported back.
In Development
Last Updated: 24 Apr 2025 08:50 by ADMIN
Example: 
16 0 obj
<</AP<</N<</Off null/On 188 0 R>>/D<</Off 189 0 R/On 190 0 R>>>>/AS/Off/F 4/FT/Btn/H/T/P 19 0 R/Rect[ 40.3 690.45 56.15 706.7999]/Subtype/Widget/T(Einraeumung:Grabnutzungsrechts)/Type/Annot>>
endobj

 
In Development
Last Updated: 24 Apr 2025 08:47 by ADMIN
NotImplementedException is thrown for the SvgFontDefn's MeasureCharacters method.
In Development
Last Updated: 23 Apr 2025 16:53 by ADMIN
This is not a valid scenario, but Adobe Acrobat handles it and we should too. 
In Development
Last Updated: 23 Apr 2025 16:51 by ADMIN
When a signed document containing an image with Indexed color space is import-exported the image data seems corrupted.
In Development
Last Updated: 23 Apr 2025 14:07 by ADMIN

When merging documents` pages using the PdfStreamWriter the Form Fields are not copied:

using (PdfStreamWriter fileWriter = new PdfStreamWriter(File.OpenWrite(document2Name)))
{
	// Iterate through the files you would like to merge 
	for (int i = 0; i < 2; i++)
	{
		// Open each of the files 
		using (PdfFileSource fileToMerge = new PdfFileSource(File.OpenRead(document1Name)))
		{
			// Iterate through the pages of the current document 
			foreach (PdfPageSource pageToMerge in fileToMerge.Pages)
			{
				// Append the current page to the fileWriter, which holds the stream of the result file 
				fileWriter.WritePage(pageToMerge);
			}
		}
	}
}

A possible workaround is to use the RadFixedDocument`s Merge() method: 

document1.Merge(document2);

 

In Development
Last Updated: 23 Apr 2025 11:45 by ADMIN
Document's East Asia font falls back to a different font when opened in MS Word.
In Development
Last Updated: 23 Apr 2025 11:31 by ADMIN
The theme xml element (root of the theme.xml part) has a name property which is optional. However, WordsProcessing throws an exception when it doesn't find a name.
In Development
Last Updated: 23 Apr 2025 11:16 by ADMIN
Import a DOCX file which contains part of the text with simulated bold font. Then, export it to PDF format. 
In Development
Last Updated: 23 Apr 2025 10:36 by ADMIN
XlsFormatProvider: FormulaParseException is thrown when importing a document with formulas referencing non-existent named ranges.
In Development
Last Updated: 23 Apr 2025 10:15 by ADMIN
As a result, the glyphs are not measured and arranged properly. The issue applies to TrueType and Type1 fonts.
In Development
Last Updated: 23 Apr 2025 06:49 by ADMIN
NullReferenceException is thrown when importing a specific document with Track Changes.
Unplanned
Last Updated: 18 Apr 2025 07:46 by Ed
When accessing AngleSharp.Css.Values.CssShadowValue.CssText on import, an exception is thrown: System.Security.VerificationException: 'Operation could destabilize the runtime.'