• <menu id="w2i4a"></menu>
  • logo Aspose中文文檔

    文檔首頁(yè)>>Aspose中文文檔>>在 Windows Azure 中轉(zhuǎn)換文檔

    在 Windows Azure 中轉(zhuǎn)換文檔


    Aspose.Words是一種高級(jí)Word文檔處理API,用于執(zhí)行各種文檔管理和操作任務(wù)。API支持生成,修改,轉(zhuǎn)換,呈現(xiàn)和打印文檔,而無(wú)需在跨平臺(tái)應(yīng)用程序中直接使用Microsoft Word。

    Aspose API支持流行文件格式處理,并允許將各類(lèi)文檔導(dǎo)出或轉(zhuǎn)換為固定布局文件格式和最常用的圖像/多媒體格式。

    Aspose.words 最新下載

    Windows Azure 上的 Aspose.Words 提供了加載、轉(zhuǎn)換和保存文檔的功能。為此,您可以創(chuàng)建一個(gè)應(yīng)用程序,該應(yīng)用程序:

    1. 實(shí)現(xiàn)一個(gè)簡(jiǎn)單的 ASP.NET 表單,使用戶(hù)能夠加載文檔并指定所需的輸出格式。
    2. 調(diào)用 Aspose.Words 來(lái)轉(zhuǎn)換文檔并將其發(fā)送回瀏覽器。

    本文中描述的應(yīng)用程序作為WebRole實(shí)現(xiàn),可以在開(kāi)發(fā)結(jié)構(gòu)中運(yùn)行(在開(kāi)發(fā)人員的機(jī)器上)或部署到Windows Azure。此應(yīng)用程序是Aspose.Words如何在云中工作的可能示例之一。

    先決條件
    • Active Microsoft Azure 訂閱。如果您沒(méi)有免費(fèi)帳戶(hù),請(qǐng)?jiān)陂_(kāi)始之前創(chuàng)建一個(gè)免費(fèi)帳戶(hù)。
    • 安裝了 Azure 開(kāi)發(fā)的 Visual Studio 2019 或 Visual Studio 2017。
    轉(zhuǎn)換文檔應(yīng)用程序

    本節(jié)討論一個(gè)不使用高級(jí)Aspose.Words功能或Windows Azure平臺(tái)的復(fù)雜服務(wù)的基本項(xiàng)目。

    該項(xiàng)目演示了如何使用Aspose.Words輕松構(gòu)建在云中運(yùn)行的應(yīng)用程序。

    創(chuàng)建 Web 角色項(xiàng)目

    要?jiǎng)?chuàng)建應(yīng)用程序,您需要執(zhí)行以下步驟:

    1. 在 Visual Studio 中創(chuàng)建新的云服務(wù)項(xiàng)目。
    2. 選擇云服務(wù)以具有一個(gè) WebRole 項(xiàng)目。
    3. 將 NuGet 引用添加到 Aspose.Words。
    4. 將“文件上載”控件添加到“默認(rèn).aspx”窗體,使用戶(hù)能夠選擇要上載的文件。
    5. 將下拉列表控件添加到 Default.aspx 窗體,使用戶(hù)能夠選擇輸出格式。
    6. 為其添加“提交”按鈕和 Click 事件處理程序。
    7. 修改 ServiceDefinition.csdef 配置文件,以便應(yīng)用程序可以在完全信任下在 Windows Azure 中運(yùn)行。建議您啟用 NativeCodeExecution = “true”,以避免在使用 Aspose.Words 將文檔轉(zhuǎn)換為 PDF 或 XPS 時(shí)可能出現(xiàn)的任何權(quán)限問(wèn)題。

    使用 Aspose.Words 轉(zhuǎn)換文檔的實(shí)際代碼僅包含兩行,這些行創(chuàng)建新的 Document 對(duì)象以加載文檔,然后使用所需格式調(diào)用 Save 方法。下面的代碼示例演示如何在 Windows Azure 中轉(zhuǎn)換文檔:

    using Aspose.Words;
    using Aspose.Words.Saving;
    using System.Web;
    using System;
    using System.IO;
    namespace WebRole
    {
    /// <summary>
    /// This demo shows how to use Aspose.Words for .NET inside a WebRole in a simple
    /// Windows Azure application. There is just one ASP.NET page that provides a user
    /// interface to convert a document from one format to another.
    /// </summary>
    public partial class _Default : System.Web.UI.Page
    {
    protected void SubmitButton_Click(object sender, EventArgs e)
    {
    HttpPostedFile postedFile = SrcFileUpload.PostedFile;
    if (postedFile.ContentLength == 0)
    throw new Exception("There was no document uploaded.");
    if (postedFile.ContentLength > 512 * 1024)
    throw new Exception("The uploaded document is too big. This demo limits the file size to 512Kb.");
    
    // Create a suitable file name for the converted document.
    string dstExtension = DstFormatDropDownList.SelectedValue;
    string dstFileName = Path.GetFileName(postedFile.FileName) + "_Converted." + dstExtension;
    SaveFormat dstFormat = FileFormatUtil.ExtensionToSaveFormat(dstExtension);
    
    // Convert the document and send to the browser.
    Document doc = new Document(postedFile.InputStream);
    doc.Save(Response, dstFileName, ContentDisposition.Inline, SaveOptions.CreateSaveOptions(dstFormat));
    
    // Required. Otherwise DOCX cannot be opened on the client (probably not all data sent
    // or some extra data sent in the response).
    Response.End();
    }
    static _Default()
    {
    // Uncomment this code and embed your license file as a resource in this project and this code
    // will find and activate the license. Aspose.Wods licensing needs to execute only once
    // before any Document instance is created and a static ctor is a good place.
    //
    
    // Aspose.Words.License l = new Aspose.Words.License();
    // l.SetLicense("Aspose.Words.lic");
    }
    }
    }
    測(cè)試和運(yùn)行 Web 角色項(xiàng)目

    若要測(cè)試和運(yùn)行示例項(xiàng)目,請(qǐng)執(zhí)行以下步驟:

    1. 首先,檢查作為簡(jiǎn)單 ASP.NET 應(yīng)用程序運(yùn)行的示例項(xiàng)目。使 WebRole 項(xiàng)目成為解決方案中的啟動(dòng)項(xiàng)目并運(yùn)行。Visual Studio將打開(kāi)一個(gè)瀏覽器窗口并將表單加載到其中。您可以上傳示例文檔并驗(yàn)證轉(zhuǎn)換是否正常工作。
    2. 然后,您應(yīng)該測(cè)試項(xiàng)目是否在計(jì)算機(jī)上的開(kāi)發(fā)結(jié)構(gòu)中運(yùn)行良好。Development Fabric 是 Windows Azure 計(jì)算和存儲(chǔ)服務(wù)的本地模擬。選擇“云服務(wù)”項(xiàng)目,使其成為解決方案的“啟動(dòng)”項(xiàng)目并運(yùn)行。這一次,構(gòu)建應(yīng)用程序可能需要更長(zhǎng)的時(shí)間,因?yàn)閂isual Studio啟動(dòng)了Development Fabric并將項(xiàng)目部署到其中。瀏覽器窗口將再次打開(kāi)表單,您將能夠測(cè)試應(yīng)用程序。
    3. 最后,您可以在 Windows Azure 中部署和測(cè)試您的項(xiàng)目。為此,您需要有一個(gè)有效的 Microsoft Azure 訂閱。 在 Visual Studio 中,右鍵單擊云服務(wù)項(xiàng)目,然后選擇“發(fā)布”。如有必要,請(qǐng)使用您的 Microsoft Azure 帳戶(hù)登錄并選擇訂閱。 要進(jìn)行測(cè)試,請(qǐng)選擇暫存環(huán)境,然后單擊發(fā)布。之后,在 Azure 活動(dòng)日志中,你將收到已部署應(yīng)用程序的 URL。

    轉(zhuǎn)換-文檔-在窗口中-Azure-aspose-words-net-1

    下圖顯示了在 Microsoft Azure 云中運(yùn)行的 Web 角色項(xiàng)目:

    轉(zhuǎn)換-文檔-在窗口中-Azure-aspose-words-net-2

    掃碼咨詢(xún)


    添加微信 立即咨詢(xún)

    電話咨詢(xún)

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();