3

ユーザー用のpdfファイルを作成するためにspire libを使用しています。

    string userId = User.Identity.GetUserId();
        User trainee = _userDAL.GetUserByIdentityId(userId);

        // Get the Employee scores
        string fileNameTemplate = Server.MapPath(Url.Content("~/assets/cert1-{0}-{1}.docx"));
        string nnn = string.Format("cert1-{0}-{1}.pdf", trainee.StaffID, DateTime.Now.Millisecond);
        string serverPath = MainConfig.P_EXPORT;
        var folder = Server.MapPath(serverPath);

using (Document document_test = new Document()) { document_test.LoadFromFile(fileNameTemplate);

            //Update Text of Title
            document_test.Replace("#trainee_name#", trainee.Name, false, true);
            document_test.Replace("#course_name#", "Test", false, true);
            document_test.Replace("#date_info#", DateTime.Today.ToShortDateString(), false, true);

            document_test.SaveToFile(nnn, Spire.Doc.FileFormat.PDF, System.Web.HttpContext.Current.Response, HttpContentType.Attachment);
        }

コードはローカル開発マシンで完全に機能しますが、Azure Web アプリにアップロードすると、次の一般的なエラーが発生します: GDI+ で一般的なエラーが発生しました。

スタックトレース:

[ExternalException (0x80004005): GDI+ で一般的なエラーが発生しました。] System.Drawing.Imaging.Metafile..ctor(Stream stream, IntPtr referenceHdc, RectangleF frameRect, MetafileFrameUnit frameUnit, EmfType type, String description) +226801 System.Drawing.Imaging .Metafile..ctor(Stream stream, IntPtr referenceHdc, RectangleF frameRect, MetafileFrameUnit frameUnit, EmfType type) +34 sprᲦ.ᜀ(PageSetup A_0, ImageType A_1, MemoryStream A_2, Int32 A_3, GraphicsUnit A_4) +255 sprᲦ.ᜀ(PageSetup A_0 , ImageType A_1, MemoryStream A_2, Int32 A_3) +19 sprᲦ.᜔() +224 sprᲦ.ᜁ(IDocument A_0) +234 spr᧤.ᜀ(Document A_0) +93 Spire.Doc.Document.ᜀ(Stream A_0) + 94 Spire.Doc.Document.SaveToFile(ストリーム ストリーム、FileFormat fileFormat) +289 Spire.Doc.Document.SaveToFile(String fileName、FileFormat fileFormat、HttpResponse 応答、HttpContentType contentType) +673 LMSv1.Controllers.DisplayController.DownloadCertification(Nullable1 tid, Nullable1 eid) +616 lambda_method(Closure , ControllerBase , Object[] ) +146 System.Web.Mvc.ActionMethodDispatcher.Execute(ControllerBase コントローラー, Object[] パラメーター) +14 System.Web.Mvc.ReflectedActionDescriptor.Execute(ControllerContext controllerContext, IDictionary 2 parameters) +167 System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod(ControllerContext controllerContext, ActionDescriptor actionDescriptor, IDictionary2 パラメータ) +27 System.Web.Mvc.Async.AsyncControllerActionInvoker.b__39(IAsyncResult asyncResult, ActionInvocation innerInvokeState) +22 System.Web.Mvc.Async.WrappedAsyncResult 2.CallEndDelegate(IAsyncResult asyncResult) +29 System.Web.Mvc.Async.WrappedAsyncResultBase1.End() +49

4

4 に答える 4

3

この問題は、次のコードを使用して既に解決されているようです。こちらの同様の投稿と解決策を参照してください

Document doc = new Document();
doc.LoadFromFile(fileName);
ToPdfParameterList tpl = new ToPdfParameterList{

    UsePSCoversion = true;           
    //azure          
};  
doc.SaveToFile(resultName);
于 2017-09-28T09:51:35.640 に答える
0

大まかな推測: GAC にインストールされているか、ローカルにコピーするように設定されていない別の dll を暗黙的に参照しています。したがって、コンパイルされたコードの大部分は Azure にデプロイされますが、問題の謎の dll は Azure にデプロイされません。

于 2016-04-06T05:35:34.583 に答える
0

もう 1 つの暗い推測: http://www.e-iceblue.com/Introduce/free-pdf-component.htmlのドキュメントをチェックして、Azure での実行時に既知の問題があるかどうかを確認してください。

于 2016-04-06T05:55:31.983 に答える