Telerik Forums
Telerik Document Processing Forum
1 answer
172 views

Hi Admin,
With using RadFixedDocument, I tried to import a PDF AcroForm that have signature

then fill data then export to byte array.

But It's always throw exception when use function export

Can you support?

Thank you

Nikolay Demirev
Telerik team
 answered on 19 Aug 2019
4 answers
839 views

Hi admin,

With Telerik reporting (RadPdfProcessing), could we able to do bellow?

1. Load existed an AcroForm as template
2. Auto fill data to this template with data in the database

3. Generate to new non editable PDF file

If can do, please post the guideline

 

Thank you for supporting

 

Best regards,

 

Nikolay Demirev
Telerik team
 answered on 16 Aug 2019
1 answer
183 views

How do you add symbols, specifically "registered" and "copyright" to the pdf export?  Id displays in Visual Studio when creating the text, but it doesn't display after the PDF is generated.

 

Thanks!

Peshito
Telerik team
 answered on 15 Aug 2019
1 answer
181 views

Hi all,

Does Telerik RadFlowDocument or RadFlowDocumentEditor support Track Changes & Lock Tracking of Microsoft Office files(.DOCX)?

Is there any alternative for the same?

 

Martin
Telerik team
 answered on 12 Aug 2019
1 answer
173 views

Dear Concerned,

I am successfully able to merge multiple documents (.DOCX) in to a single document using RadFlowDocument.Merge function.

Now I want to split this document back into multiple documents. please suggest how to proceed?

 

Martin
Telerik team
 answered on 08 Aug 2019
3 answers
314 views

Hi Team,

I was able to convert a word document to PDF using telerik wordsprocessing (https://demos.telerik.com/aspnet-ajax/wordsprocessing/exporttopdf/defaultvb.aspx?show-source=true),this works excellent for simple word documents and not for documents like certificates or a background image with text on it. 

Does Telerik WordsProcessing support conversion of word document such as certificates or any documents with background image and text on top of it?

If not , will this be fixed in next update? 

Is there any other control or way to convert word( like certificates) to pdf ?

SAMPLE CERTIFICATE: https://omextemplates.content.office.net/support/templates/en-us/tf03982379.dotx (convert this to docx)

Tanya
Telerik team
 answered on 02 Aug 2019
1 answer
4.5K+ views

I work for a company that heavily leverages Telerik controls in our core applications. I’ve been tasked with exploring the PDF options available in hopes of replacing our current PDF exports with Telerik equivalents to help move away from an unwanted software license.

In exploring the demos and product features it appears to me that rendering HTML content is limited to the RadClientExportManager and therefore is client side only, while server document creation requires the more elemental building of documents by plotting text, and graphics manually via .NET code.

Is this an accurate assessment? What would you recommend to someone wanting to render HTML content on the server where there is no actual browser or user involvement?

We currently convert data populated WebForm pages into PDF files all on the server that are never delivered to a user via browser interaction, or even requested by a browser (automated generation.) 

Aside from an HTML source being easier to use and maintain, it would plug right into our existing situation and not require use to reconstruct our forms in C#. That is obviously a more attractive option for us.

I am very impressed with the functionality of the client side rendering, it just doesn’t appear to cover a lot of common use cases that we happen to fall under.

Martin
Telerik team
 answered on 31 Jul 2019
1 answer
261 views

Hi,

i want to convert HTML to Pdf in c# api in .net Core 2, an you please suggest best way

Martin
Telerik team
 answered on 31 Jul 2019
1 answer
566 views

I want to report bug with this code:

byte[] file = File.ReadAllBytes("Test.pdf");  
            RadFixedDocument document = null;
            var prov = new PdfFormatProvider();
            using (var input = new MemoryStream())
            {
                input.Write(file, 0, file.Length);
                document = prov.Import(input);
            }
When I tried to import my document to RadFixedDocument  it says:
Ex: {"Stack empty."}
Stack trace:
   at System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource)
   at System.Collections.Generic.Stack`1.Peek()
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Import.Parser.PostScriptReader.PushToken(PdfPrimitive primitive)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Import.Parser.PrimitiveParsers.ArrayParser.End()
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Import.Parser.PostScriptReader.<BuildStateMachine>b__8(PostScriptReaderArgs b)
   at Telerik.Windows.Documents.Data.StateMachine.State`1.ExecuteActionIfNotNull(Action`1 action, TArgs arguments)
   at Telerik.Windows.Documents.Data.StateMachine.State`1.Enter(TArgs arguments)
   at Telerik.Windows.Documents.Data.StateMachine.StateMachine`1.GoToState(State`1 state, TArgs arguments)
   at Telerik.Windows.Documents.Data.StateMachine.StateMachine`1.GoToNextState(TArgs arguments)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Import.Parser.PostScriptReader.Read(IPdfImportContext context, Int64 endPosition)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Import.Parser.PostScriptReader.Read(IPdfImportContext context)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Import.ContentStreamInterpreter.ReadContentPrimitives()
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Import.ContentStreamInterpreter.Execute()
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Elements.DocumentStructure.ContentStream.ParseContentData(Byte[] data, IRadFixedDocumentImportContext context, IResourceHolder resourceHolder, IContentRootElement contentRoot)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Elements.DocumentStructure.Page.CopyPropertiesTo(PostScriptReader reader, IRadFixedDocumentImportContext context, RadFixedPage fixedPage)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Elements.DocumentStructure.DocumentCatalog.CopyPagePropertiesTo(PostScriptReader reader, IRadFixedDocumentImportContext context)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Elements.DocumentStructure.DocumentCatalog.CopyPropertiesTo(PostScriptReader reader, IRadFixedDocumentImportContext context)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Import.RadFixedDocumentImportContext.BeginImportOverride()
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Import.BaseImportContext.BeginImport(Stream pdfFileStream)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Import.PdfImporter.Import(Stream input, IPdfImportContext context)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.PdfFormatProvider.ImportOverride(Stream input)
   at Telerik.Windows.Documents.Common.FormatProviders.FormatProviderBase`1.Import(Stream input

Please fix this issue.

Tanya
Telerik team
 answered on 31 Jul 2019
3 answers
170 views

Good morning,

When going through the PDF with PdfProcessing, it gives me weird text in some elements which I presume is metadata of the pdf.
As for other PDFs who are not created out of Telerik it works fine...

I also checked the Telerik forum a lot, desperately finding a possible and proper solution/alternative for this, but unfortunately.   

I just simply need to read normal text out of my Telerik report, I don't want to export the text, I only wanna extract that text so I can draw an image under it.

My question is simple : Does Telerik have solutions to deal with this issue?

I have attached a snippet of my problem when I'm debugging in Visual Studio and the Telerik Report I try to read.
Thanks

Kurt Berlanger

Tanya
Telerik team
 answered on 30 Jul 2019
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?