DjvuNet icon indicating copy to clipboard operation
DjvuNet copied to clipboard

how to convert many pages

Open Bouncue opened this issue 8 years ago • 2 comments

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);

Bouncue avatar Apr 11 '17 21:04 Bouncue

Could use multithreading however please take a look at https://github.com/DjvuNet/DjvuNet

Telavian avatar Apr 11 '17 21:04 Telavian

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

Bouncue avatar Apr 12 '17 19:04 Bouncue