PAGE('CAMERA'…)
PAGE('CAMERA', RecordOriginal, string FieldNameOriginal, RecordResized, string FieldnameResized, int MaxWidth, int MaxHeight);
Opens the camera. Image is stored in BLOB field of a record. You can either store the original image size and/or a resized (=smaller) image to optimize synchronization speed. MaxWidth and MaxHeight is defined in pixels.
It is highly recommended to store resized pictures only. Depending on your device, large pictures may result in app crash due to insufficient memory. Too large pictures are not supported, reduce picture size in this case.
Example: PAGE('CAMERA', Contact, 'Picture');
This example shows how a picture is taken and stored in the original size.
Example: PAGE('CAMERA', '', '', Contact, 'Picture', 500, 500);
This example shows how a picture is taken and then stored in a resized format.