DjvuNet
DjvuNet copied to clipboard
how to convert many pages
How to manipulate this usage code to convert many pages at once?
DjvuDocument doc = new DjvuDocument(@"Mcguffey's_Primer.djvu");
var page = doc.Pages[0];
page .BuildPageImage() .Save("TestImage1.png", ImageFormat.Png);
page.IsInverted = true;
page .BuildPageImage() .Save("TestImage2.png", ImageFormat.Png);
Could use multithreading however please take a look at https://github.com/DjvuNet/DjvuNet
it is seems like more complicated than yours here https://github.com/Telavian/DjvuNet
thats why I prefer to use that simple one
I do not understand how to build this https://github.com/DjvuNet/DjvuNet
can anyone create video tutorial step by step how to build it