diff options
| author | John MacFarlane <fiddlosopher@gmail.com> | 2013-01-11 12:11:37 -0800 |
|---|---|---|
| committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-01-11 12:11:37 -0800 |
| commit | 2685ebff0f644be43d743ee327345165d43815b5 (patch) | |
| tree | 86c2cf343ae8985966644bcb4fe29be6d0e9ea71 | |
| parent | 77d9ead1b211a87aea8816f86040d269b24671c3 (diff) | |
| download | pandoc-2685ebff0f644be43d743ee327345165d43815b5.tar.gz | |
ImageSize: Use strict, not lazy bytestrings.
| -rw-r--r-- | src/Text/Pandoc/ImageSize.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Pandoc/ImageSize.hs b/src/Text/Pandoc/ImageSize.hs index d48c6a5ae..66020b4e2 100644 --- a/src/Text/Pandoc/ImageSize.hs +++ b/src/Text/Pandoc/ImageSize.hs @@ -30,8 +30,8 @@ Functions for determining the size of a PNG, JPEG, or GIF image. -} module Text.Pandoc.ImageSize ( ImageType(..), imageType, imageSize, sizeInPixels, sizeInPoints, readImageSize ) where -import Data.ByteString.Lazy (ByteString, unpack) -import qualified Data.ByteString.Lazy.Char8 as B +import Data.ByteString (ByteString, unpack) +import qualified Data.ByteString.Char8 as B import Control.Monad import Data.Bits |
