diff --git a/djvu.c b/djvu.c index 7772c41f1..fa882c462 100644 --- a/djvu.c +++ b/djvu.c @@ -99,7 +99,8 @@ static int openDocument(lua_State *L) { } ddjvu_format_set_row_order(doc->pixelformat, 1); ddjvu_format_set_y_direction(doc->pixelformat, 1); - ddjvu_format_set_ditherbits(doc->pixelformat, 4); + /* dithering bits <8 are ignored by djvulibre */ + /* ddjvu_format_set_ditherbits(doc->pixelformat, 4); */ return 1; }