Skip to content

Commit 94775ad

Browse files
Update information related to PdfProcessing for Xamarin
1 parent 4f07022 commit 94775ad

File tree

10 files changed

+28
-8
lines changed

10 files changed

+28
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@ robots.txt
3030
search.html
3131
start-docs.sh
3232
watch.sh
33+
.asset-cache/

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ sdk_cdn_path: "https://cdn.rawgit.com/telerik/document-processing-sdk/master/"
252252
non-sl-folders: ["radwordsprocessing", "radspreadstreamprocessing"]
253253

254254
# Folders not supporting Xamarin:
255-
non-xamarin-folders: ["radwordsprocessing", "radspreadprocessing", "radpdfprocessing"]
255+
non-xamarin-folders: ["radwordsprocessing", "radspreadprocessing"]
256256

257257
## Do not edit below this line
258258
skip_tabbed_code: true

distribution-and-licensing/license-agreement.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,6 @@ __UI for WPF__: [http://www.telerik.com/purchase/license-agreement/wpf-dlw-s](ht
2424
__UI for WinForms__: [http://www.telerik.com/purchase/license-agreement/winforms-dlw-s](http://www.telerik.com/purchase/license-agreement/winforms-dlw-s)
2525

2626

27-
__UI for Silverlight__: [http://www.telerik.com/purchase/license-agreement/silverlight-dlw-s](http://www.telerik.com/purchase/license-agreement/silverlight-dlw-s)
27+
__UI for Silverlight__: [http://www.telerik.com/purchase/license-agreement/silverlight-dlw-s](http://www.telerik.com/purchase/license-agreement/silverlight-dlw-s)
28+
29+
**UI fo Xamarin**:[https://www.telerik.com/purchase/license-agreement/ui-for-xamarin](https://www.telerik.com/purchase/license-agreement/ui-for-xamarin)

getting-started/installing-on-your-computer.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,8 @@ When the installation completes, the Telerik Document Processing assemblies will
4343

4444
## UI for Silverlight
4545

46-
[Installing Telerik UI for Silverlight](http://docs.telerik.com/devtools/silverlight/installation-and-deployment/installing-telerik-ui-on-your-computer/installation-installing-which-file-do-i-need.html)
46+
[Installing Telerik UI for Silverlight](http://docs.telerik.com/devtools/silverlight/installation-and-deployment/installing-telerik-ui-on-your-computer/installation-installing-which-file-do-i-need.html)
47+
48+
## UI for Xamarin
49+
50+
[Installing Telerik UI for Xamarin](https://docs.telerik.com/devtools/xamarin/installation-and-deployment/system-requirements)

introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Telerik Document Processing features the following components:
4141

4242
## Licensing
4343

44-
Telerik Document Processing is available as part of DevCraft, UI for ASP.NET AJAX, UI for ASP.NET MVC, UI for WPF, UI for WinForms and UI for Silverlight. A part of the libraries is included in UI for Xamarin as well. The libraries are subject of the license under which you've obtained the assemblies.
44+
>Telerik Document Processing is available as part of **DevCraft**, **UI for ASP.NET AJAX**, **UI for ASP.NET MVC**, **UI for WPF**, **UI for WinForms** and **UI for Silverlight**. A part of the libraries is included in **UI for Xamarin** as well. The libraries are subject of the license under which you've obtained the assemblies.
4545
4646
Learn more on how to start using Telerik Document Processing in the [Installing on Your Computer]({%slug installation-installing-on-your-computer%}) topic.
4747

libraries/radpdfprocessing/features/digital-signature.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ The digital signature feature enables you to sign and validate a PDF document. A
2929

3030
In the PDF document model, the validation is performed per signature. A signed document is considered valid when it has not been changed after the signing and all of its certificates have a valid trusted root certificate.
3131

32+
>In PdfProcessing for Xamarin you can add SignatureField but can not sign or import signed documents.
33+
3234
## Signing a Document
3335

3436
The signing is done through the **Signature** object. The constructor of the Signature class takes a [X509Certificate2](https://msdn.microsoft.com/en-us/library/system.security.cryptography.x509certificates.x509certificate2(v=vs.110).aspx) object as a parameter. This is the certificate that will be used to sign the PDF document.

libraries/radpdfprocessing/model/image.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ You can modify an __Image__ element using the properties the class exposes. The
5959

6060
The Image class exposes also the **GetBitmapSource()** method, enabling you to obtain a [BitmapSource](https://docs.microsoft.com/en-us/dotnet/api/system.windows.media.imaging.bitmapsource) instance representing the image.
6161

62+
> The GetBitmapSource() method is not available in PdfProcessing for Xamarin.
63+
6264
#### __[C#] Example 3: Obtain BitmapSource__
6365

6466
{{region cs-radpdfprocessing-model-image_2}}

libraries/radpdfprocessing/model/imagesource.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ The ImageSource class has several public constructor overloads and can be create
2121

2222
* __public ImageSource(Stream stream)__: Creates an __ImageSource__ object from a stream that contains image.
2323

24-
* __public ImageSource(Stream stream, FormatProviders.Pdf.Export.ImageQuality imageQuality)__: Creates an __ImageSource__ object from a stream and allows you to specify the image quality through the [ImageQuality enumeration](https://docs.telerik.com/devtools/document-processing/api/Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Export.ImageQuality.html). More information about the ImageQuality and its behavior is available in [this article]({%slug radpdfprocessing-concepts-imagequality%}).
24+
* __public ImageSource(Stream stream, FormatProviders.Pdf.Export.ImageQuality imageQuality)__: Creates an __ImageSource__ object from a stream and allows you to specify the image quality through the [ImageQuality enumeration](https://docs.telerik.com/devtools/document-processing/api/Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Export.ImageQuality.html). More information about the ImageQuality and its behavior is available in [this article]({%slug radpdfprocessing-concepts-imagequality%}). This overload might throw an exception if the image format is not supported.
2525

26-
* __public ImageSource(BitmapSource bitmapSource)__: Creates a new __ImageSource__ object from a BitmapSource object.
26+
* __public ImageSource(BitmapSource bitmapSource)__: Creates a new __ImageSource__ object from a BitmapSource object. This overload is not available in PdfProcessing for Xamarin.
2727

28-
* __public ImageSource(BitmapSource bitmapSource, FormatProviders.Pdf.Export.ImageQuality imageQuality)__: Creates an __ImageSource__ instance from a BitmapSource object and allows you to specify the image quality.
28+
* __public ImageSource(BitmapSource bitmapSource, FormatProviders.Pdf.Export.ImageQuality imageQuality)__: Creates an __ImageSource__ instance from a BitmapSource object and allows you to specify the image quality. This overload is not available in PdfProcessing for Xamarin.
2929

3030
* __public ImageSource(EncodedImageData imageSourceInfo)__: Initializes a new instance of __ImageSource__ using the [EncodedImageData class](https://docs.telerik.com/devtools/document-processing/api/Telerik.Windows.Documents.Fixed.Model.Resources.EncodedImageData.html).
3131

@@ -72,6 +72,8 @@ The properties exposed by the **ImageSource** class are as follows:
7272

7373
The ImageSource class exposes two methods, which could help you get the data from the ImageSource object.
7474

75+
> These methods are not available in PdfProcessing for Xamarin.
76+
7577
* __BitmapSource GetBitmapSource()__: Gets the BitmapSource of the image.
7678
* __EncodedImageData GetEncodedImageData()__: Returns the encoded image data. This method can be used if you need to directly export the images from the PDF document.
7779

libraries/radpdfprocessing/model/interactive-forms/form-fields/signaturefield.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ This article describes the following topics:
2020

2121
This class corresponds to FormFieldType.Signature enum value and represents a placeholder which preserves the digital signature information.
2222

23+
>In PdfProcessing for Xamarin you can add SignatureField but can not sign or import signed documents.
2324
2425
## Properties
2526

upgrade/upgrade-instructions.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,10 @@ Telerik Document Processing is part of several Telerik bundles and could be upgr
4444

4545
[Upgrading Telerik UI for Silverlight](http://docs.telerik.com/devtools/silverlight/installation-and-deployment/upgrading-instructions/installation-upgrading-from-trial-to-developer-license.html)
4646

47-
>Due to the specifics of Telerik Document Processing, a project that uses only assemblies of this product cannot be upgraded using the Upgrade Wizard of Visual Studio Extensions. You can manually replace the assemblies with the new ones or change the project's references to point to the location of the new version.
47+
>Due to the specifics of Telerik Document Processing, a project that uses only assemblies of this product cannot be upgraded using the Upgrade Wizard of Visual Studio Extensions. You can manually replace the assemblies with the new ones or change the project's references to point to the location of the new version.
48+
49+
## UI for Xamarin
50+
51+
[Upgrading Telerik UI for Xamarin on Windows](https://docs.telerik.com/devtools/xamarin/upgrade/upgrading-windows)
52+
53+
[Upgrading Telerik UI for Xamarin on Mac](https://docs.telerik.com/devtools/xamarin/upgrade/upgrading-mac)

0 commit comments

Comments
 (0)