#render XML stream to PDF
Explore tagged Tumblr posts
Text
PDF/A_2U Standard Support, PDF Size Optimization & Rendering XML Stream to PDF using .NET
What's New in this Release?
Aspose team is pleased to announce the release of Aspose.Pdf for .NET 16.12.0. A new feature, the support of PDF/A_2U standard along with number of enhancements and improvements are included in this release. Some of the enhancements are improved PDF Optimization and support of XML stream conversion to PDF. It also contains number of fixes of bugs reported in previous versions by Aspose valued customers, that makes it more stable release as compared to previous releases. Some of them are PDF to PPTX conversion issues, PDF to PDFA standard conversion issues along with many other bug fixes. Aspose team has introduced new PDFA standard, PDF/A_2U in this release. It has included a new value PDF_A_2U in PdfFormt enum. This release has also improved the PDF optimization feature with introduction of some new properties in OptimizationOption class. Mainly resizing of the embedded images reduces the PDF file size, ResizeImages and MaxResolution properties for the purpose along with RemovePrivateInfo. Some of customers have requirement to render XML stream to PDF instead file. So Aspose team has introduced a new constructor of BindXml() that support Stream parameter. Recently, Aspose team has introduced a new XML schema of Aspose.Pdf(new generator). XSD includes in MSI installer. It has introduced HTML text support in new XML schema. The list of important new and improved features are given below
Support PDF/A_2U format New
PDF optimization size issue
File Optimization for web size difference between Adobe and Aspose.Pdf
PDFA Validation error list
XML to PDF: BindXml constructors with stream
XML to PDF: Hyperlink text rendering issue
Exception when setting XmpPdfAExtensionValueType to PDF file
OutOfMemory exception when using OptimizeResources(..) method
PDF to PDFA conversion rotates images, but working fine in 11.2.0
PDF to PDF/A - Images get distorted
Text Replacement regression issue in 16.10.0
When PDF is converted to HTML, the resulting HTML file has long scrollbars in Microsoft Edge
When PDF document is converted to XPS, the second page shows "This page cannot be displayed" message
Failed to load Tex file from stream
When PDF is saved as DOCX, System hangs and CPU goes high
PDF to PDF/A - resultant file size gets 17 times of the original PDF size
PDF to TIFF - Blank images are not being skipped
PDF to PDF/A - Resultant file is large size
PDF to PDF/A - Resultant file contents get corrupted
PDF to PDF/A - Formatting issues in resultant file
PDF to HTML: heading text characters render incorrectly
Non-Searchable PDF is converted to incorrect Searchable PDF
PDF to PDFA conversion results invalid output
API throws NullReferenceException upon loading a PDF document
PDF file is not being optimized
PDF to PPTX: Space between words increased
PDF to PPTX: text alignment issue
PDF to DOCX: text alignment issue in table row
PDF to DOCX: bullets and associated text alignment issue
PDF to PPTX - Line spacing is lost and the data is not rendering correctly
PDF to DOCX: Paragraph indent values are not retained
PPDF to PDF/A - Highlight box hides the image in PDF
Editing PDF document overlaps text characters Bug
In evaluation mode only, dispose method throws IndexOutOfRangeException
API throws ArgumentException while resizing PDF document without setting license
Text replace changes text position
PDF to PDF/A - Resultant file is not compliant
When PDF converted to PDF_A_1B, the document has glyphs missing in embedded fonts error
PDF with hieroglyphs is converted to the JPEG with corrupted symbols
PDF to PDF/A - Resultant file gets corrupted (error on openning and missing content)
The flattened file from XFA form cannot be opened in Chrome or Firefox
Other most recent bug fixes are also included in this release.
Newly added documentation pages and articles
Some new tips and articles have now been added into Aspose.Pdf for .NET documentation that may guide users riefly how to use Aspose.Pdf for performing different tasks like the followings.
Optimize PDF Document
PDF File Metadata
Overview: Aspose.Pdf for .NET
Aspose.Pdf is a .Net Pdf component for the creation and manipulation of Pdf documents without using Adobe Acrobat. Create PDF by API, XML templates & XSL-FO files. It supports form field creation, PDF compression options, table creation & manipulation, graph objects, extensive hyperlink functionality, extended security controls, custom font handling, add or remove bookmarks; TOC; attachments & annotations; import or export PDF form data and many more. Also convert HTML, XSL-FO and MS WORD to PDF.
More about Aspose.Pdf for .NET
Homepage of Aspose.Pdf for .NET C#
Download Aspose.Pdf for .NET
#PDF/A_2U standard Support#PDF size optimization improved#XML stream conversion Support#render XML stream to PDF#.NET PDF Library#XML stream conversion
0 notes
Text
300+ TOP Web2py Framework Interview Questions and Answers
Web2py Framework Interview Questions for freshers experienced :-
1. What is Web2py Framework? Web2py is an open source web application framework. It is written in the Python programming language. It allows web developers to design and develop dynamic web application. 2. How can we Install Web2py in different operating system? We can install Web2fy in different operating system by using following code: Operation System Command Unix and Linux python web2py.py OS X open web2py.app Windows web2py.exe 3. What are the protocols supports in Web2py? Web2py supports various protocols like: XML, JSON, RSS, CSV, XMLRPC, JSONRPC, AMFRPC, and SOAP. 4. How to write a hello world program in Web2py? We can write a hello world program by using following code: def hello(): return 'Hello World' 5. Who is the author of Web2py? Massimo Di Pierro developed the author of Web2py. 6. What is the stable version of Web2py? Web2py stable version is 2.14.6 which is released on May 10, 2016. 7. How can we represent MVC (Model-View-Controller) in Web2py? In Web2fy, we can represent MVC (Model-View-Controller) as follows- Model: It includes the logic of application data. It is used to database connections by configuring storage.sqlite files. "db.py" is the model: db = DAL('sqlite://storage.sqlite') db.define_table(employee, Field('name'), Field('phone')) View: View displays the output after the associated controller function is executed. It renders the variables in the dictionary, which is in the form of HTML. It uses {{ and }} delimiters to include the file. {{extend 'layout.html'}}
Manage My Employees
{{=grid}
Controller: It helps to access the functions and modules. It acts as intimidator between Model and View.
def employees():
grid = SQLFORM.grid(db.contact, user_signature = False)
return locals(
8. What are the application components of web2py ?
Web2fy consists of the following components.
Models: It represents data and database tables.
Views: It helps rendering the display of the data.
Controllers: It describes the application logic and workflow.
Languages: describe how to translate strings in the application into various supported languages.
Static files: Do not require processing (e.g. images, CSS style sheets etc).
ABOUT and README: It provide details of the project.
Errors: It stores error reports generated by the application.
Sessions: It stores information related to each particular user.
Databases: It store SQLite databases and additional table information.
Cache: It store cached application items.
Modules: Modules are other optional Python modules.
Private: It includes files are accessed by the controllers but not directly by the developer.
Uploads: Files are accessed by the models but not directly by the developer.
9. What are the databases and their drivers support by Web2py?
Web2py supports following databases and their drivers.
Databases Drivers
SQLite sqlite3 or pysqlite2 or zxJDBC (on Jython)
PostgreSQL psycopg2 or pg8000 or zxJDBC (on Jython)
MySQL pymysql or MySQLdb
Oracle �� cx_Oracle
MSSQL pyodbc or pypyodbc
FireBird kinterbasdb or fdb or pyodbc
DB2 pyodbc
Informix informixdb
Ingres ingresdbi
Cubrid cubriddb
10. What are the crud Methods of Web2py?
Web2fy crud methods are :
Methods description
crud.tables() It returns a list of tables which is defined in the database.
crud.create(db.tablename) It returns a create form for the table tablename.
crud.read(db.tablename, id) It returns a read-only form for tablename and record id.
crud.delete(db.tablename, id) It is used to deletes the record
crud.select(db.tablename, query) It returns a list of records selected from the table
crud.search(db.tablename) Returns a tuple (form, records) where form is a search form
Web2py Framework Interview Questions
11. Which class is used to send email in Web2py Framework?
In Web2fy Framework, gluon.tools.Mail class is used to send email. The mailer can be defined with this class.
from gluon.tools import Mail
mail = Mail()
mail.settings.server = 'smtp.example.com:25'
mail.settings.sender = '[email protected]'
mail.settings.login = 'username:password'
12. What is the default port of Web2py?
Web2py default port is 8000.
13. What is Postbacks?
A better pattern in web2py is to submit forms to the same action, which generates them. This mechanism is called as “postback” which is the main feature of web2py. In short, self-submission is achieved in postback.
14. How can we create a model?
We can create a model by using following code :
db.define_table('company', Field('name', notnull = True, unique = True), format = '%(name)s')
db.define_table(
'contact',
Field('name', notnull = True),
Field('company', 'reference company'),
Field('picture', 'upload'),
Field('email', requires = IS_EMAIL()),
Field('phone_number', requires = IS_MATCH('+')),
Field('address'),
format = '%(name)s'
)
db.define_table(
'log',
Field('body', 'text', notnull = True),
Field('posted_on', 'datetime'),
Field('contact', 'reference contact')
)
15. Describe the workflow of Web2py?
Web2py workflow are given below :
The web server manages HTTP requests simultaneously in its own thread.
The HTTP request header is passed to the dispatcher.
The dispatcher manages the application requests and map the PATH_INFO in the URL of the function call. Every function call is represented in the URL.
All the requests for files included in the static folder are managed directly, and large file are streamed to the client.
Requests for anything but a static file are mapped into an action.
If the request header contains a session cookie for the app, the session object is retrieved; or else, a session id is created.
If the action returns a value as string, this is returned to the client.
If the action returns an iterable, it is used to loop and stream the data to the client.
16. What are the features of Web2py?
Web2py features are:
It is easy to learn.
It is portable.
It has standard library that supports many task.
17. What is the I/O functions in Web2py?
There are various I/O functions in Web2py that are given below.
open(): It helps to open a file or document
write(): It helps to write a string in file or document
read(): It helps to read the content in existing file
close(): This method closes the file object.
18. What is CRON in Web2py?
In Web2py, CRON gives the ability to run the task within the specified interval of the time.
19. What is RBAC in Web2py?
In Web2py, RBAC stands for Role Based Access Control. It is an approach to restricting system access to authorized used.
20. Which method is used to send an email in Web2py?
In Web2py, mail.send() method is used to send an email.
21. What are the protocols used in Web2py?
There are various protocols used in Web2py:
XML
JSON
RSS
CVC
SOAP etc.
22. Does Web2py support multiple database?
Yes, Web2py supports multiple database.
23. What is the use of DAL object?
DAL object is used to represents a database connection.
Example: db = DAL('sqlite://storage.sqlite')
24. How can we disable all the table in Web2py?
In Web2py, Migration is used to disable all the table.
Example:
db = DAL(..., migrate_enabled=False)
25. Is it possible to skip the GUI and start Web2py directory?
Yes, by using command line.
Example: python web2py.py -a 'your password' -i 127.0.0.1 -p 8000
26. What is the process to send SMS?
The following code is used to send SMS:
from gluon.contrib.sms_utils
import SMSCODES, sms_email
email = sms_email('1 (111) 111-1111','T-Mobile USA (abc)')
mail.send(to = email, subject = 'test', message = 'test')
27. In which language Web2py was written?
Web2py was written in Python language.
28. What is Nginx?
Nigix is a free, open-source web server. It is used to configure file.
29. How can we delete the records?
We can delete the records by using following code:
crud.delete(db.tablename, id)
30. Which tag is used to escape python code embedded in HTML?
Web2py uses {{…}} tag to escape python code embedded in HTML. Web2py Questions and Answers Pdf Download Read the full article
0 notes
Text
Fifa 14 keygen generator password
Fifa 14 keygen generator password Sitemap Horosoft crack keygen Flow code 6 keygen Nch prism video converter keygen Free photoshop cs2 keygen Liquid xml studio keygen Incomedia website x5 v10 keygen Itactil lider 11 keygen Left 4 dead 2 activation keygen Fs panel studio keygen Microsoft office ultimate 2007 keygen crack Keygen microsoft office 2010.rar Lingo 13.0 keygen Melodyne keygen mac 3.2 Microsoft visual studio 2012 ultimate crack keygen Ms office 2010 keygen by paradox download Garmin mobile pc keygen 1.5 download Keygen for magix music maker mx download version Indesign cs5 mac keygen Keygen do autocad 2010 gratis Keygen patch idm 6.05 Free download memory card recovery with keygen Midi converter studio 6.3 keygen Mathcad 2001 professional keygen Gta iv serial code keygen Gta 4 steam keygen download Light image resizer keygen Ms office 2007 ultimate activation keygen Keygen coreldraw x6 64 bit Keygen for photoshop cs6 master collection Magix photostory on dvd 2013 deluxe keygen Ojosoft audio converter crack serial keygen Iconpackager 5.0 keygen Geneious pro 5.5 keygen Gta 5 keygen generator pc Keygen lightroom 5.3 windows Flash menu labs pro rus v2 keygen Keygen microsoft office 2013 mac Half life 2 orange box keygen Keygen corel x4 bagas31 Free hotspot shield keygen Limewire pro keygen Keygen bandicam 1.9.3 Keygen amplitube fender 1.1 Fifa 14 keygen origin free Fm 13 beta keygen Game booster v2.41 keygen Keygen crack garmin jmkg 1.5 final download Keygen diskdigger 1.5.7 Free audio editor 7.2.1 keygen Gta v download pc keygen Keygen apowersoft mkv converter studio.2.4.8.rar Free serial office 2011 mac keygen Movie manager pro keygen New york studios vol.3 sdx keygen Gvox encore 5.0.3 keygen Folder marker pro 3.0 keygen Font creator keygen 7.5 Free keygen bebuzz v6.x Mathematica 6 crack keygen Keygen vegas pro 10 download Imtoo blu-ray to dvd converter keygen Mediamonkey 3.2.5 keygen Keygen pdanet 3.0 Keygen for mackeeper 1.9 New blue fx activation keygen Invoice expert xe keygen Keygen music pack Flash decompiler trillix 5.2 keygen Keygen tuneup utilities 2013 terbaru Google translate client keygen Kaspersky antivirus 2014 activation keygen How to install avid media composer 5 keygen Internet download manager 6.12 keygen Max payne 3 keygen skidrow Keygen code activation tomtom Nero startsmart 8 keygen Magix music maker 12 silver keygen Movie edit pro 17 hd keygen Keygen trackmania nations forever Getdataback v4.33 keygen Keygen neodownloader 2.9.4 Microsoft office professional 2007 crack keygen Iblacklist keygen 6.1 repo Keygen para command and conquer generals zero hour Nihuo web log analyzer keygen Keygen coreldraw x5 indowebster Harping midi keygen Keygen sims 3 showtime Keygen office 2007 download Keygen serial number generator download Flying bird ringtone maker keygen Nugen audio isl mac keygen Keygen corel draw x5 activation code generator Free download autocad 2013 keygen for mac Obd auto doctor keygen Free download photoshop cs2 serial number keygen Idm crack keygen full K7 total security 2013 keygen free download Live for speed 0.6k keygen Office 2010 telefonische aktivierung keygen Flexisign 10 keygen Genarts sapphire 6.13 keygen Omnisphere 1.5 keygen not working Octane render 1.2 keygen Guitar tab pro 6 keygen Marvel heroes ultimate pack keygen Keygen for tm united forever Hacks cracks keygens Free download keygen wifi id Forex tester 2 crack keygen Lfs s2 0.6e keygen download Internet download manager 6.17 build 6 keygen Keygen autocad inventor 2013 M tron pro serial number keygen Jaikoz 6.0.4 keygen Magix fotostory 2014 deluxe keygen Novapdf 7.7 keygen Full video converter 10.0.3 keygen Fl studio 11 demo keygen Iwork 09 keygen serial Keygen adobe creative suite cs6 master collection-x-force Folder lock lite keygen Keygen hidownload platinum Infix pdf editor 4.30 keygen Free download idm keygen full version Keygen smadav 2014 9.7 Global mapper 13 keygen download Keygen para parallels desktop 8 Kasparov chess game keygen Keygen trackmania united forever online Iclone 5 keygen download Nik software silver efex pro 2 keygen Keygen skygrabber 3.1 Keygen advanced systemcare 5.4.0 Getdataback simple 1.02 keygen Mathmagic pro 8 keygen Getdata graph digitizer keygen Ms office 2007 keygen guru Office 2003 confirmation id keygen Guitar rig 5 keygen mac Keygen docklight 2.0 Microsoft office 2013 product keygen generator free download Keygen statgraphics centurion xv Maple 17 purchase code keygen Jaksta streaming media recorder keygen Kaspersky keygen 2013 Game cracks keygens Free download wifi keygen for android Free download keygen adobe photoshop cs2 v9.0 Illustrator cs6 mac keygen Keygens and hacks Keygen maxidisk 2012 Leawo blu-ray creator 5.1.0.0 keygen Idm 6.25 keygen free download Idm 6.18 build 11 crack keygen Norton 2015 keygen Keygen imagenomic portraiture 2.3 mac Gta 4 activation code keygen Magix photo manager 10 keygen Keygen after effects cs5 5 Nvivo 10 serial keygen Maya 2011 osx keygen Keygen para need4 video converter Handyprint license keygen Indesign cs5 keygen serial Keygen edius 6 Governor of poker 2 standard edition keygen Natata ebook compiler gold full 3.0.3 keygen Istat 5.11 keygen Interspire email marketer keygen Office mac 2011 keygen dmg Logiware go1984 keygen Free download autodesk autocad 2010 keygen Keygen full v1.4 build autocom Microsoft office pro plus 2013 rtm keygen Norton 360 v6 product keygen Komplete 8 serial number keygen Free autocad 2007 activation code keygen Ms visual studio 2010 professional keygen Foxit pdf editor 2.0 keygen Hard disk sentinel pro 4.50 keygen Microsoft office 2010 starter crack keygen Magic camera 7.1.0 crack keygen free Keygen de corel videostudio pro x7 Norton internet security subscription renewal code keygen Keygen easiestsoft video converter 3.2.0 Keygen generator for photoshop cs6 Keygen corel x6 serial Omnisphere v1.0 keygen mac Immunet plus keygen Keygen snagit 11.1.0 Kaspersky pure 3 keygen Headus uvlayout 2.06 keygen Nod32 keygen chomikuj Fruity loops 9 keygen free Internet cafe software with keygen Keygen sims 4 demo Jformdesigner 5.1 keygen
0 notes
Text
300+ TOP Apache TAPESTRY Interview Questions and Answers
Apache Tapestry Interview Questions for freshers experienced :-
1. What is Apache Tapestry? It is an open source web framework written in Java and can work under any application server. It is easily integrate with back ends like Hibernate and Spring etc. It is a component based web framework. 2. What are the benefits of Apache Tapestry? Benefits of Apache Tapestry are: Adaptive API Fast framework Build-in Inversion Control Highly scalable web applications Storage management of Persistent state 3. What are the features of Apache Tapestry? Features of Apache Tapestry are: Live class reloading Code less, deliver more Static structure and dynamic behavior Detailed and clear exception reporting Extensive use of POJOs (Plain Old Java Objects) 4. Who is the developer of Apache tapestry? Apache Tapestry is developed by “Howard Lewis Ship”. 5. What is the component annotations used in Apache Tapestry? Component annotations used in Apache Tapestry are: @Log @Path @import @Property @Parameter @Environmental 6. What is IoC annotation? IoC annotation: It is used to inject objects into IoC Container. Type of IoC annotation are: @Value @Inject 7. What is CleanupRender? CleanupRender: It is used to release the objects created during rendering process. It is the counterpart of the SetupRender. 8. What is Two-way Data Binding? In Two-way data binding, we can communicate and transfer data with the use of parameters, components and its corresponding page. 9. What is Validate expansion? Validate expansion: It is a specialized string that is used to specify the validation rule of an object. 10. What is Form Component? It is used to create a form in the tapestry page for user input. A form can contain text fields, checkbox fields, date fields, submit button, select options and more.
Apache TAPESTRY Interview Questions 11. Does Apache Tapestry use JSP Tag libraries? No, It does not use JSP Tag library. 12. What is TextField Component? TextField Component: It is used to edit a single line of text. 13. What are the significant parameters used in Form Validation? Significant parameters used in Form Validation are: Min Max Email MaxDate MaxLength MinLength 14. What are the ways provided by Apache Tapestry to persist the data? There are two ways provided by Apache Tapestry to persist the data are: Session Storage Persistence page data 15. What is SSO? SSO stands for Session Store Object. It is a specialized store that is used to store complex / special object. Data types can also be stored using SSO. 16. Why Do We Need @script In Apache Tapestry? The script framework is an effective means to bundle scripts in components. It provides scripts with the advantages of components. It can now be reused like a component and not have to worry about renaming field names or the wiring between the fields and the scripts. You just declare the component and you are good to go. It certainly is another layer of abstraction that one will have to learn but once you have learned it, it is very powerful. And honestly there is not much to it. The script framework is mandated by the fact that form element/field names are automatically generated by the framework. And so you write your script in XML and use variables for these names and let the framework provide the correct names during runtime. Going further, you may also ask the framework to provide other objects that would help in creating your script. For example… This defines an input variable “select” of type “org.apache.tapestry.form.PropertySelection”. All such variables/symbols passed in to the script is stored in a symbol map. And now you can use the form select list name by using an ant style syntax like ${select.name}. The expression within “${}” is an OGNL expression and is evaluated with respect to the symbol map. You may also define your own symbols/variables using like… document.${select.form.name} ${formObj}.${select.name} These variables/symbols are stored in the symbol map also. So now if you want to set the value of the form select list all you do is say ${formObj}.${selectObj}.value = ‘whatever’; this would be equivalent to document.myForm.mySelect.value = ‘whatever’; where myForm is the form name and mySelect is the select list name. s are like method parameters and s are like instance variables. Typically you would pass values to the s via the Script component like... The actual scripts are defined in one of the two sections of the script specification, or , depending on when you want the script to execute. If you want the script to execute on load of the page, then you define it in the , if you want it to execute on any other event, define it in the section of the specification. For example… function onChangeList(listObj) { alert(listObj.value); } ${selectObj}.onchange = function(e) { onChangeList(${selectObj}); } As you can see in the rendered page all scripts are aggregated at the top of the page body, there are no more scripts all over the page. Even event handlers are attached to form objects in the initialization block. One more thing to remember, scripts being components, and components by nature being independent of its environment, will render the script in the page once for every ocurrance of the component. If you want the body of the script to be rendered only once no matter how many times the component is used, just wrap the body in a tag like… function onChangeList(listObj) { alert(listObj.value); } 17. What’s The Lifecycle Of A Form Submit? Events will trigger in the following order: initialize() pageBeginRender() formListenerMethod() pageBeginRender() The form “rewind” cycle is nothing more than a render cycle where the output is buffered and scrapped rather than written to the servlet output stream. The second pageBeginRender() is triggered during the actual page rendering. You can use requestCycle.isRewinding() to distinguish between these two render cycles. 18. Can I Use The Same Component Multiple Times In One Template? No – but you can copy the definition of a component pretty easily. 19. How Should Do Page Navigation In Apache Tapestry? Usage page properties: Page1.page Page2.page Welcome.Action.java public void submitListener(IRequestCycle cycle) { if (success) cycle.activate(getSpecification().getProperty("success")); if (error) cycle.activate(getSpecification().getProperty("error")); } So on success, it will be redirected to Home2 and on error it will be redirected to Error2 page. 20. Is Tapestry A Jsp Tag Library? Tapestry is not a JSP tag library; Tapestry builds on the servlet API, but doesn’t use JSPs in any way. It uses it own HTML template format and its own rendering engine. Starting with release 3.0, Tapestry includes a simple JSP tag library to allow JSP pages to create links to Tapestry pages. Apache TAPESTRY Questions and Answers Pdf Download Read the full article
0 notes
Text
Resource Optimization of PDF Documents & Enhanced Working with PDF Form Fields using Java
What's New in this Release?
Aspose team is pleased to announce the release of Aspose.PDF for Java 18.11. In this revision of the API, conversion engines have been further improved in order to convert PDF documents into other file formats. Several bugs which were reported in earlier version(s) of the API have also been rectified. Along with that, resource optimization of PDF documents has been improved in terms of performance. It was observed that execution time of OptimizeResources method was slow in earlier version(s) of the API which was due to slow image compression. In this release of the API, new image compression algorithms have been implemented which work faster and users can optimize PDF documents in an improved and faster way. The sample code snippet on blog announcement page can be used to optimize PDF resources using new implemented properties. Along with the features mentioned above, there are some useful improvement also included in this release of the API, such as implemented precise coordinate calculations for characters, Improvements have been made for working with Form Fields, Hyperlink Alignment issues have been rectified, Improved PDF Printing time taken by the API, Color corrections have been made during PDF to TIFF conversion, Table Extraction and Manipulation algorithms have further been enhanced, Functionality to support text and fonts has been added for PDF/UA format and many more. Some important improved features included in this release are given below
Long time to extract text
Improved PDF to PPTX conversion
Add taggedPdfTextBlockelement
Add text block named element
Improve OptimizeResources performance
HTML to PDF - ArgumentNullException is occurring
PDF to TIFF - ArgumentException is being generated
HTML to PDF - Formatting issues in resultant file
HTML to PDF: Table background-color style is not working
PDF to Execl: cells data merges to a single cell in output
PDF to TIFF: output image missing text
PDF to XLS - Error appears when viewing resultant file
When using Custom font, SuperScript is not being honored
Incorrect Character width and X coordinate information
PDF to EXCEL results in a corrupt file
Not all characters are resized in PDF field
Hyperlink Alignment issue
TextState properties are not being applied in HeaderFooter
PDF to PDF/A - NullReferenceException during PDF/A conversion
TIFF to PDF - OutOfMemoryException during conversion
Adding svg into table cell from disk API throws ArgumentException
Which TIFF versions Aspose.Pdf for .NET supports
PDF printing takes several minutes
Exception when trying to add SVG image stream to PDF
Black background is appearing while adding SVG into PDF
PDF to TIFF - Text of lighter color is missing in output image
SVG turned out to be black and white while adding into table
JPG to PDF - output document failed to open in Adobe Reader
PDF to PDF/A-1b - the output PDF does not pass compliance test
HtmlFragment moves content to next page
Cannot add local hyperlink to the text of table cell
Cannot extract table and its data using TableAbsorber
IsBlank property true when page is not blank
PDF to PPTX - System.InvalidOperationException Exception occurred
Preflight log contains fonts related problems
Highlight Annotation hides/redacts the text after merging annotations
Slow processing of document
Setting Cell.ColSpan to 4 leads to invalid render of graphs and text
NullReferenceException when validating or converting a PDF/A
The text extraction takes much time
PDFA output contains more than one XREF subsection
Document is not PDF/A compatible after conversion
Output document isn't PDFA_2A compliant
Implement functionality to support fonts and text for PDF/UA format
PDF to PPTX export - index out of bound error occurred
TIFF to PDF - Dark Colors are converted as black in output
Newly added documentation pages and articles
Some new tips and articles have now been added into Aspose.Pdf for Java documentation that may guide users briefly how to use Aspose.Pdf for performing different tasks like the followings.
Optimize PDF File Size
Optimize PDF Document for the Web
Overview: Aspose.Pdf for Java
Aspose.Pdf is a Java PDF component to create PDF documents without using Adobe Acrobat. It supports Floating box, PDF form field, PDF attachments, security, Foot note & end note, Multiple columns document, Table of Contents, List of Tables, Nested tables, Rich text format, images, hyperlinks, JavaScript, annotation, bookmarks, headers, footers and many more. Now you can create PDF by API, XML and XSL-FO files. It also enables you to converting HTML, XSL-FO and Excel files into PDF.
More about Aspose.Pdf for Java
Homepage of Aspose.Pdf for Java
Download Aspose.Pdf for Java
Read online documentation of Aspose.Pdf for Java
#pdf#PDF to TIFF conversion#Optimized PDF Resources#precise coordinate calculations for characters#Improved PDF Printing time#Table Pdf Extraction#Java PDF Programming API
0 notes
Text
Strict Open XML Format Support & Get Effects by Text-box Paragraphs inside .NET Apps
What's New in this Release?
Aspose team is happy to share the announcement of Aspose.Slides for .NET 18.10. This is primarily a maintenance release whereby Aspose team has resolved certain issues incurring in API. It has introduced Support for rendering shape Soft Edges (EffectFormat) effect and enhanced Turning off updates automatically option for Date time in PPT while converting to PDF. There are some important enhancements and bug fixes part of this release, such as Connector fails to draw in straight line, Shadows effects are lost in generated PDF and thumbnail, Ink pen drawing is missing in the PDF output, Exception on cloning Fonts, Soft Edges effect on image are missing in exported PDF, Y axis interval in the chart has been changed, When PPTX is converted to PDF, item is missing in pie chart, Export to SVG corrupts if made repeatedly, PPT not properly converted to PDF, Exception on converting PPTX to PDF, Background image color changes in exported PDF and many more. This list of new, improved and bug fixes in this release are given below
Support for rendering shape Soft Edges (EffectFormat) effect.
Turning off updates automatically option for Date time in PPT while converting to PDF.
Connector fails to draw in straight line.
Shadows effects are lost in generated PDF and thumbnail.
Ink pen drawing is missing in the PDF output.
Exception on cloning Fonts.
Soft Edges effect on image are missing in exported PDF.
The blue underline is missing after conversion to the image (PNG).
Y axis interval in the chart has been changed.
When converting PPTX to PDF, chart lines are different and overlapping the text..
When PPTX is converted to PDF, item is missing in pie chart..
Aspose.Slides fails to re-open ODP presentation, saved with Aspose.Slides.
Argument exception on generating PDF Notes.
Export to SVG corrupts if made repeatedly.
Grayscale image rendered colored in generated thumbnail.
ArgumentOutOfRangeException on loading PPTX.
The footer’s font has changed after loading and saving.
Some characters in vertical text are rotated to wrong layout in a PDF format.
PPTX/PPT not properly converted to PDF.
Uknown Field type returned for Field.
Exception on loading presentation.
PPTX not properly saved to PPTX.
Connector draws wrong.
PPT not properly converted to PDF.
Overlapping text portions in PDF with custom fonts.
Exception on loading the presentation.
Charts are missing in exported PDF.
Cloud shape is improperly rendered in generated thumbnail.
Exception on loading the presentation.
Background image color changes in exported PDF
Exception on converting PPTX to PDF.
Other most recent bug fixes are also included in this release
Newly added documentation pages and articles
Some new tips and articles have now been added into Aspose.Slides for Java documentation that may guide users briefly how to use Aspose.Slides for performing different tasks like the followings.
Converting Presentation to HTML
Converting ODP PPT to PPTX
Overview: Aspose.Slides for .NET
Aspose.Slides is a .NET component to read, write and modify a PowerPoint document without using MS PowerPoint. PowerPoint versions from 97-2007 and all three PowerPoint formats: PPT, POT, PPS are also supported. Now users can create, access, copy, clone, edit and delete slides in their presentations. Other features include saving PowerPoint slides into PDF, adding & modifying audio & video frames, using shapes like rectangles or ellipses and saving presentations in SVG format, streams or images.
More about Aspose.Slides for .NET
Homepage of Aspose.Slides for .NET
Downlaod of Aspose.Slides for .NET
Online documentation of Aspose.Slides for .NET
#Strict Open XML format support#serialization with Strict Open XML#get effects by text-box paragraphs#set Callout for Doughnut chart#PPTX to PDF Export#.NET PowerPoint API
0 notes
Text
Create Accessible PDF Documents & Enhanced PDF to TIFF XPS Conversion using Java/.NET
What's New in this Release?
Aspose team is pleased to announce the release of Aspose.PDF for Java 18.9. It has been released for .NET and Java platforms with new 18.9 version. In this version of the API, we have introduced exciting features to improve usability and performance of the API. Aspose.PDF provides functionality to create PDF documents which are compatible with PDF/UA Standard (also known as “Section 508” or “WCAG Standard”) and also to check compatibility with these standards. These standards describe requirements for document contents to make it more friendly and useful for people with disabilities and also for users with highly limited devices. When users make your PDF documents accessible or create Tagged PDFs, it means adding tags, bookmarks, alt text, and other information that makes the files readable and navigable to users who are visually or mobility impaired. Using Aspose.PDF, it is now achievable to create valid, accessible PDF documents. In order to create PDF Document with Tagged Text, Aspose.PDF offers TaggedPdfTextElement Class to serve the purpose. An article in the documentation section shows how to use API in order to create PDF documents with tagged text. In addition to adding tagged text inside PDF document, adding tagged image functionality has also been introduced in latest release. The PDF/UA compliance validation has been implemented in manners similar to PDF/A validation. You can now validate whether a PDF document is Section 508 or PDF/UA compliant or not. The example is provided in the API documentation section that shows how to validate a PDF document for PDF/UA compliance. Along with the new features mentioned above, there are some useful improvements and enhancements included in latest release, such as PDF to TIFF Conversion has been improved, Feature to flatten PDF Forms is further improved, Conversion feature related to PDF/A Standard is improved, Implemented Rectangle Property for HtmlFragment, Support of Stream for loading PCL document has been added, Text reading module has been improved to extract multi-column paragraphs and PDF to XPS Conversion is further improved. Some important improved features included in this release are given below
PDF/UA support and features porting from .NET Library
Support of PDF to XLSX
PDF/UA: Validate Optional Content
PDF/UA: Validate Embedded Files
PDF/UA: Validate Acroform Fields (Digital Signatures)
PDF/UA: Validate Non-Interactive Forms and XFA
PDF/UA: Validate Security
PDF/UA: Validate Navigation
PDF/UA: Validate Annotations
Identify paragraphs that runs over multiple columns while extracting text
Support Stream for loading PCL document
Implement an option to suppress any text adjustment after replace.
Implement Rectangle property for HtmlFragment object
PDF/UA. Make validation/convertation log more informative
PDF to XPS - the redaction and additional blank pages are being added
The conversion PDF to PDFA_1A hangs.
The method RedactExactArea throws an exception.
PDF file is not properly being converted to PDF/A_1a format
PDF replace text process shows an argument out of range error
An exception raises while flattening the document
PDF to TIFF creates empty file
PDF to TIFF - an empty TIFF is generated
PDF to TIFF - Problem generating Image file
PDF to TIFF: resultant image is garbled
PDF to PPTX - the highlighted color of text is not being removed
PDF to XPS - the redaction and additional blank pages are being added
HTML to PDF - incorrect page size
Text is shifted over while replacing the text
The conversion PDF to PDFA_1A hangs.
ncorrect rendering of PDF document to HTML
When TIFF image is inserted to PDF, then the picture is rotated.
PDF file is not properly being converted to PDF/A_1b format
PDF to XPS - the redaction and additional blank pages are being added
Newly added documentation pages and articles
Some new tips and articles have now been added into Aspose.Pdf for Java documentation that may guide users briefly how to use Aspose.Pdf for performing different tasks like the followings.
Create PDF Document with Tagged Image
Validate PDF/UA Compliance
Overview: Aspose.Pdf for Java
Aspose.Pdf is a Java PDF component to create PDF documents without using Adobe Acrobat. It supports Floating box, PDF form field, PDF attachments, security, Foot note & end note, Multiple columns document, Table of Contents, List of Tables, Nested tables, Rich text format, images, hyperlinks, JavaScript, annotation, bookmarks, headers, footers and many more. Now you can create PDF by API, XML and XSL-FO files. It also enables you to converting HTML, XSL-FO and Excel files into PDF.
More about Aspose.Pdf for Java
Homepage of Aspose.Pdf for Java
Download Aspose.Pdf for Java
Read online documentation of Aspose.Pdf for Java
#Create Accessible PDFs#create PDF Document with Tagged Text#Validate PDF/UA Compliance#PDF Document with Tagged Image#PDF to TIFF Conversion#Java PDF Programming API
0 notes
Text
Save Workbook to Strict Open XML Format & Rendering Comments from ODP using .NET
What's New in this Release?
Aspose team is happy to share the announcement of Aspose.Slides for .NET 18.8. This is primarily a maintenance release whereby Aspose team has added support for some new features as well. This release has introduced some important new features, such as Add support for Strict Open XML format, Rendering of Metafiles ignores fonts loaded with FontsLoader, Rendering comments from ODP format that have no author and support for “purl.oclc.org” namespace in Type attribute in “.rels” parts. There are some important enhancements and bug fixes also part of this release such Rendering presentation with large amount of data in charts consumes all available memory, Existing PPTX table cells changes formatting after assigning text, The embedded data stream is disposed, enhanced PPT to PDF export, Presentation saving in PPS format is fixed, Border around text appears after saving the PPT file, Setting and getting PlotArea X, Y values now working, Data Format label lost when saving pptx, enhnaced rendering of external fonts in SVG, Chart rendering in generated thumbnail is fixed, Chart changes after right click on edit data and many more. This list of new, improved and bug fixes in this release are given below
Add support for Strict Open XML format.
Rendering of Metafiles ignores fonts loaded with FontsLoader.
Rendering comments from ODP format that have no author.
Support for “purl.oclc.org” namespace in Type attribute in “.rels” parts.
Rendering presentation with large amount of data in charts consumes all available memory.
Existing PPTX table cells changes formatting after assigning text.
The embedded data stream is disposed.
PPT to PDF not properly converted.
When PPTX is converted to PDF, picture gets blurred.
An exception PptxReadException raises while loading the presentation.
Exception when cleaning/updating metadata of Strict Open XML Presentation (.pptx).
Presentation is not saved in PPS format.
Corrupt PDF is generated if Small Caps text is used in presentation.
Title text in All Caps is rendered as normal as exported PDF.
Border around text appears after saving the PPT file.
Axis Labels are not showing in the generated PDF file.
EffectTriggerType properties are not working as expected.
Chart failed to get edited in PowerPoint if series names are same.
PPT presentation can’t contains more than 8 placeholders on PPT saving.
Insufficient header length exception on presentation load.
Setting and getting PlotArea X, Y values not working.
Logo of embedded empty equation block rendered incorrectly.
PPTX not converted properly to PDF.
SVGOptions.DeletePicturesCroppedAreas works incorrect.
Set range not working.
Data Format label lost when saving pptx.
Pie chart percentage labels are incorrectly rendered in thumbnail.
Saving PPTX to PDF can cause text in pie chart labels to be lost.
Chart not properly converted to PDF.
Improper render of external fonts in SVG.
Text get missing and overlapped when exporting to PDF Notes.
PPTX not properly converted to PDF.
Chart is improperly rendered in generated thumbnail.
Strikethrough portion rendering issue.
Exception on loading or saving presentation.
Setting data label position is not working in Box and Whisker chart.
Changing of data labels font size and color has no effect in output presentation.
Presentation repair message on opening the Aspose.Slides saved presentation after chart.ChartData.SetRange(range) in PP 2013.
Chart changes after right click on edit data.
Charts or Images are improperly rendered in generated PDF.
Other most recent bug fixes are also included in this release
Newly added documentation pages and articles
Some new tips and articles have now been added into Aspose.Slides for Java documentation that may guide users briefly how to use Aspose.Slides for performing different tasks like the followings.
Save Workbook to Strict Open XML Spreadsheet Format
Converting ODP PPT to PPTX
Overview: Aspose.Slides for .NET
Aspose.Slides is a .NET component to read, write and modify a PowerPoint document without using MS PowerPoint. PowerPoint versions from 97-2007 and all three PowerPoint formats: PPT, POT, PPS are also supported. Now users can create, access, copy, clone, edit and delete slides in their presentations. Other features include saving PowerPoint slides into PDF, adding & modifying audio & video frames, using shapes like rectangles or ellipses and saving presentations in SVG format, streams or images.
More about Aspose.Slides for .NET
Homepage of Aspose.Slides for .NET
Downlaod of Aspose.Slides for .NET
Online documentation of Aspose.Slides for .NET
#Workbook to Strict Open XML Spreadsheet#rendering comments from ODP#Converting ODP PPT to PPTX#Rendering of Metafiles#.NET PowerPoint API#PPTX to PDF export#Render presentation with big data
0 notes
Text
Strict Open XML Format Support & Rendering Comments from ODP Files using Java
What's New in this Release?
Aspose team is happy to share the announcement of Aspose.Slides for Java 18.8. It has added support for some of new features in this API along with resolution of incurring issues in API. There are some important new features included in this release such as Add support for Strict Open XML format, Rendering of Metafiles ignores fonts loaded with FontsLoader, Rendering comments from ODP format that have no author, Support for "purl.oclc.org" namespace in Type attribute in ".rels" parts. It also included some important enhancements and bug fixes, such as Border around text appears after saving the PPT file, improved PPTX to PDF conversion, improved rendering of external fonts in SVG, Rendering presentation with large amount of data in charts consumes all available memory, Existing PPTX table cells changes formatting after assigning text, The embedded data stream is disposed and many more. This list of new, improved and bug fixes in this release are given below
Add support for Strict Open XML format
Rendering of Metafiles ignores fonts loaded with FontsLoader
Rendering comments from ODP format that have no author
Support for "purl.oclc.org" namespace in Type attribute in ".rels" parts
Rendering presentation with large amount of data in charts consumes all available memory
Improved PPTX to PDF conversion
Improved rendering of external fonts in SVG
The embedded data stream is disposed
When PPTX is converted to PDF, picture gets blurred
PPT to PDF not properly converted Enterprise Support
Icons are missing in exported PDF for RedHat Linux
Support for "purl.oclc.org" namespace in Type attribute in ".rels" parts
Bar Chart not properly converted to PDF
Improper render of external fonts in SVG
Text get missing and overlapped when exporting to PDF Notes
PPTX not properly converted to PDF
Chart is improperly rendered in generated thumbnail
PPTX not properly converted to PDF
Strikethrough portion rendering issue
Exception on loading presentation
PptxReadException when opening PPTX files on Mac
Exception on saving presentation
Setting data label position is not working in Box and Whisker chart
Exception on using Fonts
Rendering presentation with large amount of data in charts consumes all available memory
Other most recent bug fixes are also included in this release
Newly added documentation pages and articles
Some new tips and articles have now been added into Aspose.Slides for Java documentation that may guide users briefly how to use Aspose.Slides for performing different tasks like the followings.
Save Workbook to Strict Open XML Spreadsheet Format
Converting Presentation to HTML
Overview: Aspose.Slides for Java
Aspose.Slides is a Java component to create, read, write and modify a PowerPoint document without using Microsoft PowerPoint. It supports PHP applications and provides all advanced features for managing presentations, slides, shapes, tables and supports PPT, POT, POS PowerPoint formats. Now you can add, access, copy, clone, edit and delete slides in your presentations. It also supports audio & video frames, adding pictures, text frames and saving presentations as streams or SVG format.
More about Aspose.Slides for Java
Homepage of Aspose.Slides for Java
Downlaod Aspose.Slides for Java
Online documentation of Aspose.Slides for Java
#Strict Open XML format#ODP presentation format support#Converting Presentation to HTML#Java PowerPoint APIs#Improved PPTX to PDF#Rendering comments from ODP
0 notes
Text
Switch Rows/Columns of Chart Data & Embedding Fonts in PowerPoint Documents using Java
What's New in this Release?
Aspose team is happy to share the announcement of Aspose.Slides for Java 17.8.0. This is one of important product releases whereby we have added support for certain long awaiting features along with resolution of incurring issues in API. There are some important features introduced in this release, such as support for switching Rows and Columns of chart data, Support for setting offset values of stretched picture, Support embedding fonts in the PowerPoint documents, Support for getting loaded fonts list from LoadExternalFonts() and support for adding Notes styles. Some important enhancements and issues have been fixed in this release, such as Exception on extracting internal slide hyperlink, Gradient and Texture effects are missing in exported HTML, Shape outlines on tables/charts are not rendered in PDF/PNG, Text in exported SVG is misplaced, Autofit property is not working properly, Table rendered as blurred in exported PDF, Difference in Language ID for PPT and PPTX files, Information is removed from NotesMaster XML on saving presentation, Chart plot area missing in exported PDF, Exception on loading presentation, ole object property not working properly and many more. This list of new, improved and bug fixes in this release are given below
Embedding a PDF or mp3 as an icon in presentation
Add support for PP2010 PPTX presentations with embedded video
Support for switching Rows and Columns of chart data
Support for setting offset values of stretched picture
Adding the picture border feature
Difference between organization of text extracted from PPT and PPTX
Support embedding fonts in the PowerPoint documents
Support for getting loaded fonts list from LoadExternalFonts()
Add support for PP2010 PPTX presentations with embedded video
Exception on extracting internal slide hyperlink
Gradient and Texture effects are missing in exported HTML
Package "com.aspose.slides.Collections" is not exported in the MANIFEST.MF
Shape outlines on tables/charts are not rendered in PDF/PNG
Text in exported SVG is misplaced
Autofit Property is not working properly
Table rendered as blurred in exported PDF
Difference in Language ID for PPT and PPTX files
Information is removed from NotesMaster XML on saving presentation
Chart plot area missing in exported PDF
Exception on loading presentation
OLE object property not working properly
Exception on saving presentation
PPTX not properly rendered to SVG
Missing shapes and misaligned chart in exported PDF
Other most recent bug fixes are also included in this release
Newly added documentation pages and articles
Some new tips and articles have now been added into Aspose.Slides for Java documentation that may guide users briefly how to use Aspose.Slides for performing different tasks like the followings.
Add StretchOff Property
Adding Notes Style
Overview: Aspose.Slides for Java
Aspose.Slides is a Java component to create, read, write and modify a PowerPoint document without using Microsoft PowerPoint. It supports PHP applications and provides all advanced features for managing presentations, slides, shapes, tables and supports PPT, POT, POS PowerPoint formats. Now you can add, access, copy, clone, edit and delete slides in your presentations. It also supports audio & video frames, adding pictures, text frames and saving presentations as streams or SVG format.
More about Aspose.Slides for Java
Homepage of Aspose.Slides for Java
Downlaod Aspose.Slides for Java
Online documentation of Aspose.Slides for Java
#Switch Rows/Columns of chart data#set offset values of stretched picture#embed fonts in PowerPoint documents#get loaded fonts list#add Notes styles#Java PowerPoint API
0 notes
Text
3D Rotation Effects in Visio Drawing & Enhanced Retrieval of Solution XMLs from Visio Drawings
What’s new in this release?
Aspose team is pleased to announce the new release of Aspose.Diagram for .NET 17.5.0. The new version of the API adds a feature and enhancements along with the regular bug fixes. Developers can modify 3D rotation cell values in the shapesheet of Visio shapes. Furthermore, the retrieval of Solution XMLs from the Visio drawings has been improved. Developers can also install an Aspose.Diagram Nuget package in their .NET applications because we publish each version as a NuGet package on the NuGet gallery. We recommend our clients upgrade old version of Aspose.Diagram API to this latest one. Microsoft Visio application offers many of the formatting options used in other Office applications to users diagrams. Users can apply gradients, shadows, 3-D effects, rotations and more to Visio shapes. Developers can achieve the same features with Aspose.Diagram for .NET API in the .NET applications. In the recent version 17.5, a ThreeDFormat member is added in the Shape class which allows developers to retrieve and modify 3D rotation cell values in the shapesheet. Besides this, the mechanism of storing and retrieving SolutionXML elements from the Visio drawings has been improved because in various cases a simple open and save procedure was removing SolutionXML elements. The recent version also comprises a series of bug fixes. In general, it improves export of the VDX to SVG, open and save procedure of VSDM drawings, layout structure of connectors and an accurate calculation of the shape position in the drawing. Here is the list of important enhancements and bugs fixes in the new version.
Add support of shape's 3D rotation properties
Open and save process of VSDM removes SolutionXMLs
VTX to HTML conversion, double line effect on shapes text items
Incorrect rendering of an envelope icon on saving a VDX to SVG
Incorrect text alignment on saving a VDX to SVG
Retrieves an incorrect Calender value of the Shape data for VSDM
Saving to HTML stream do not embed external resources
Cannot set the TimeSaved value of a VSDM
The text items are being displaced on setting shape data in VSDM
Cannot remove and add a same named master in VSDM
Open and save process of VSDM removes vbaProjectSignature.bin file
Open and save process of VSDM changes Solution XML file
Cannot save Del and NoQuickDrag values of Geoms in a VSDM
Set TimeSaved value when saving a Visio drawing
Open and save process of VSDM removes relationship part of Solution XML
Displaced text on converting a VSD to PDF
Cannot add shape data to various shapes in VSDM
User cell UFEV value not saved correctly in VSDM
Duplicate page xml error on copying pages from two VSDM drawings
Non-print area is also included when converting a VSD to PDF
Newly added documentation pages and articles
Some new tips and articles have now been added into Aspose.Diagram for .NET documentation that may guide users briefly how to use Aspose.Diagram for performing different tasks like the followings.
3D Rotation Effects in a Visio Drawing
Detect the Format of Visio File
Overview: Aspose.Diagram for .NET
Aspose.Diagram is a class library for working with MS Visio files & is a pure .NET alternate for MS Visio Object Model.It enables developers to work with VSD & VDX files on ASP.NET web applications, web services & Windows applications. It makes use of the advanced functionality of Visio's services to manipulate Visio docs on a server. Developer can open files & manipulate the elements of the diagram, from lines and fills, to more complex elements, and then export to native Visio formats or XML.
More about Aspose.Diagram for .NET
Homepage of .Net Visio Component Aspose.Diagram for .NET
Download Aspose.Diagram for .NET
Online documentation of Aspose.Diagram for .NET
#3D Rotation Effects in Visio Drawing#retrieval of XMLs from Visio drawings#VDX to SVG enhanced#save procedure of VSDM drawings#layout structure of connectors#.NET Visio Diagram API
0 notes
Text
Bind Content Controls with XML Data (Custom XML Part) in Word Documents inside Java & .NET Apps
What's New in this Release?
Aspose development team is happy to announce the monthly release of Aspose.Words for Java & .NET 17.5.0. This month’s release contains over 84 useful new features, enhancements and bug fixes. Here is a look at just a few of the biggest features and API changes in this month’s release; MailMerge and Metafile Rendering Performance are Improved, Support TOA, IMPORT, INCLUDE, SHAPE Fields, API to bind SDT to CustomXML Properties is Provided, Implemented Support for ShapeLayoutLikeWW8 Compatibility Option, Improved Calculation of Width of Spaces in Asian Text, Improved Text Wrapping for Lines Consisting of Many Tabs, Improved Layout of Multi-Column Sections When Column Ends with Page Break Followed by Paragraph Break, Alow Resolution Text Rendering to Images Improved, Underlined Text in EMF+ Images are now Rendered into Fixed Page Formats, HtmlFixed Output File Rendering Improved, Image Crop is now Taken into Account While Rendering HtmlFixed, Shaded DrawingML Images Rendering Fixed and DrawingML Charts rendering improved (axis label placement). The method is used to set the amount of space (in points) to add to the left/top/right/bottom of the contents of cell. It has added new feature in Aspose.Words 17.5 to bind content controls with XML data (custom XML part) in Word documents. The XmlMapping class is used to specify the information that is used to establish a mapping between the parent structured document tag and an XML element stored within a custom XML data part in the document. Aspose team has added CustomXmlPartCollection.Add method in Aspose.Words 17.5. This method creates a new XML part with the specified XML and adds it to the collection. The list of new and improved features added in this release are given below
MailMerge and Metafile rendering performance are improved.
Support TOA, IMPORT, INCLUDE, SHAPE fields.
API to bind SDT to CustomXML properties is provided.
Implemented support for ShapeLayoutLikeWW8 compatibility option.
Improved calculation of width of spaces in Asian text.
Improved text wrapping for lines consisting of many tabs.
Improved layout of multi-column sections when column ends with page break followed by paragraph break.
A low resolution text rendering to images improved.
Underlined text in EMF+ images are now rendered into fixed page formats.
HtmlFixed output file rendering improved (removing zero-sized text boxes).
Image crop is now taken into account while rendering HtmlFixed.
Shaded DrawingML images rendering fixed.
DrawingML Charts rendering improved (axis label placement).
Support TOA field
Support IMPORT field
Support INCLUDE field
Support SHAPE field
Provide an API to bind SDT to CustomXML properties.
Incorrect text wrapping when a line starts with a huge space
Outline is incorrect upon converting VML to DML
Aspose.Words Objects are very verbose
MHTML import. Image format EMZ is not supported.
Simplifiy OMath when copying it into toc entry
Take image crop in account when render to HtmlFixed.
Documents rendered incorrectly
Obtain the correct distance between list label and content of list item
Backslashes and double quotes are not processed properly by the FieldTokenDecoder
An odd space added between spans at export to PNG
Rendering RTL tables to GDI/PNG is wrong
Doc to fixed file format conversion issue with STYLEREF
non-breaking space. Text position is changed after conversion from Docx to Doc/Pdf
Aspose.Words does not import the Run nodes correctly in DOM
space width + BalanceSingleByteDoubleByteWidth. Cell's text moves to next line in output Pdf
Rtf to Docx conversion issue with spaces's width.
ShapeLayoutLikeWW8. Doc to Pdf conversion issue with content's position
Veracode vulnerabilities in running Aspose.Words API code
ShapeLayoutLikeWW8. Doc to Pdf conversion issue with shape's position
Bookmark.Remove() removes only some bookmarks.
Chart is corrupted after conversion from MS WORD to PDF
List labels are lost after conversion from RTF to PNG
Image is lost after modifying the output Doc with MS Word 2003.
Document.AcceptAllRevisions does not accept all tracked changes
Chart image size seems bigger than original when exporting to HTML
Embedded Fonts are gone when printing Aspose.Words generated PDF
If saving to HTML and CssSavingArgs.CssStream is provided, CSS outputs both to the stream and to a file
Slope of Drawing Line is inversed when opening and saving the document
Pictures are shifted in rendered documents
Chart rendering is not accurate.
Vertical Axis of chart does not render correctly
Accept revisions cause a text deletion in Cell
Paragraph space after is changed after mail merge
Docx to Pdf conversion issue with Shape's text formatting
FontSettings are not document-bound during import from HTML
STYLEREF fields in headers resolve in Error when rendering Word document with revisions to PDF
SVG is not exported in output DOC/PDF
The stroke of SVG image is lost in output PDF
Inline styles are used when styles are set to be saved separately
Html to Docx/Pdf conversion issue with SVG image
Text color is changed in DOCX to JPG conversion
Range.Replace method does not replace text in footnote
Text in DrawingML textboxes missing when converting to PDF
Paragraph's text is rendered on previous page in output HtmlFixed/Pdf
Document.AcceptAllRevisions removes the empty paragraph that causes incorrect page layout
Pages are truncated in output HtmlFixed/PDF
API throws InvalidCastException upon loading DOCX
Date field is incorrectly formatted when FieldUpdateCultureSource.FieldCode is used
Chart's vertical axis are in correct in output PNG
Chart's vertical axis are rendered as decimal instead of integer
The minimum axis bound is changed in output PNG
Axis bounds and units of chart are changed in output PNG
Incorrect conversion of x-axis data of a Chart
Docx to PDF conversion issue with image rendering
Other most recent bug fixes are also included in this release
Overview: Aspose.Words
Aspose.Words is a word processing component that enables .NET, Java & Android applications to read, write and modify Word documents without using Microsoft Word. Other useful features include document creation, content and formatting manipulation, mail merge abilities, reporting features, TOC updated/rebuilt, Embedded OOXML, Footnotes rendering and support of DOCX, DOC, WordprocessingML, HTML, XHTML, TXT and PDF formats (requires Aspose.Pdf). It supports both 32-bit and 64-bit operating systems. You can even use Aspose.Words for .NET to build applications with Mono.
More about Aspose.Words
Homepage Aspose.Words for .NET
Homepage of Aspose.Words for Java
Download Aspose.Words for .NET
Download Aspose.Words for Java
Online documentation of Aspose.Words
#Bind Content Control to XML Parts#Metafile Rendering improved#Enhanced Mail Merge Rendering#Text Wrapping for Lines#TOA & IMPORT fields support#.NET Word processing API
0 notes
Text
Add Transparent Watermark Annotation in PDF & Hyperlink support in Footnote Text using .NET
What's New in this Release?
Aspose team is pleased to announce the release of Aspose.Pdf for .NET 17.2.0. It includes some important enhancements along with number of bug fixes those were reported in previous months’ releases and making this release more reliable and stable. The enhancements include opacity feature in Watermark Annotation and hyperlink feature in Footnote. In this release, we have fixed PDF to PDFA, PDF to HTML conversion feature issues along with some other issues. Some of Aspose's customers requested to control transparency of Watermark Annotation, so Aspose team has implemented opacity property in new release for this purpose. Please check the sample code provided on the blog announcement page to add transparent Watermark Annotation. Aspose team already support Footnote feature in Aspose.Pdf for .NET. However recently, one of the customer asked for hyperlink enhancement in Footnote feature. To fulfill this requirement, Aspose team has enhanced Footnote feature in this release. Now, by default Footnote functionality will add a reference of Footnote text to related superscript text. For example, Footnote superscript text “1” will be linked to Footnote text in output PDF document of following code. The list of important new and improved features are given below
Set link to Footnote
Reference to Newtonsoft 9.0.0.0 in Aspose.Pdf for .NET dll
Opacity property support in Watermark Annotation
PDF to PDFA: after conversion some content is missed
HTML to PDF: resource file is not working from network folder
PDF to PDFA conversion time and output file size issue
Aspose PDF Memory Leak when use LocalHyperlinks
PDF to PDF/A - Problems with the order of objects on certain pages
Input stream must be FileStream exception when loading Tex file from stream
Wrong output - Problem with transparency, the pages are cut into rectangles
PDF to PDFA problem with transparent images after conversion
PDF to PDFA conversion generates a very large file in size
PDF to PDF/A - Missing logo and non compliance output
PDF to PDF/A - Resultant file gets corrupted
PDF/A-1 conversion creates invalid XRef table
PDF to PDF/A - WordArt glyph are incorrectly converted
Flatten method overlaps PDF file contents
PDF to PDF/A_1b - Resultant file is not compliant
PDF to PDF - Image is removed from document
Flatten form field removes dropdown values
HTML to PDF - Image not being loaded from network path
Replaceable symbols not working in Page body
Text is cut off when adding artifact or annotation watermark to PDF
PDF to HTML: links render as plain text
Table header not being grouped with first row
PDF to DOC: Table headers are disappeared
ComboBoxField value is not preserved when calling flatten() method
When converting HTML to PDF, DIV elements in produced PDF not consistent
PDF to DOCX conversion loses formatting
Other most recent bug fixes are also included in this release.
Newly added documentation pages and articles
Some new tips and articles have now been added into Aspose.Pdf for .NET documentation that may guide users riefly how to use Aspose.Pdf for performing different tasks like the followings.
Adding Watermark Annotation
Manipulate Images inside PDF Document
Overview: Aspose.Pdf for .NET
Aspose.Pdf is a .Net Pdf component for the creation and manipulation of Pdf documents without using Adobe Acrobat. Create PDF by API, XML templates & XSL-FO files. It supports form field creation, PDF compression options, table creation & manipulation, graph objects, extensive hyperlink functionality, extended security controls, custom font handling, add or remove bookmarks; TOC; attachments & annotations; import or export PDF form data and many more. Also convert HTML, XSL-FO and MS WORD to PDF.
More about Aspose.Pdf for .NET
Homepage of Aspose.Pdf for .NET C#
Download Aspose.Pdf for .NET
#Add Transparent Watermark Annotation#Hyperlink support in Footnote#Set link to Footnote#PDF to PDFA conversion#HTML to PDF enhanced#convert PDF to HTML#.NET PDF Library
0 notes