根据长度分隔字节并将字节转换为ascii

时间:2012-05-07 22:49:37

标签: c# arrays multidimensional-array byte

我用Google搜索并搜索了很多内容,无法找到我需要的答案。我需要找到一种方法将长字节分成512位长字节的数组。我正在使用的代码:

 System.Drawing.Image newimg = System.Drawing.Image.FromFile(image.jpg);
            byte[] size = new byte[];
            MemoryStream ms = new MemoryStream();
            newimg.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
            size = Encoding.ASCII.GetBytes(ms.ToArray());

现在我要做的是将其拆分为512位,但首先我需要找到一种方法将字节编码为ASCII,然后将其拆分。我对字节很新,所以请原谅我,如果这段代码非常错误和草率。

0 个答案:

没有答案