Questions tagged [aspose.pdf]

Aspose.Pdf for .NET is a PDF document creation and manipulation component that enables your .NET applications to read, write and manipulate existing PDF documents without using Adobe Acrobat. It also allows you to create forms and manage form fields embedded in a PDF document.

About

Aspose.Pdf for .NET is affordable and offers an incredible wealth of features including PDF compression options; table creation and manipulation; support for graph objects; extensive hyperlink functionality; extended security controls; custom font handling; integration with data sources; add or remove bookmarks; create table of contents; add, update, delete attachments and annotations; import or export PDF form data; add, replace or remove text and images; split, concatenate, extract or inset pages; transform pages to image; print PDF documents and much more.

Links

Website

Documentation

177 questions
1
vote
1 answer

Reading radiobutton fields data when a pdf is generated from word converted document via aspose.pdf library in .net

I have a word document which is converted to pdf. now i have to reverese engineer to get the content of the fields. i am able to parse text field by TextAbsorb but can't able to find any way to get the radio button is checked or not. in text it is…
Kamran Shahid
  • 3,954
  • 5
  • 48
  • 93
1
vote
0 answers

NoClassDefFound error for com/aspose/pdf/BaseParagraph with aspose pdf 23.1 jdk17 jar in Eclipse

I am trying to work with aspose PDF jar and I am not able to get past the NoClassDefFound error for aspose pdf jar. I am using aspose imaging as well as aspose words jar. Both these do not have these, but only aspose PDF does. Compilation is…
1
vote
0 answers

aspose pdf v 21.8 only work till .net 5, After upgrade to .net 6, I don't want to upgrade aspose pdf version

License license = new License(); license.SetLicense("MyLicence"); //get exception system.Exception How to resolve this issue?
1
vote
0 answers

Cairo Arabic font issue in Aspose.pdf

I am using Aspose.pdf for vb.net to convert my data to .pdf file. File contains Arabic Characters and is using Cairo font. The generated pdf file not display any Arabic words! How can I solve this issue?
1
vote
1 answer

vb.NET find words in PDF using Regular expressions

I am trying to find certain words in a pdf file using Aspose.pdf and regular expressions. The code is running without errors but never return TRUE. Public Shared Function FindInPDF(sourcePdf As String, searchPhrase As String) As Boolean …
Marco
  • 85
  • 1
  • 14
1
vote
1 answer

Replacing Text in a PDF with Aspose PDF Cloud using Python

I've been trying to replace text from a PDF file using Aspose PDF Cloud !pip install asposepdfcloud import os import asposepdfcloud from asposepdfcloud.apis.pdf_api import PdfApi pdf_api_client = asposepdfcloud.api_client.ApiClient( …
The Singularity
  • 2,428
  • 3
  • 19
  • 48
1
vote
2 answers

cad image is not loading large files

I am trying to load a .dwg file to convert from cad to pdf using below code: using (var image = Aspose.CAD.Image.Load("fileName.dwg")) { // process the drawing } But .dwg file is not being load by above code. It takes so much time for loading…
Piyush
  • 21
  • 1
  • 9
1
vote
1 answer

Why are Aspose.PDF assmeblies loaded multiple times into the appDomain?

Loading the Aspose.PDF.dll within the AppDomian.AssemblyResolve event causes "ghost" Assemblies as soon as some components of said dll are called inside another dll. The problem here is that the Registration of the Aspose.PDF.dll does not work…
Keyto
  • 61
  • 1
  • 6
1
vote
1 answer

How to insert page break in Aspose.PDF XSLT

I am writing XSLT to be used with XML in Aspose.PDF to generate the PDF, how do I insert the page break in the Aspose.PDF XSLT? I have tried #$NP but it doesn't seem to be working, or my syntax is not correct.
Kugarek
  • 59
  • 9
1
vote
0 answers

aspose.pdf for net printer status always null

Here is my code: public string PrintPdfAspose(string printerName) { // For complete examples and data files, please go to https://github.com/aspose-pdf/Aspose.Pdf-for-.NET // The path to the documents directory. …
1
vote
1 answer

c# + Find the pdf file property "Can be opened by"

I am opening pdf files using Aspose library and I am trying to read the property displayed in the “Can be opened by” when using Adobe Acrobat Reader. Can someone help me and let me know which property has that information displayed under the “Can…
SergioKastro
  • 875
  • 4
  • 15
  • 22
1
vote
0 answers

Aspose - PDF to Image (DotNetCore 2.1) - ERROR:region.c:1155:GdipCombineRegionPath: assertion failed: (region->bitmap)

I get the following error when trying to convert a PDF page to an image. ERROR:region.c:1155:GdipCombineRegionPath: assertion failed: (region->bitmap) Project Setup: Aspose.Pdf Version: 18.6.0 Framework: .NET Core 2.1 Type: Console…
Jacques
  • 747
  • 1
  • 8
  • 19
1
vote
0 answers

AWS Lambda function written with .Net Core 2.0 cannot load libdl

I am developing c# lambda functions using Visual Studio 2017, the AWS Toolkit for VS2017 and the AWS Lambda Project .Net Core 2.0 template. I have successfully developed and deployed a few functions. I developed a function that uses Aspose.Net…
tomc
  • 83
  • 1
  • 1
  • 6
1
vote
1 answer

How to retrieve a field value from a form using Aspose PDF in Java?

So I'm using this code to get field names and their values from a PDF file. Document doc = new Document("path\\to\\file\\Sample.pdf"); Field[] fields = doc.getForm().getFields(); for (Field f : fields) { System.out.println(f.getFullName() + " :…
intruder
  • 417
  • 1
  • 3
  • 18
1
vote
1 answer

Wrap text using AsposePDF in Java

I'm trying to append text on an existing PDF. There is a huge text box(may be a paragraph box?) and when I try to add multiple lines of text, it's flowing out of the box. I'm doing this: TextFragment txtFrag = new TextFragment(str); txtFrag…
intruder
  • 417
  • 1
  • 3
  • 18
1
2
3
11 12