var fDesc=new Array(); fDesc[0] = "IDPhoto Processor is the utility for batch processing of ID photos. Identification card production process requires the source images of predefined format complied with identification photo requirements.
Having got a number of source photos of different size and format on input, IDPhoto Processor does the following:

- opens each photo from source folder,
- automatically detects a face on the photo,
- crops the photo with predefined proportions and margins if the face was found,
- resizes the photo,
- saves the result in the destination folder."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }