Jump to content

1.13.2.0 English


Yaroslav Brovin

Recommended Posts

  • Administrators

Download:
The distributive is available by request only.

Release date:

21 November 2021


New 

TfgCamera

The new implementation of TfgCamera for iOS was added.

TfgCameraPreview

The new implementation of TfgCameraPreview for iOS was added.

TfgBarcodeScanner

The new implementation of TfgBarcodeScanner for iOS was added.

Improvements 🙌

TfgCamera

Added the ability to request the permissions required for the camera to work using the component itself TfgCamera.RequestPermission. Checking the current status of permissions TfgCamera.AuthorizationStatus.

Typical use case:

procedure TFormMain.fgFormCreate(Sender: TObject);
begin
  fgCamera1.RequestPermission;
end;

procedure TFormMain.CameraPermissionRequest(const APermissionInfo: TfgPermissionInfo);
begin
  if APermissionInfo.CheckResult = TfgPermissionCheckResult.Granted then
    fgCamera1.Active := True
  else
    // Processing errors.
end;

TfgCanvas

Added new properties DefaultScale, PhysicalWidth, PhysicalHeight.

Bug Fixes 🐛

  • Like 2
Link to comment
Share on other sites

×
×
  • Create New...