para ello descomprimo el openoffice obteniendo sus xml.
Y después mediante la librería itextsharp estoy intentando hacer un paso directo a través del parseado de los xml, pero no me funciona, hago esto:
Cita:
y esto:Dim d As text.Document = New text.Document(iTextSharp.text.PageSize.A4, 38, 38, 74, 54)
iTextSharp.text.pdf.PdfWriter.GetInstance(d, New System.IO.FileStream("c:\InetPub\wwwroot\prueba.pd f", System.IO.FileMode.Create))
'Dim h As text.xml.ITextHandler = New text.xml.ITextHandler(b)
h.Parse("c:\InetPub\wwwroot\prueba.xml")
iTextSharp.text.pdf.PdfWriter.GetInstance(d, New System.IO.FileStream("c:\InetPub\wwwroot\prueba.pd f", System.IO.FileMode.Create))
'Dim h As text.xml.ITextHandler = New text.xml.ITextHandler(b)
h.Parse("c:\InetPub\wwwroot\prueba.xml")
Cita:
(para que coja los estilos)Dim d As text.Document = New text.Document(iTextSharp.text.PageSize.A4, 38, 38, 74, 54)
iTextSharp.text.pdf.PdfWriter.GetInstance(d, New System.IO.FileStream("c:\InetPub\wwwroot\prueba.pd f", System.IO.FileMode.Create))
Dim h As text.xml.ITextmyHandler = New text.xml.ITextmyHandler(b, New text.xml.TagMap("c:\inetpub\wwwroot\estilo.xml"))
h.Parse("c:\InetPub\wwwroot\prueba.xml")
iTextSharp.text.pdf.PdfWriter.GetInstance(d, New System.IO.FileStream("c:\InetPub\wwwroot\prueba.pd f", System.IO.FileMode.Create))
Dim h As text.xml.ITextmyHandler = New text.xml.ITextmyHandler(b, New text.xml.TagMap("c:\inetpub\wwwroot\estilo.xml"))
h.Parse("c:\InetPub\wwwroot\prueba.xml")
Pero ni una ni otra funciona, no marca ningún error, pero el PDF sale vacío.
Voy a intentar convertir los xml de openoffice al formato de ejemplo que dan itextsharp, pero molaría poder hacerlo de forma más directa. Alguien sabe como?
gracias