b2xtranslator icon indicating copy to clipboard operation
b2xtranslator copied to clipboard

.NET Core library to convert Microsoft Office binary files (doc, xls and ppt) to Open XML (docx, xlsx and pptx).

Results 11 b2xtranslator issues
Sort by recently updated
recently updated
newest added

I keep getting this issue when I try to use this library ` var file = new FileInfo(Input); var reader = new StructuredStorageReader(file.FullName); var doc = new b2xtranslator.DocFileFormat.WordDocument(reader); var docx...

bug
help wanted
good first issue

How easy/hard would it be to add the option of going from open xml to legacy binary docs?

Hello, EvolutionJobs team. Are you planning to add a library to Nuget? it would be useful to have three separate packages - b2xtranslator.Doc, b2xtranslator.Xls, b2xtranslator.Ppt.

enhancement

``` using b2xtranslator.OpenXmlLib.PresentationML; using b2xtranslator.PptFileFormat; using b2xtranslator.PresentationMLMapping; using b2xtranslator.Shell; using b2xtranslator.StructuredStorage.Reader; using System; using System.Globalization; namespace PPTAnalysis { internal class Program { public static string ChoosenOutputFile; static void Main(string[] args)...

Using the source code to convert a file, it seems to be stuck in a while iteration and the conversion hangs. Debugging seems to show that the segment of the...

RowHeight changed to autofit, and formula lost

Document metadata streams begin with a unicode character like "\u0005DocumentSummary\0\0\0\0\0\0". In windows, if you call .IndexOf("\0") on that string, it will treat the "\u0005" as a single unmatching character and...