xournal-convert-0.1.1: lib/Application/XournalConvert/Convert/MakeSVG.hs
{-# LANGUAGE ScopedTypeVariables #-}
module Application.XournalConvert.Convert.MakeSVG where
import Data.List
import Graphics.Xournal.Render.Simple
import Graphics.Rendering.Cairo
import Data.Xournal.Simple
import Text.Xournal.Parse
import Text.StringTemplate
import System.Directory
import System.FilePath
import System.IO
import qualified Data.ByteString.Lazy as B
import Paths_xournal_convert
makeSVGFromXournal :: Xournal -> FilePath -> FilePath
-> IO [String]
makeSVGFromXournal xojcontent fname dest = do
let fnamebase = takeBaseName fname
let pages = xoj_pages xojcontent
names = map (svgFileName fnamebase) [1..]
namePages = zip names pages
let Dim w h = page_dim (head pages)
let svgoutfn x = withSVGSurface (dest </> fst x) w h (\s -> renderWith s (cairoDrawPage (snd x)))
mapM_ svgoutfn namePages
makeHtmlJavascriptPage (dest </> "index.html") $ zip [1..] (map fst namePages)
return (map fst namePages )
render1 :: [(String,String)] -> String -> String
render1 attribs tmpl = render . setManyAttrib attribs . newSTMP $ tmpl
svgFileName :: String -> Int -> String
svgFileName fname_wo_ext pnum =
fname_wo_ext ++ "_Page_" ++ show pnum <.> "svg"
checkIfBinary :: FilePath -> IO Bool
checkIfBinary fname =
withFile fname ReadMode $ \h -> do
b <- return . B.any ( == 0 ) . B.take 100 =<< B.hGetContents h
b `seq` return b
ifThenElse :: Bool -> a -> a -> a
ifThenElse b tact fact = if b then tact else fact
onePageTemplate :: String
onePageTemplate = "<p><div class=\"page\"> <a name=\"$page$\"> <img src=\"$filename$\" width=100% /> </a> </div> </p>\n\n"
onerule :: String
onerule = "<hr /> \n"
makeHtmlJavascriptPage :: FilePath -> [(Int,String)] -> IO ()
makeHtmlJavascriptPage fname names = do
putStrLn $ "writing " ++ fname
putStrLn $ show names
templateDir <- getDataDir >>= return . (</> "template")
indexhtmlst <- readFile (templateDir </> "index.html.st")
let mkstr :: (Int,String) -> String
mkstr (p,n) = flip render1 onePageTemplate [ ("filename", "." </> n)
, ("page", show p) ]
bodystr = intercalate onerule . map mkstr $ names
let str = flip render1 indexhtmlst [ ("body", bodystr) ]
withFile fname WriteMode $ \h -> do
hPutStr h str