簡體   English   中英

壓縮通過C#套接字發送的數據?

[英]Compress the data sent via a C# socket?

我正在嘗試使用C#套接字發送圖像。 它可以工作,但是不穩定。 發送的圖像很大,並且更新非常快,這使其不時閃爍。 我正在尋找一種方法來壓縮發送的數據(如果可能)。 我正在使用此代碼:

服務器端:

System.IO.MemoryStream stream = new System.IO.MemoryStream();

// !! Code here that captures the screen !!

bitmap.Save(stream, myImageCodecInfo, myEncoderParameters);

byte[] imageBytes = stream.ToArray();
stream.Dispose();

// Send the image
clientSocket.Send(imageBytes);

// Empty the byte array?
for (int i = 0; i < imageBytes.Length; i++)
{
    imageBytes[i] = 0;
}

客戶端:

private void OnConnect(IAsyncResult ar)
{
    try
    {
        MessageBox.Show("Connected");

        //Start listening to the data asynchronously
        clientSocket.BeginReceive(byteData,
                                    0,
                                    byteData.Length,
                                    SocketFlags.None,
                                    new AsyncCallback(OnReceive),
                                    null);
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message, "Stream Error",MessageBoxButtons.OK, MessageBoxIcon.Error);
    }
}

private void OnReceive(IAsyncResult ar)
{
    try
    {
        int byteCount = clientSocket.EndReceive(ar);

        // Display the image on the pictureBox
        MemoryStream ms = new MemoryStream(byteData);
        pictureBox1.Image = Image.FromStream(ms);
        }
    catch (ArgumentException e)
    {
        //MessageBox.Show(e.Message);
    }
    clientSocket.BeginReceive(byteData,0,byteData.Length,SocketFlags.None,new AsyncCallback(OnReceive),null);
}

我最終使用了gzip。

原來,閃爍不是因為更新非常快,而是因為我設置了套接字。 它沒有發送整個圖像。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM