Borodar.ReorderableList.Internal.ReorderableListResources.GetImageSize C# (CSharp) Метод

GetImageSize() приватный статический Метод

Read width and height if PNG file in pixels.
private static GetImageSize ( byte imageData, int &width, int &height ) : void
imageData byte PNG image data.
width int Width of image in pixels.
height int Height of image in pixels.
Результат void
        private static void GetImageSize(byte[] imageData, out int width, out int height)
        {
            width = ReadInt(imageData, 3 + 15);
            height = ReadInt(imageData, 3 + 15 + 2 + 2);
        }