Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- data Image
- imageWidth :: Image -> Int
- imageHeight :: Image -> Int
- emptyImage :: Image
- char :: Attr -> Char -> Image
- string :: Attr -> String -> Image
- iso10646String :: Attr -> String -> Image
- utf8String :: Attr -> [Word8] -> Image
- text :: Attr -> Text -> Image
- text' :: Attr -> Text -> Image
- backgroundFill :: Int -> Int -> Image
- utf8Bytestring :: Attr -> ByteString -> Image
- utf8Bytestring' :: Attr -> ByteString -> Image
- charFill :: Integral d => Attr -> Char -> d -> d -> Image
- horizJoin :: Image -> Image -> Image
- (<|>) :: Image -> Image -> Image
- vertJoin :: Image -> Image -> Image
- (<->) :: Image -> Image -> Image
- horizCat :: [Image] -> Image
- vertCat :: [Image] -> Image
- crop :: Int -> Int -> Image -> Image
- cropRight :: Int -> Image -> Image
- cropLeft :: Int -> Image -> Image
- cropBottom :: Int -> Image -> Image
- cropTop :: Int -> Image -> Image
- pad :: Int -> Int -> Int -> Int -> Image -> Image
- resize :: Int -> Int -> Image -> Image
- resizeWidth :: Int -> Image -> Image
- resizeHeight :: Int -> Image -> Image
- translate :: Int -> Int -> Image -> Image
- translateX :: Int -> Image -> Image
- translateY :: Int -> Image -> Image
- safeWcwidth :: Char -> Int
- safeWcswidth :: String -> Int
- wcwidth :: Char -> Int
- wcswidth :: String -> Int
- type DisplayText = Text
- type DisplayRegion = (Int, Int)
- regionWidth :: DisplayRegion -> Int
- regionHeight :: DisplayRegion -> Int
Images
This is the internal representation of Images. Use the constructors in Graphics.Vty.Image to create instances.
Images are:
- a horizontal span of text
- a horizontal or vertical join of two images
- a two dimensional fill of the
Picture
s background character - a cropped image
- an empty image of no size or content.
Instances
imageWidth :: Image -> Int Source #
The width of an Image. This is the number display columns the image will occupy.
imageHeight :: Image -> Int Source #
The height of an Image. This is the number of display rows the image will occupy.
Image constructors
emptyImage :: Image Source #
The empty image. Useful for fold combinators. These occupy no space and do not affect display attributes.
char :: Attr -> Char -> Image Source #
Make an image from a single character. This is a standard Haskell 31-bit character assumed to be in the ISO-10646 encoding.
string :: Attr -> String -> Image Source #
This is an alias for iso10646String since the usual case is that a literal string like "foo" is represented internally as a list of ISO 10646 31 bit characters. This function should not be given a string containing escapes.
Note: Keep in mind that GHC will compile source encoded as UTF-8 but the literal strings, while UTF-8 encoded in the source, will be transcoded to a ISO 10646 31 bit characters runtime representation.
iso10646String :: Attr -> String -> Image Source #
Make an image from a string of characters layed out on a single row with the same display attribute. The string is assumed to be a sequence of ISO-10646 characters. This function should not be given a string containing escapes.
Note: depending on how the Haskell compiler represents string literals, a string literal in a UTF-8 encoded source file, for example, may be represented as a ISO-10646 string. That is, I think, the case with GHC 6.10. This means, for the most part, you don't need to worry about the encoding format when outputting string literals. Just provide the string literal directly to iso10646String or string.
utf8String :: Attr -> [Word8] -> Image Source #
Make an Image
from a string of characters layed out on a single
row. The input is assumed to be the bytes for UTF-8 encoded text.
text :: Attr -> Text -> Image Source #
Make an Image
from a lazy text value. This function should not be
given a text value containing escapes.
text' :: Attr -> Text -> Image Source #
Make an Image
from a text value. This function should not be
given a text value containing escapes.
An area of the picture's background (See Background
).
utf8Bytestring :: Attr -> ByteString -> Image Source #
Make an Image
from a UTF-8 encoded lazy bytestring.
utf8Bytestring' :: Attr -> ByteString -> Image Source #
Make an Image
from a UTF-8 encoded lazy bytestring.
:: Integral d | |
=> Attr | The attribute to use. |
-> Char | The character to use in filling the region. |
-> d | The region width. |
-> d | The region height. |
-> Image |
Make an image filling a region with the specified character.
If either the width or height are less than or equal to 0, then the result is the empty image.
Combinators
horizJoin :: Image -> Image -> Image Source #
combines two images side by side
Combines text chunks where possible. Assures outputWidth and outputHeight properties are not violated.
The result image will have a width equal to the sum of the two images width. And the height will equal the largest height of the two images. The area not defined in one image due to a height missmatch will be filled with the background pattern.
(<|>) :: Image -> Image -> Image infixr 5 Source #
Combines two images horizontally. This is an alias for horizJoin
.
infixr 5
vertJoin :: Image -> Image -> Image Source #
combines two images vertically
The result image will have a height equal to the sum of the heights of both images. The width will equal the largest width of the two images. The area not defined in one image due to a width missmatch will be filled with the background pattern.
(<->) :: Image -> Image -> Image infixr 4 Source #
Combines two images vertically. This is an alias for vertJoin
.
infixr 4
horizCat :: [Image] -> Image Source #
Compose any number of images together horizontally, with the first in the list being leftmost.
vertCat :: [Image] -> Image Source #
Compose any number of images vertically, with the first in the list being topmost.
Image modifications
Ensure an image is no larger than the provided size. If the image is larger then crop the right or bottom.
This is equivalent to a vertical crop from the bottom followed by horizontal crop from the right.
cropRight :: Int -> Image -> Image Source #
Crop an image's width. If the image's width is less than or equal to the specified width then this operation has no effect. Otherwise the image is cropped from the right.
cropLeft :: Int -> Image -> Image Source #
Crop an image's width. If the image's width is less than or equal to the specified width then this operation has no effect. Otherwise the image is cropped from the left.
cropBottom :: Int -> Image -> Image Source #
Crop an image's height. If the image's height is less than or equal to the specified height then this operation has no effect. Otherwise the image is cropped from the bottom.
cropTop :: Int -> Image -> Image Source #
Crop an image's height. If the image's height is less than or equal to the specified height then this operation has no effect. Otherwise the image is cropped from the top.
:: Int | How much padding to add to the left side of the image. |
-> Int | How much padding to add to the top of the image. |
-> Int | How much padding to add to the right side of the image. |
-> Int | How much padding to add to the bottom of the image. |
-> Image | The image to pad. |
-> Image |
Pad the given image. This adds background character fills to the left, top, right, bottom.
resize :: Int -> Int -> Image -> Image Source #
Generic resize. Pads and crops are added to ensure that the resulting image matches the specified dimensions. This is biased to pad/crop the right and bottom.
resizeWidth :: Int -> Image -> Image Source #
Resize the width. Pads and crops as required to assure the given display width. This is biased to pad/crop on the right.
resizeHeight :: Int -> Image -> Image Source #
Resize the height. Pads and crops as required to assure the given display height. This is biased to pad/crop on the bottom.
:: Int | The horizontal translation offset (can be negative) |
-> Int | The vertical translation offset (can be negative) |
-> Image | The image to translate. |
-> Image |
Translates an image by padding or cropping the left and top.
If translation offsets are negative then the image is cropped.
translateX :: Int -> Image -> Image Source #
Translates an image by padding or cropping its left side.
Character width functions
safeWcwidth :: Char -> Int Source #
Returns the display width of a character. Assumes all characters with unknown widths are 0 width.
safeWcswidth :: String -> Int Source #
Returns the display width of a string. Assumes all characters with unknown widths are 0 width.
Display Regions
type DisplayText = Text Source #
A display text is a Data.Text.Lazy
type DisplayRegion = (Int, Int) Source #
A region of the display (first width, then height)
regionWidth :: DisplayRegion -> Int Source #
regionHeight :: DisplayRegion -> Int Source #