bitmaps-0.2.5.1: src/Data/Bitmap/Array.hs
-- | Bitmaps as unboxed arrays of 32-bit RGBA pixels
--
-- These bitmaps are generally less efficient than 'BitmapString's, but can be arbitrarily
-- large (if having dimensions larger than the bound of 'Int' is really so useful), and have the advantages
-- of being stored in an array.
module Data.Bitmap.Array
( BitmapArray
, bitmapArrayToArray
, bitmapArrayToBitmapArray
) where
import Data.Array.Unboxed
import Data.Bitmap.Array.Internal
import Data.Word
bitmapArrayToArray :: BitmapArray -> UArray (Integer, Integer) Word32
bitmapArrayToArray = unwrapBitmapArray
bitmapArrayToBitmapArray :: UArray (Integer, Integer) Word32 -> BitmapArray
bitmapArrayToBitmapArray = BitmapArray