Exemple #1
0
        private GeneralInfos ReadGeneralInfos()
        {
            GeneralInfos infos = new GeneralInfos();

            infos.imgWidth  = ReadInt();
            infos.imgHeight = ReadInt();
            return(infos);
        }
Exemple #2
0
        private void ConnectToClient()
        {
            client = listener.AcceptTcpClient();
            stream = client.GetStream();

            GeneralInfos infos = ReadGeneralInfos();

            SendConfirmation();
            ReadVideo(infos);
        }
Exemple #3
0
        private async void ReadVideo(GeneralInfos infos)
        {
            while (true)
            {
                int imgSize = ReadInt();

                byte[] buffer = new byte[imgSize];
                //byte[] buffer = new byte[76800];
                //byte[] buffer = new byte[infos.imgSize];

                /*    while (imgBytes.Count < infos.imgSize)
                 *  {
                 *      int qtyToRead = Math.Min(infos.imgSize - imgBytes.Count, buffer.Length);
                 *      stream.Read(buffer, 0, qtyToRead);
                 *
                 *      byte[] pertinentData = new byte[qtyToRead];
                 *      Array.Copy(buffer, pertinentData, qtyToRead);
                 *      imgBytes.InsertRange(imgBytes.Count, pertinentData);
                 * //      Thread.Sleep(16);
                 *  }*/
                //stream.Read(buffer, 0, infos.imgSize);
                List <byte> imgBytes     = new List <byte>();
                int         bytesRead    = 0;
                int         amountToRead = 0;
                while (bytesRead < imgSize)
                {
                    int insertionIndex = bytesRead;
                    amountToRead = Math.Min(buffer.Length, imgSize - bytesRead);
                    bytesRead   += stream.Read(buffer, 0, amountToRead);
                    imgBytes.InsertRange(insertionIndex, buffer);
                    imgBytes.RemoveRange(bytesRead, imgBytes.Count - bytesRead);
                }
                imgBytes.RemoveRange(imgSize, imgBytes.Count - imgSize);

                SoftwareBitmap receivedBmp = null;// = new SoftwareBitmap(BitmapPixelFormat.Bgra8, infos.imgWidth, infos.imgHeight, BitmapAlphaMode.Premultiplied);
                //       receivedBmp.CopyFromBuffer(imgBytes.ToArray().AsBuffer());
                //receivedBmp.CopyFromBuffer(buffer.AsBuffer());

                using (IRandomAccessStream ms = imgBytes.ToArray().AsBuffer().AsStream().AsRandomAccessStream())
                {
                    BitmapDecoder decoder = await BitmapDecoder.CreateAsync(BitmapDecoder.JpegDecoderId, ms);

                    receivedBmp = await decoder.GetSoftwareBitmapAsync(BitmapPixelFormat.Bgra8, BitmapAlphaMode.Premultiplied);
                }

                pgServer.instance.SetImage(receivedBmp);

                Debug.WriteLine("Image received | len: " + infos.imgSize + " | " + buffer.Length + " | " + infos.imgWidth + " | " + infos.imgHeight);
            }
        }