我正在尝试使用iTextSharp 5.5.9将HTML转换为PDF。在我的HTML中,我隐藏了一些包含在表 Could not deduce (m ~ MaybeT m)
from the context (Monad m)
bound by the type signature for
lift :: Monad m => m a -> MaybeT m a
at MaybeTrans.hs:16:9-53
`m' is a rigid type variable bound by
the type signature for lift :: Monad m => m a -> MaybeT m a
Expected type: MaybeT m a
Actual type: m a
In the first argument of `(>>=)', namely `m'
In the expression: m >>= \ a -> MaybeT $ return (Just a)
In an equation for `lift':
lift m = m >>= \ a -> MaybeT $ return (Just a)
中的元素并设置了样式div
。 E.g。
display:none;
转换的PDF显示所有元素,不会隐藏隐藏的元素。
有没有人有任何解决方法?
答案 0 :(得分:0)
不幸的是,iTextSharp似乎并不支持"可见性:隐藏"无论是。我现在正在测试evopdf,从他们的演示看来,可见性选项似乎是支持(显示:无;不在那里工作)