massiv-io 0.1.3.0 → 0.1.4.0
raw patch · 3 files changed
+4/−2 lines, 3 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Graphics.ColorSpace.Binary: Bit :: Word8 -> Bit
- Graphics.ColorSpace.Binary: newtype Bit
+ Data.Massiv.Array.IO: fromAnyDynamicImage :: (Mutable r Ix2 (Pixel cs e), ColorSpace cs e) => DynamicImage -> Maybe (Image r cs e)
+ Data.Massiv.Array.IO: fromDynamicImage :: forall cs e. (ColorSpace cs e, Source S Ix2 (Pixel cs e)) => DynamicImage -> Maybe (Image S cs e)
+ Graphics.ColorSpace.Binary: data Bit
Files
- massiv-io.cabal +1/−1
- src/Data/Massiv/Array/IO/Image/JuicyPixels.hs +2/−0
- src/Graphics/ColorSpace/Binary.hs +1/−1
massiv-io.cabal view
@@ -1,5 +1,5 @@ name: massiv-io-version: 0.1.3.0+version: 0.1.4.0 synopsis: Import/export of Image files into massiv Arrays description: This package contains functionality for import/export of arrays into the real world. For now it only has the ability to read/write
src/Data/Massiv/Array/IO/Image/JuicyPixels.hs view
@@ -65,6 +65,8 @@ , toJPImageCMYK8 -- , toJPImageCMYK16 -- ** From JuicyPixels+ , fromDynamicImage+ , fromAnyDynamicImage ) where import Prelude as P
src/Graphics/ColorSpace/Binary.hs view
@@ -15,7 +15,7 @@ -- Portability : non-portable -- module Graphics.ColorSpace.Binary (- Bit(..), on, off, isOn, isOff, fromBool, zero, one, bit2bool, bool2bit, toNum, fromNum+ Bit, on, off, isOn, isOff, fromBool, zero, one, bit2bool, bool2bit, toNum, fromNum ) where import Control.Applicative