English 中文(简体)
使用 C# 将Thomas J Bradley 转换为 PNG 符号 Pad JSON 转换为 PNG
原标题:convert Thomas J Bradley Signature Pad JSON to PNG using C#

我正在测试" rel=“nofollow”> 由Thomas J Bradley 制作的信号帕插件, 并且能够使用 PHP 将JSON 签名转换为 PNG, 但希望能够使用 C# 将 JSON 签名转换为 PNG 。

这个叫做< a href=> https://github.com/parrots/SignatureToimageDotNet" rel=“nofollow” >SignatureToimageDotNet 的类服务,我无法工作。我应该提到,我对 ASP.NET/C# 来说是新来的。 到目前为止,我创建了一个网站在Webmatrix, 并拥有签名捕捉表, 可以将输出的 JSON 恢复到一个页面, 但无法将其转换为 PNG 图像。 我创建了一个 App_ Code 文件夹, 并将签名Toimage.cs 文件放入其中, 但我不知道怎么称呼它 。

我相信这对有ASP.NET/C#经验的人来说是微不足道的, 我希望有人这样做过或能够这样做,

最佳回答

您在创建 App_Code 文件夹时做了正确的事情, 通常人们会错过这部分。 在拨打该类时, ASP. NET Web Pages 的功能与 PHP 类似。 您在 cshtml 页面顶部创建一个代码块, 当页面加载时会执行 :

http://www.asp.net/web-pages/tutorics/i instroduction-aspnet-web-pages-2/getting-started>http://www.asp.net/web-pages/tutorics/istroduction-aspnet-web-pages-2/getting-started

根据您在请求中所做的其他工作(我需要更多的信息/代码), 我猜您可以开始使用页面顶端剃刀块内的签名图象类:

default.cshtml

@{
     if (IsPostback) {
         var sigToImg = new SignatureToImage();
         var signatureImage = sigToImg.SigJsonToImage(signatureJson);
         // do something with the image!
     }
 }

<html>
....

我知道答案是有点空洞的结尾, 但是如果你有更具体的信息, 请问我关于网页或C#如何运作的问题。

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签