computers are real bad. it dithers now and it actually does work (tho looks not so great with the P1) - potential for using more dithering algos in the future due to the AForge.Imaging lib

This commit is contained in:
Maff 2019-10-04 21:31:28 +01:00
parent 85ff23a1f9
commit d9295de186
1 changed files with 4 additions and 2 deletions

View File

@ -38,10 +38,12 @@ namespace libpaperang.Interfaces {
public short BasePrintDelay {
get {
switch(PrinterVariant) {
//A delay when actually -printing- is necessary; moreso with the P2 model, as higher DPI means more packets for the same physical length of paper
// and when faced with a print data buffer exhaustion, the printer will simply discard what's in the buffer and start printing whatever data is received after
case BaseTypes.Model.P1:
return 80;
return 100;
case BaseTypes.Model.P2:
return 140;
return 170;
default:
throw new InvalidOperationException();
}