Выравнивание гистограммы живого видео в режиме swift

public void CopyStream(Stream stream, string destPath)
{
  using (var fileStream = new FileStream(destPath, FileMode.Create, FileAccess.Write))
  {
    stream.CopyTo(fileStream);
  }
}
0
задан Charlie 3 March 2019 в 22:12
поделиться