- Posts: 814
- Thank you received: 65
Microsoft Windows Phone 8.1 support ends (13 Jul 2017)
Microsoft has ended support for Windows Phone 8.1
Planned SDK features
Android PDF Viewer SDK 3.5.1 beta
10 years 8 months ago - 10 years 5 months ago #9271
by Davide
Android PDF Viewer SDK 3.5.1 beta was created by Davide
A new beta version has been
published here
3.5.1beta2
- FIX loading bad PDF file: PDF file seek "startxref" to find cross reference table, In some case files has "startref" not "startxref"
- FIX issue for set colors for text field when text field has null text value.
- FIX an issue for PDF file saving.
- OPTIMIZED color blending codes.
- OPTIMIZED radial gradient filling.
- fixed an issue when using font delegate
3.5.1beta1:
- NEW feature: add Form object and add resources to Form.
- NEW class Document.DocForm
--DocForm.AddResImage
--DocForm.AddResFont
--DocForm.AddResGState
--DocForm.AddResForm
--DocForm.SetContent
- NEW method Document.NewForm()
- NEW method Page.AddResForm()
- NEW demo codes int module PDFReader: com.radaee.reader.PDFTesAct.test_form()
- java-doc updated.
3.5.1beta2
- FIX loading bad PDF file: PDF file seek "startxref" to find cross reference table, In some case files has "startref" not "startxref"
- FIX issue for set colors for text field when text field has null text value.
- FIX an issue for PDF file saving.
- OPTIMIZED color blending codes.
- OPTIMIZED radial gradient filling.
- fixed an issue when using font delegate
3.5.1beta1:
- NEW feature: add Form object and add resources to Form.
- NEW class Document.DocForm
--DocForm.AddResImage
--DocForm.AddResFont
--DocForm.AddResGState
--DocForm.AddResForm
--DocForm.SetContent
- NEW method Document.NewForm()
- NEW method Page.AddResForm()
- NEW demo codes int module PDFReader: com.radaee.reader.PDFTesAct.test_form()
- java-doc updated.
Last edit: 10 years 5 months ago by Davide.
10 years 7 months ago - 10 years 7 months ago #9439
by Davide
Replied by Davide on topic Android PDF Viewer SDK 3.5.1 beta3
A new beta version has been
published here
3.5.1beta3
- FIX the issue for empty page(empty arabic text page).
- FIX owner password issue for Document.EncryptAs()
3.5.1beta3
- FIX the issue for empty page(empty arabic text page).
- FIX owner password issue for Document.EncryptAs()
Last edit: 10 years 7 months ago by Davide.
10 years 7 months ago - 10 years 6 months ago #9453
by Davide
Replied by Davide on topic Android PDF Viewer SDK 3.5.1 beta4
Last edit: 10 years 6 months ago by Davide.
10 years 6 months ago - 10 years 6 months ago #9485
by Davide
Replied by Davide on topic Android PDF Viewer SDK 3.5.1 beta5
Last edit: 10 years 6 months ago by Davide.
10 years 6 months ago #9503
by rômfer
I was trying to update to Android 6.0 SDK, and now the app doesn't build because of the errors above.
FloatMath was deprecate long ago, and now has been removed.
Please change from:
to:
Replied by rômfer on topic Android PDF Viewer SDK 3.5.1 beta5
Warning:com.radaee.view.PDFPageView: can't find referenced method 'float sqrt(float)' in library class android.util.FloatMath
Warning:com.radaee.view.PDFVPage: can't find referenced method 'float sqrt(float)' in library class android.util.FloatMath
Warning:com.radaee.view.PDFView: can't find referenced method 'float sqrt(float)' in library class android.util.FloatMath
I was trying to update to Android 6.0 SDK, and now the app doesn't build because of the errors above.
FloatMath was deprecate long ago, and now has been removed.
Please change from:
Code:
float x = FloatMath.sqrt(y);
Code:
float x = (float)Math.sqrt(y);
Time to create page: 0.493 seconds