Example #1
0
    public void OutputBitmap(string fileName, Bitmap bmp)
    {
        GraphicsService graphicsService = new GraphicsService();

        uint[] uintArray = graphicsService.ConvertBitmapToUintArray(bmp);
        OutputUintArray(fileName, uintArray);
    }