A_Set_Darkness method

int A_Set_Darkness(
  1. int heat
)

A_Set_Darkness();

PURPOSE Setup the "darkness" function (heating level). SYNTAX int A_Set_Darkness(int heat); PARAMETER heat; Set heat value(0 ~ 20). Default value 10. RETURN 0 -> OK. Reference AW-Error.txt file. EXAMPLE A_Set_Darkness(12); REMARK Heat value will define the image's darkness. To get a printout with better quality, you should consider following factors i.e. media material, ribbon types(wax,semi-resin and resin) and image pattern itself.

Implementation

int A_Set_Darkness(
  int heat,
) {
  assert(heat >= 0 && heat <= 20, 'Input an heat value between 0 and 20');
  return _A_Set_Darkness(
    heat,
  );
}