Problem with text to pdf conversion - missing fonts
Text extraction from specified placed from pdf into fields of sql server table
The report has general comments ( written in blue) and
observations ( negative comments written in Red with a prefix "Inspector
Observations:" Only these observations ( highlighted in red) are to be
recorded along with the response.
Wherever there is an observation : - On the Right side the answer would be 'N' (otherwise it is 'Y') - the term "" Inspector Observations" will be
written in addition to the Red colour.
Embedded file compression
Aspose Total : Aspose PDF - sync up the javadoc and the library
AsposePDF 8.5 not printing the correct size.
Dear Aspose,
I am having difficulties printing a PDF in its true size. I am working on 2008 server, with aspose 8.5. See the attachments for PDF and my code.
No matter what i try (margins to 0, printasimage, autoscale on/off, other printer...), PDF's are always printed about 50-75% smaller than when printed with a pdfreader.
Could you please advise me?
Regards,
Nathan Moerman
PDF to PDF/A format
Hi Please let me know whether there is any update on PDF to PDF/A format convertion.
Thanks
Attached document does not raise "Invalid Password" when Document object is constructed
How shoud I extract table Data from PDF files using Aspose PDF
aspose.pdf or com.aspose.pdf
I see in the documentation "aspose.pdf(legacy)". Is aspose.pdf a legacy library and we are not supposed to use it ? Is it replaced by "com.aspose.pdf" ?
I see lot of classes may be refactored in com.aspose.pdf with the same behaviour .Are we supposed to use "com.aspose.pdf" ? Can you please detail what are these two groups and when to use which ?
Praveen
Problems with the page size
Hi,
If I want
to create a final PDF file from multiple PDF files, the page dimensions are set
incorrectly. Page 1 is correct, but unfortunately the following page sizes do
not change. Please make sure that the following pages can be of a different
size. Or there is another possibility that I've forgotten? I’ve attached the sample files to this post.
Minimum row height that can be set for a row in a table
Can you please let us know what is the minimum row height that can be set for a row in a table ?
What does this minimum value depend on ?
When I created a new pdf with a table and when I set a row height below 20 ,there is no change when the table is rendered on the pdf document. (This was done with Aspose.pdf 4.2). Is there any restriction on the minimum row height ?
Praveen
Default header and footer for pages in com.aspose.pdf
Can you please let us know how to set default header and footer for all the pages of the document using com.aspose.pdf api
Regards
Praveen
Getting DataMatrix Barcode from image results in "java.lang.NoClassDefFoundError: com/sun/servicetag/UnauthorizedAccessException"
it seems that detecting DataMatrix barcode from an image results in an exception:
Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/servicetag/UnauthorizedAccessException
at com.aspose.internal.barcode.D.a.a(Unknown Source)
at com.aspose.internal.barcode.D.a.a(Unknown Source)
at com.aspose.internal.barcode.D.a.a(Unknown Source)
at com.aspose.internal.barcode.D.d.a(Unknown Source)
at com.aspose.internal.barcode.D.d.a(Unknown Source)
at com.aspose.internal.barcode.D.d.a(Unknown Source)
at com.aspose.internal.barcode.D.d.a(Unknown Source)
at com.aspose.internal.barcode.W.L.c(Unknown Source)
at com.aspose.internal.barcode.W.L.a(Unknown Source)
at com.aspose.internal.barcode.W.ac.a(Unknown Source)
at com.aspose.barcoderecognition.c.D(Unknown Source)
at com.aspose.barcoderecognition.c.j(Unknown Source)
at com.aspose.barcoderecognition.BarCodeReader.read(Unknown Source)
Here is my code for reproducing the problem. What is to do?
- Update static member IMAGE_OK, IMAGE_FAIL and LICFILEPATH in TestAsposeBarcode.java
- Start TestAsposeBarcode.java
- Barcode in IMAGE_OK will be detected
- Barcode in IMAGE_FAIL will fail with exception
Thanks a lot
Best regards
Matthias
postscript to pdf conversion
Is there an update on issue PDFNEWNET-20110. The last update I saw was 2010. I need to convert .ps files to pdf.
Thanks!
System.IO.IOException: Read pdf error:Trailer object is null.: v4.6.0.0
Create PDF viewer using Aspose PDF
problem converting pcl files to pdf
I am trying to convert pcl files into a searchable pdf.
The app running on winXP and using HP PCL5 print driver produces an ascii encoded pcl. When I convert it using aspose it works well.
The app running on win7 and using HP PCL5 print driver produces UTF8 encoded pcl and aspose errors out on the conversion with many errors errors like:
Font: MS PCLXLFont 002 is not installed.
Substituting font: BC C128 HD wide
It creates a pdf file but it is empty.
File versions are:
aspose.pdf.dll file version 7.6.0.0
aspose.pdf.kit.dll file version 5.5.0.0
I have attached a zip file with examples. Files generated on xp have "xp" in the file name and same with win7.
Thank you!
How do i convert an acsm to pdf?...
......
Error:java.lang.NoClassDefFoundError: com.aspose.pdf.Document
converting hebrew website url to PDF
WebClient client =newWebClient();
Console.WriteLine("loading
url");
Stream
stream =
client.OpenRead(@"https://businessinfo.leumi-card.co.il/NotRegistered/Login/BusinessLogin.aspx");
StreamReader sr =newStreamReader(stream);
string str= sr.ReadToEnd();
Aspose.Pdf.Generator.Pdf pdf =new Aspose.Pdf.Generator.Pdf();
Aspose.Pdf.Generator.Section section = pdf.Sections.Add();
//pdf.IsRightToLeft = true;
//pdf.IsRtlInSegmentMode = true;
Aspose.Pdf.Generator.Text text =new Aspose.Pdf.Generator.Text(section, str);
text.IsHtmlTagSupported=true;
text.TextInfo.IsUnicode =true;
text.TextInfo.FontName ="Arial Unicode MS";
section.Paragraphs.Add(text);
pdf.HtmlInfo.ImgUrl =@"https://businessinfo.leumi-card.co.il";
Console.WriteLine("saving pdf");
pdf.Save(@"c:\guy.pdf");