Patient demographic intake
A pdf and some code centered around improving the initial intake of patient information. This sprang from a fillable pdf provided by Dr. Sedergreen. From Chris Sedergreen - description follows - I have created a 'fillable' PDF which is attached for anyone's interest.
In my office it is e-mailed to the patient before they first arrive. At
least it allows the MOA to enter the data when she has a 'quiet' moment.
(OK, so no one's MOA's have quiet moments, but at least they can
schedule time for this activity).
- Patient demographic intake fillable pdf
- Extracting data from the Patient demograpich intake pdf file using Java
- From Darius Opensource - With iText, it is relatively trivial to extract filled-in data from PDF forms. - Instructions - Download itext-5.5.3.zip and extract itextpdf-5.5.3.jar to the desktop. Download PDFDataExtract.java to the desktop. Compile PDFDataExtract.java using the following command: javac -cp itextpdf-5.5.3.jar PDFDataExtract.java Fill in the fields of Dr. Sedergreen's "Patient Demographic Data Fillable.pdf" and save it. To extract data from the filled-in "Patient Demographic Data Fillable.pdf" to extract.txt, use the following command: On Windows: java -cp itextpdf-5.5.3.jar;. PDFDataExtract "Patient Demographic Data Fillable.pdf">extract.txt On Ubuntu: java -cp itextpdf-5.5.3.jar:. PDFDataExtract "Patient Demographic Data Fillable.pdf">extract.txt As a quick hack, PDFDataExtract.java could be rewritten as a .jsp for use on OSCAR server. Darius.
Document Actions