彩票走势图

Aspose.Words for .NET使用教程(六):Xamarin和.NET Standard 2.0 API的差异和局限

翻译|使用教程|编辑:黄竹雯|2019-01-31 09:53:47.000|阅读 382 次

概述:Aspose.Words无需Microsoft Word也可在任何平台上满足Word文档的一切操作需求。本文将与大家分享Xamarin和.NET Standard 2.0 API的差异和局限。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

Aspose.Words无需Microsoft Word也可在任何平台上满足Word文档的一切操作需求。本文将与大家分享Xamarin和.NET Standard 2.0 API的差异和局限。

下载Aspose.Words for .NET最新试用版

Xamarin平台注释



Xamarin DLL总是使用Xamarin.Android,Xamarin.iOS和Xamarin.Mac最新且稳定的版本构建。如果你在Xamarin应用程序中使用Aspose.Words的时候遇到问题,请确保安装了最新的Xamarin版本。有时Aspose.Words使用最新Xamarin版本构建的Xamarin DLL并不适用于旧版本的Xamarin。

与.NET API相比,.NET Standard 2.0,Xamarin.Android,Xamarin.iOS和Xamarin.Mac API的局限性


1.Document.Print方法在.NET Standard 2.0,Xamarin.Android,Xamarin.iOS和Xamarin.Mac API中不可用。

2.未提供保存到用户浏览器功能,即Document.Save(HttpResponse,string,ContentDescription,SaveOptions)重载不可用。

3.由于目标操作系统(Android,MacOS,Linux等)中缺少Windows字体,文档中使用的字体将替换为可用字体,这可能导致文档布局不准确,将文档呈现为固定页面格式(如图像,PDF,XPS)等等。

公共API差异


1.在Aspose.Words for .NET Standard 2.0中,使用Xamarin.Android,Xamarin.iOS和Xamarin.Mac SkiaSharp.SKBitmap对象代替.NET API中的System.Drawing.Bitmap。受影响的API列表:

  • Aspose.Words.DocumentBuilder.InsertImage
  • Aspose.Words.DocumentBuilder.InsertOleObject
  • Aspose.Words.Drawing.ImageData.SetImage
  • Aspose.Words.Drawing.ImageData.ToImage
  • Aspose.Words.Fields.IBarcodeGenerator.GetBarcodeImage
  • Aspose.Words.Fields.IBarcodeGenerator.GetOldBarcodeImage
  • Aspose.Words.MailMerging.ImageFieldMergingArgs.Image

.NET


// Use System.Drawing.Bitmap.
using (System.Drawing.Bitmap image = new System.Drawing.Bitmap(gTestImagePath))
{
    builder.InsertImage(image);
}

 

.NET Standard 2.0, Xamarin.Android, Xamarin.iOS and Xamarin.Mac


// Insert image into the document from SkiaSharp.SKBitmap object.
using (SkiaSharp.SKBitmap bitmap = SkiaSharp.SKBitmap.Decode(gTestImagePath))
{
    builder.InsertImage(bitmap);
}

 

2.在Aspose.Words for .NET Standard 2.0中,使用Xamarin.Android,Xamarin.iOS和Xamarin.Mac SkiaSharp.SKCanvas对象代替.NET API中使用的System.Drawing.Graphics对象。受影响的API列表:

  • Aspose.Words.Document.RenderToSize
  • Aspose.Words.Document.RenderToScale
  • Aspose.Words.Rendering.NodeRendererBase.RenderToSize
  • Aspose.Words.Rendering.NodeRendererBase.RenderToScale

.NET

Document doc = new Document(gTestDocumentPath);
 
// Render the first page to System.Drawing.Graphics
using (System.Drawing.Bitmap bitmap = new System.Drawing.Bitmap(1000, 1000))
{
    using (System.Drawing.Graphics gr = System.Drawing.Graphics.FromImage(bitmap))
    {
        // Apply required transformations to the graphics, rotation for example.
        gr.RotateTransform(45);
 
        doc.RenderToSize(0, gr, 0, 0, bitmap.Width, bitmap.Height);
    }
 
    // Save output to file.
    bitmap.Save(@"C:\Temp\out.png", System.Drawing.Imaging.ImageFormat.Png);
}

 

.NET Standard 2.0, Xamarin.Android, Xamarin.iOS and Xamarin.Mac

Document doc = new Document(gTestDocumentPath);
 
// Render the first page to SkiaSharp.SKCanvas
using (SkiaSharp.SKBitmap bitmap = new SkiaSharp.SKBitmap(1000, 1000))
{
    using (SkiaSharp.SKCanvas canvas = new SkiaSharp.SKCanvas(bitmap))
    {
        // Apply required transformations to the canvas, rotation for example.
        canvas.RotateDegrees(45);
 
        doc.RotateDegrees(0, canvas, 0, 0, bitmap.Width, bitmap.Height);
    }
 
    // Save output to file.
    using (SkiaSharp.SKFileWStream fs = new SkiaSharp.SKFileWStream(gOutPath+ "RenderToSize_Out.png"))
    {
        bitmap.Encode(fs, SkiaSharp.SKEncodedImageFormat.Png, 100);
    }
}

 

Xamarin.Android附加要求


1.要正常工作,Aspose.Words的Xamarin.Android API需要Encodings支持。在“Release”模式下运行Xamarin.Android应用程序时,需要添加其他支持的编码。请注意,在“Debug”模式下,可以在没有这些选项的情况下工作。

android-encodings

2.如果你想使用Metered许可证,则需要允许你的应用程序访问Internet。

android_allow_internet_access

Xamarin.iOS附加要求


要正常工作Aspose.Words的Xamarin.iOS API需要Encodings支持。当你运行Xamarin.iOS应用程序时,需要添加其他支持的编码。

ios_encodings

Xamarin.Mac附加要求


1.要正常工作,Aspose.Words的Xamarin.Mac API需要Encodings支持。当您运行Xamarin.Mac应用程序时,需要添加其他支持的编码。

mac_encodings

为你推荐:Aspose专题 - Aspose最新资源合集


想要购买正版授权,或者获取更多Aspose.Words相关信息的朋友可以点击" "~

标签:文档管理wordAspose.words文档处理

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP