Can Azure run WPF?

前端 未结 3 1059
失恋的感觉
失恋的感觉 2021-02-20 06:26

I\'d like to write an ASP.Net MVC app running on Windows Azure that will create images using WPF.

Before I start writing it, will that work?
Does Azure have the nece

3条回答
  •  闹比i
    闹比i (楼主)
    2021-02-20 07:23

    Absolutely. In particular, Azure Websites (which probably weren't around at the time the other two answers were posted) can also use WPF and I use it in my applications for

    1. image processing,
    2. operations on spline paths (Geometry-related stuff in WPF) and
    3. pdf creation (via WPF xps creation from visual trees and subsequent conversion to a scalable pdf with pdfsharp).

    It's stuff like that which makes ASP.NET such a cool platform.

    The talk about GPU considerations that was raised by some people on this question is pretty irrelevant for simple image processing. I seriously doubt a GPU is even used for that when present.

提交回复
热议问题