Hi all,
I need to create some profile cards on a document based on the style template attached here. At the end of the process, the document should be exported in pdf.
I have tried a lot of things with RadWordsProcessing and RadPdfProcessing but I'm not sure I would be able to obtain the exact same result because of style limitations like rounded corners unavailable, for example.
Does anybody have any idea how I could create something the most similar possible? With any Telerik Document Processing tool.
I also tried to make a table (structured as in attached picture) but I didn't succeed to create the table with a colored background or image background (on all the table) and with the profile picture which should be place in a circle shape, ahead the table background.
As I'm new to Telerik, my knowledge is limited, but I didn't find any information that helps me. On the contrary, I only found information that make me doubt about the feasibility of this project.
Any help would really be appreciated,
Thank you in advance,
Adrian
Hello,
I have a problem. I want to create a table which should be right-aligned.
But when I try to set table.Alignment to Right It does not work.
I export this document into PDF.
Here is a sample code and the result screenshot.
1.
RadFlowDocument document =
new
RadFlowDocument();
2.
Table table = document.Sections.First().Blocks.AddTable();
3.
table.Alignment = Alignment.Right;
4.
TableRow row = table.Rows.AddTableRow();
5.
TableCell cell = row.Cells.AddTableCell();
6.
cell.Blocks.AddParagraph().Inlines.AddRun(
"sample text"
);
I encountered this error in console when the application is initially rendered or run. We are using telerik UI for blazor. Never encountered with this issue before, do anyone have any idea why this error is occurred and any possible solutions to it?
Hi all,
I'm trying to import a word document as template, and change some text from this document with RadWordsProcessing in order to fill this document automatically.
In order to do that, I assume I must import the document as a RadFlowDocument and then change some text with the Replace method and finally export the modified document. But, when I import the word document and export it without any change, all text in text boxes or in shapes has disappeared. Is there any step or any configuration I missed?
Here is my code :
RadFlowDocument document;
DocxFormatProvider provider = new DocxFormatProvider();
using (Stream input = File.OpenRead(myTemplateFilePath)
{
document = provider.Import(input);
}
//Change my text here with replace method
//RadFlowDocumentEditor editor = new RadFlowDocumentEditor(document);
//editor.ReplaceText("oldText", "newText");
IFormatProvider<RadFlowDocument> formatProvider = new DocxFormatProvider();
using (FileStream stream = File.OpenWrite(myResultFilePath))
{
formatProvider.Export(document, stream);
}
Console.WriteLine("Document generated.");
Pictures of my template file and my result file are attached here.
Thank you in advance for your help,
Regards,
Adrian
Hi,
We would like to know if we can add extra fields to a signed pdf document without invalidating the signatures and also if we open the pdf to be able to trace the addons.
Please see the attached image.
If possible provide us sample code how we can achieve that in case your library has this functionality
thanks
john
Hi,
I have some issues converting doc or docx files to pdf.
Attachment has the code sample and 2 documents.
Problem_with_footer.docx after transformation does not render bold chars and does not display footer at all..
Changes_Signature_position.doc after transformation the position of Signature place is not correct.
Any help would be appreciated
Thanks
John
I need to rotate the text vertically.
It seems the TextRotation is unavailable when using Telerik.Documents.SpreadsheetStreaming.SpreadCellStyle.
How do I apply text rotation to a style using SpreadsheetStreaming?
Thanks,
Jim
Hello
We have an existing extensive report created with a RadFixedDocument for saving as pdf. We would like to allow users to add content from multiple TelerikEditors to the report, as comments. The TelerikEditor exports html. I have seen this post: https://www.telerik.com/forums/telerik-blazor-pdf-processing---tutorial-on-how-to-add-markup-html-in-a-string-to-a-pdf
Is there any other way to add HTML snippets in a PDF report, or should we rewrite the entire report as a RadFlowDocument? Is there an other way to convert some basic HTML to elements we can use on Block.
Thanks
-Edo
Hello,
I would like to ask if I can add watermark to a pdf document generated from a docx file and signed digitally without invalidating the signature.
Thank you
Hello,
I have a license for Telerik for WPF v2021.1
I wanted to use RadWordsProcessing with dll for .net standard (Telerik.Documents.* instead of Telerik.Windows.Documents.*) but I can't find them either from the installation directory or the nuget repository
From the Telerik product page it says that document processing libraries are included in each product so I should have them.
Can anyone help me find them or understand why I don't have them please ?
Thank you
Thomas