BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
This pdf, need some dynamic charts and fill pdf forms | We can fill PDF forms using Essential PDF library, please refer below link, |
Is it possible to create dynamic charts with some json data to illustrate in the pdf while? | Kindly find the sample for exporting chart as PDF. |
can we use custom fonts and styles? | Yes, we can use custom fonts in PDF by providing the custom font as stream in PdfTrueTypeFont. We can set custom styles for text while drawing text. Please refer below link for drawing text using different fonts., Essential PDF provides various inbuild styles for tables. We can use inbuild styles, also we can set custom styles to the tables. Please refer below links, |
can we load an pdf form and add some images/paragraph between the existen paragraphs or images?If I edit an pdf form document with custom fonts and styles. Adding some images and save it. Will this library maintain the original fonts and styles? | We could not add text/images in between the existing paragraphs/images. As PDF is a position based document, we could add text and images but we could not move the text/image in the PDF document. Yes, Essential PDF will maintain the custom fonts and style as it is in the PDF document. Please refer below link to add images in existing PDF document, |
Query | Details | |
Is there a easy way to get PdfDocument form an PdfLoadedDocument? All Syncfusion types. I'm trying to insert a image in a PdfLoadedDocument who previously is filled as an PdfLoadedForm. | The images can be added into an existing PDF document using the below code snippet,
Please find the sample from the following link, | |
Trying to show up with an SfPdfViewerControl in a UWP App throws this error: at Windows.UI.Xaml.Application.LoadComponent(Object component, Uri resourceLocator, ComponentResourceLocation componentResourceLocation) at Syncfusion.Windows.PdfViewer.PdfFlipView.InitializeComponent() at Syncfusion.Windows.PdfViewer.PdfFlipView..ctor() at Syncfusion.Windows.PdfViewer.SfPdfViewerControl..ctor() | This issue may occurred due to referred assemblies were not available with proper folder structure. The assemblies and payload files should be placed as in the same folder structure in the below screenshot: Folder structure inside Syncfusion.Pdf.UWP: Folder structure inside Syncfusion.SfPdfViewer.UWP: You can also use our Syncfusion UWP NuGet for properly referring the PDF viewer UWP assemblies which is available in the following link: | |
There is a way to show up this Pdf's as a Collection of BitmapImages in a Universal Windows Platform App? Without saving it and reading it as a Windows.Data.Pdf.PdfDocument? May we will have the same problems on Web and Xamarin. | UWP: It is not possible to get the pages of a PDF as BitmapImages. But it is possible to get the pages as Images (Winows.UI.Xaml.Controls.Image) using the method SfPdfViewerControl.GetPage() Please find more details about this method from the following link. Web platforms: In web platforms also, we cannot get PDF pages as BitmapImages. But the pages can be exported as Bitmap using the method PdfLoadedDocument.ExportAsImage(). We have attached a simple sample for your reference at the following link. Xamarin: At present, there is no support for exporting PDF pages as images in PdfViewer in Xamarin platforms. |