Hello! I am having an issue with missing bold font styling when using the HtmlFormatProvider to export an HTML string to a PDF byte array. All other CSS styles work as expected in the creation of some relatively complex forms, but the bold formatting is missing from the resultant PDF document (see attached image).
Currently using version 2020.2.615 of Telerik.Documents & related NuGet packages (upgrade may not be possible due to some legacy restrictions, so would ideally like to resolve without)
Using the following code with an example string, we save the byte array as a database record and the document is downloaded on request by the user.
// sample string
var stringToConvert = "<div><span>Here is some text. And here is some <b>bold</b> text... maybe?</span></div><div><span>Here is some text. And here is some <strong>bold</strong> text... maybe?</span></div><div><span>Here is some text. And here is some <span style=\"font-weight:bold;\">bold</span> text... maybe?</span></div>";
HtmlFormatProvider provider = new HtmlFormatProvider();
RadFlowDocument document = provider.Import(stringToConvert);
// Export document
PdfFormatProvider byteProvider = new PdfFormatProvider();
return byteProvider.Export(document);
Thank you,
Jeff
Hello All,
I am using Telerik.Documents.SpreadsheetStreaming assembly with Version 2020.3.1019.20. I just need how to assign text having hyperlink to ICellExporter object here. Please suggest me if there is any wrong here.
string policy = "<a href=\"https://www.termsfeed.com/blog/sample-terms-and-conditions-template/\">Policy Terms</a>";
string showText = "For necessary info, Please refer " + policy;
//rowExporter -> IRowExporter object here
using var cellExporter = rowExporter.CreateCellExporter();
cellExporter.SetValue(showText);
Thanks
Sam
Hello,
I have below code block to add Hyperlink(IWorksheetExporter) in cell text. But it's not working in the exported file. Please help me to resolve this.
using var worksheetExporter = workBookExporter.CreateWorksheetExporter("Terms");
using (var rowExporter = worksheetExporter.CreateRowExporter())
{
string conditions = "<a href=http://telerik.com> Terms&Conditions</a>";
string desc = "Further info, refer " + conditions;
using var cellExporter = rowExporter.CreateCellExporter();
cellExporter.SetValue(desc);
}
Thanks,
Satish
Using WordsProcessing:
Attached .DOCX file is just an example that is encrypted with the word: password
Note this isn't the same as protection (restrict editing)
We currently have the ability to export a data table here:
Is there a way to export a data set?
Dear Telerik Team,
We encounter an issue with export html data to pdf file using below code. For example,
using Telerik.Web.UI;
using OpenXmlSpreadsheet = DocumentFormat.OpenXml.Spreadsheet;
using Pdf = Telerik.Windows.Documents.Flow.FormatProviders.Pdf;
using te = Telerik.Windows.Documents.Flow.FormatProviders.Html;
using tm = Telerik.Windows.Documents.Flow.Model;
using tp = Telerik.Windows.Documents.Primitives;
using tt = Telerik.Windows.Documents.Spreadsheet.Theming;te.HtmlFormatProvider provider = new te.HtmlFormatProvider();
tm.RadFlowDocument document = provider.Import(HttpUtility.HtmlDecode(htmldata));
tt.ThemeFontScheme fs = new tt.ThemeFontScheme("Arial", "Helvetica", "sans-serif");
tt.DocumentTheme theme = new tt.DocumentTheme("PDF", document.Theme.ColorScheme, fs);
document.Theme = theme;
document.Sections[0].PageMargins = new tp.Padding(50, 25, 50, 25);
Pdf.PdfFormatProvider providerPdf = new Pdf.PdfFormatProvider();
byte[] fileBytes = providerPdf.Export(document);
"providerPdf.Export(document);" this line throws exception "An exception occurred during a WebClient request" whenever we include <img src="/image path/image.png" /> html tag.
Your support is appreciated.
Please try wps application to open docx file that generated by telerik document processing. www.wps.cn
header and footer are not displayed .
file was generated by ASP.NET Core WordsProcessing Key Features Demo | Telerik UI for ASP.NET Core
I am trying to use Telerik document processing to append some text to an existing pdf document. The text is in Arabic language, that is, it is Unicode and it has right to left direction. The resulted pdf document does not show the text even though I can it render the text if I changed the text to English.
Does Telerik pdf document processing library support Arabic text?
Hi,
I'm using IWorksheetExporter (Telerik.Documents.SpreadsheetStreaming library) to create big Excel files, ~400 mb xlsx.
I need to add notes to header cells like what is available here https://docs.telerik.com/devtools/document-processing/libraries/radspreadprocessing/features/notes but it doesn't look to be available in the Streaming library.
I see two possible workarounds.
NB. Trying to completely create this file via the RadSpreadProcessing library throw a "Stream was too long" from within the library while saving it.
NB. I'm using the latest version from the nuget stream.
Thanks