溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

.Net開發(fā)微信公眾平臺(tái)之處理圖片的示例分析

發(fā)布時(shí)間:2021-09-13 09:50:11 來源:億速云 閱讀:119 作者:小新 欄目:移動(dòng)開發(fā)

這篇文章主要為大家展示了“.Net開發(fā)微信公眾平臺(tái)之處理圖片的示例分析”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“.Net開發(fā)微信公眾平臺(tái)之處理圖片的示例分析”這篇文章吧。

舉個(gè)例子,有人對(duì)著我們的公共微信號(hào)拍個(gè)照片發(fā)送過來,然后我們處理這個(gè)照片,比如進(jìn)行ocr識(shí)別字(隨后就會(huì)降到這個(gè)例子),或者人臉識(shí)別,或者拍照取證等,這些功能都是相當(dāng)有用的。那么我們現(xiàn)在就要分析一下這個(gè)過程。微信平臺(tái)肯定不能幫助我們OCR或者人臉識(shí)別等功能,要做這些功能首先到得到圖片!用戶拍攝的照片首先被上傳到了wenxin的服務(wù)器,然后就有了一個(gè)mediaID,我們用這個(gè)mediaID可以下載到我們自己的服務(wù)器上然后處理,把結(jié)果給微信平臺(tái),由微信平臺(tái)最終反饋給用戶(關(guān)注者)。微信的開發(fā)文檔已經(jīng)給出了下載資源的辦法,我改造為.net的,如下:

/// <summary>
  /// 下載保存多媒體文件,返回多媒體保存路徑
  /// </summary>
  /// <param name="ACCESS_TOKEN"></param>
  /// <param name="MEDIA_ID"></param>
  /// <returns></returns>
  public string GetMultimedia(string ACCESS_TOKEN, string MEDIA_ID)
  {
    string file = string.Empty;
    string content = string.Empty;
    string strpath = string.Empty;
    string savepath = string.Empty;
    string stUrl = "http://file.api.weixin.qq.com/cgi-bin/media/get?access_token=" + ACCESS_TOKEN + "&media_id=" + MEDIA_ID;

    HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(stUrl);

    req.Method = "GET";
    using (WebResponse wr = req.GetResponse())
    {
      HttpWebResponse myResponse = (HttpWebResponse)req.GetResponse();

      strpath = myResponse.ResponseUri.ToString();
      WriteLog("接收類別://" + myResponse.ContentType);
      WebClient mywebclient = new WebClient();
      savepath = Server.MapPath("image") + "\\" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + (new Random()).Next().ToString().Substring(0, 4) + ".jpg";
      WriteLog("路徑://" + savepath);
      try
      {
        mywebclient.DownloadFile(strpath, savepath);
        file = savepath;
      }
      catch (Exception ex)
      {
        savepath = ex.ToString();
      }

    }
    return file;
  }

上面的兩個(gè)參數(shù)很好理解,第一就是ACCESS_TOKEN,之前說過很多了,第二就是在微信服務(wù)器上的資源id,即mediaID。如果我們要下載微信服務(wù)器上的資源總要知道id吧。但是MEDIA_ID又是怎么產(chǎn)生的呢?我首先改造一下之前的消息實(shí)體類,加入MediaId 屬性

 class wxmessage 
  { 
    public string FromUserName { get; set; } 
    public string ToUserName { get; set; } 
    public string MsgType { get; set; } 
    public string EventName { get; set; } 
    public string Content { get; set; }
    public string Recognition { get; set; }
    public string MediaId { get; set; }
    public string EventKey { get; set; } 
  }

然后改造一下GetWxMessage(),給MediaId賦值。

private wxmessage GetWxMessage()
   {
     wxmessage wx = new wxmessage();
     StreamReader str = new StreamReader(Request.InputStream, System.Text.Encoding.UTF8);
     XmlDocument xml = new XmlDocument();
     xml.Load(str);
     wx.ToUserName = xml.SelectSingleNode("xml").SelectSingleNode("ToUserName").InnerText;
     wx.FromUserName = xml.SelectSingleNode("xml").SelectSingleNode("FromUserName").InnerText;
     wx.MsgType = xml.SelectSingleNode("xml").SelectSingleNode("MsgType").InnerText;
     if (wx.MsgType.Trim() == "text")
     {
       wx.Content = xml.SelectSingleNode("xml").SelectSingleNode("Content").InnerText;
     }
     if (wx.MsgType.Trim() == "event")
     {
       wx.EventName = xml.SelectSingleNode("xml").SelectSingleNode("Event").InnerText;
       wx.EventKey = xml.SelectSingleNode("xml").SelectSingleNode("EventKey").InnerText;
     }
     if (wx.MsgType.Trim() == "voice")
     {
       wx.Recognition = xml.SelectSingleNode("xml").SelectSingleNode("Recognition").InnerText;
     }
    if (wx.MsgType.Trim() == "image")
    {
      wx.MediaId = xml.SelectSingleNode("xml").SelectSingleNode("MediaId").InnerText;
    }
     
     return wx;
   }

如果我們?cè)谛薷囊幌孪⒔邮艿拇a,就可以做到,客戶發(fā)一個(gè)照片給微信平臺(tái),程序檢測到時(shí)圖片,然后根據(jù)MediaId,調(diào)用GetMultimedia方法把圖片下載到自己的服務(wù)器上。后面的工作嘛,你就想干什么干什么了。
剛才的例子好像是用戶(關(guān)注者),發(fā)圖片,然后通過微信平臺(tái)到我們的服務(wù)器中,還有一種情況,用戶發(fā)一個(gè)用戶名:例如“hemeng”,然后我需要調(diào)用已經(jīng)存在服務(wù)器中的hemeng頭像的圖片反饋給用戶,這怎么辦呢?如何把我們的圖片傳給微信平臺(tái),然后傳給用戶呢?我們就用到了上傳得方法:

/// <summary>
  /// 上傳多媒體文件,返回 MediaId
  /// </summary>
  /// <param name="ACCESS_TOKEN"></param>
  /// <param name="Type"></param>
  /// <returns></returns>
  public string UploadMultimedia(string ACCESS_TOKEN, string Type)
  {
    string result = "";
    string wxurl = "https://cache.yisu.com/upload/information/20201208/260/11377.jpg";(本地服務(wù)器的地址)
    WriteLog("上傳路徑:" + filepath);
    WebClient myWebClient = new WebClient();
    myWebClient.Credentials = CredentialCache.DefaultCredentials;
    try
    {
      byte[] responseArray = myWebClient.UploadFile(wxurl, "POST", filepath);
      result = System.Text.Encoding.Default.GetString(responseArray, 0, responseArray.Length);
      WriteLog("上傳result:" + result);
      UploadMM _mode = JsonHelper.ParseFromJson<UploadMM>(result);
      result = _mode.media_id;
    }
    catch (Exception ex)
    {
      result = "Error:" + ex.Message;
    }
    WriteLog("上傳MediaId:" + result);
    return result;
  }

第二個(gè)參數(shù)如果是圖片"image",可以參照微信的文檔。函數(shù)的返回值就是一個(gè)MediaId,這樣你就可以利用發(fā)送圖片的函數(shù),發(fā)給客戶了,發(fā)送圖片的函數(shù)如下:

protected string sendPicTextMessage(Msg _mode, string MediaId)
  {
    string res = string.Format(@"<xml>
                      <ToUserName><![CDATA[{0}]]></ToUserName>
                      <FromUserName><![CDATA[{1}]]></FromUserName>
                      <CreateTime>{2}</CreateTime>
                      <MsgType><![CDATA[image]]></MsgType>
                      <Image>
                      <MediaId><![CDATA[{3}]]></MediaId>
                      </Image>
                  </xml> ",
      _mode.FromUserName, _mode.ToUserName, DateTime.Now, MediaId);

    return res;
  }

以上是“.Net開發(fā)微信公眾平臺(tái)之處理圖片的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI