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
0
votes
0 answers

Hyperlink of the protected pdf created from aspose are disabled in firefox

I am creating a password protected pdf which has hyperlinks. The hyperlinks are disabled in firefox browser whereas it works in other browsers, Adobe pdf reader. Why the hyperlinks are disabled in firefox for password protected pdf which is created…
user3510028
  • 583
  • 2
  • 4
  • 14
0
votes
0 answers

Maori Macrons aren't recognized when converting the letter to PDF using aspose word

I'm using below code to convert html to pdf using aspose word plugin but the Maori macrons aren't recognized and causing issue. MemoryStream stream = new MemoryStream(data); // load HTML file …
saadsaf
  • 1,421
  • 1
  • 17
  • 28
0
votes
1 answer

ASPOSE.PDF very slow on document.save()

I have an issue with ASPOSE.PDF when converting pdf to doc/docx. Document pdf2wordDocument = new Document(); While initializing the Document object as soon as my project runs helps ( it reduces the process time with 15-25sec ) the conversion is…
i.svirchev
  • 69
  • 6
0
votes
1 answer

Aspose WORD styling for JAVA

Current situation: I have multiple word documents with hardcoded styling(e.g. font size, heading color etc.). Using Aspose.WORD for java which generates PDFs. What I want to achieve: I would like to use one set of documents for multiple tenants but…
Smolda
  • 882
  • 5
  • 13
  • 34
0
votes
1 answer

Can't print jpg with Aspose.Pdf

I want to load in a JPEG file and print it with Aspose.Pdf in C# (.net Framework 4.8). The code I currently have is: public void PrintImage(string fileToPrint, string printerName, string jobName) { System.Drawing.Image srcImage =…
Tijl .Reynhout
  • 901
  • 2
  • 9
  • 24
0
votes
1 answer

Aspose XYZExplicitDestination.CreateDestination Bookmark doesn’t work for first one

I added a few bookmark to a pdf and it does work if I add with GoToAction but it doesn’t when I use XYZExplicitDestination (I want to use this to avoid zoom changes). So this piece it works for all pages: string dataDir = "C:\\Whatever"; //…
César
  • 143
  • 2
  • 14
0
votes
0 answers

table td cell exceeded and over to next line on pdf, excel put this on new row cell while converting pdf to excel using aspose.pdf

While converting pdf file to excel using aspose.pdf, if content of a td cell exceeded and moves into new line then on excel it goes to new row cell rather then to keep it on same cell, this should be on same cell. Here's example in picture: PDF…
Hamza
  • 33
  • 6
0
votes
0 answers

Find shape in PDF using Aspose.PDF

Using C#, I’m analyzing PDF documents in order to check if any texts, images or “objects” are not positioned within a specified margin. Using word, I create a document including a shape (a basic arrow), images and texts. I can easily find images and…
Michael
  • 1
  • 1
0
votes
1 answer

Add table at the bottom of the page (Aspose)

I use Aspose.PDF to add table in my page. But I need to add a table to the bottom of the page and horizontal center. I use table.ColumnAdjustment = ColumnAdjustment.AutoFitToWindow; to add table to the horizontal center, but I cannot get the height…
Unnamed
  • 15
  • 8
0
votes
0 answers

Aspose.PDF for .NET multiple signatures - all signatures are invalid except the last one

I sign a PDF file with multiple signatures using Aspose.PDF for .NET.When I open the file by Adobe Reader, all signatures show: "The Document has been altered or corrupted since the Signature was appiled" except the last one.How can I…
giman
  • 1
  • 1
0
votes
0 answers

Sign a PDF with Aspose.Pdf using Belgian Identity Card leads to an SecurityException

When I try to sign a pdf using Aspose.PDF .net (net core 3.1 version 20.4) using a Belgian ID card I get an exception : error 2148532330 Access was denied because of a security violation. On the id card there are 2 certificates. The first one is an…
Whiletrue
  • 551
  • 1
  • 7
  • 18
0
votes
1 answer

In Aspose.Pdf, why does giving a Text object a border actually give it two borders? How do I get rid of the inner border?

Here is my style: Dim sectionHeaderStyle As TextInfo = New TextInfo() sectionHeaderStyle.FontName = "Arial" sectionHeaderStyle.FontSize = 16 sectionHeaderStyle.Alignment = AlignmentType.Left sectionHeaderStyle.IsTrueTypeFontBold =…
ekolis
  • 6,270
  • 12
  • 50
  • 101
0
votes
1 answer

Aspose.Pdf can't find its license file

I have this code in a PDF generation method: Dim license As license = New license License.SetLicense(Path.Combine(Request.PhysicalApplicationPath, "bin", "Aspose.Pdf.lic")) I also tried simply: Dim license As license = New…
ekolis
  • 6,270
  • 12
  • 50
  • 101
0
votes
0 answers

i am unable to create PDF file by URL using ASPOSE.PDF in C#, I am getting the following problem

I want to create PDF file by URL using ASPOSE.PDF and try the following code: string dataDir =@"C:\Users\UbaidUllah\Documents\Visual Studio 2015\Projects\aspose\Data\AsposePDF\DocumentConversion\"; WebRequest request =…
Ubaid
  • 77
  • 10
0
votes
0 answers

Aspose.Word wrong hyphenation when converting to PDF

In Microsoft Word, when you have hyphenation, the target word is not allowed to be sent to the new page. Your entire line goes on the new page. When I convert such docx file to PDF using Aspose.Words, the result PDF does not follow this rule, hence…
antanta
  • 618
  • 8
  • 16