Create Mobi file for Amazon Kindle. This library is able to create Mobi file easilly in .NET & .NET Core Applications.
dotnet add package Kindlegen
or
Install-Package Kindlegen
Console.Write("Write your .opf .htm .html .epub .zip or directory path: ");
string path = Console.ReadLine();
var result = KindleConverter.Create(path)
.SetCompressionLevel(CompressionLevel.NoCompression)
.SetOutput("test.mobi")
.Convert();
if (!result.IsSuccess)
{
string message = result.Details.FirstOrDefault(x => x.ConvertLogType == ConvertLogType.Error)?.Message;
Console.WriteLine($"Has exception: {message}");
}
else
{
Console.WriteLine("Complete successfully");
}
- Unit Testing
- More Examples
This project is licensed under the MIT Lıcense