Skip to content Skip to sidebar Skip to footer

Firemonkey Camera Component Is Too Slow

I'm having an issue with TCameraComponent on Android. On the first time that I run the app, the camera is ok, but if I stop the TCameraComponent and start it again, the camera gets

Solution 1:

It seems that when I start the camera for the second time, it gets the high quality, so I just forced the component to change the quality and worked:

CameraComponent1.Quality := FMX.Media.TVideoCaptureQuality.highQuality;
CameraComponent1.Quality := FMX.Media.TVideoCaptureQuality.MediumQuality;

Post a Comment for "Firemonkey Camera Component Is Too Slow"