capacitor-plugin-camera-forked 3.0.113 → 3.0.114
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +0 -0
- package/android/src/main/assets/blur_detection_model.tflite +0 -0
- package/android/src/main/java/com/tonyxlh/capacitor/camera/BlurDetectionHelper.java +0 -0
- package/android/src/main/java/com/tonyxlh/capacitor/camera/CameraPreviewPlugin.java +1 -0
- package/ios/Plugin/BlurDetectionHelper.swift +0 -0
- package/ios/Plugin/PreviewView.swift +0 -0
- package/ios/Plugin/ScanRegion.swift +0 -0
- package/ios/Plugin/TestTFLite.swift +0 -0
- package/ios/Plugin/blur_detection_model.tflite +0 -0
- package/package.json +1 -1
package/LICENSE
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -130,6 +130,7 @@ public class CameraPreviewPlugin extends Plugin {
|
|
|
130
130
|
|
|
131
131
|
previewView = new PreviewView(getContext());
|
|
132
132
|
previewView.setScaleType(PreviewView.ScaleType.FIT_CENTER);
|
|
133
|
+
previewView.setBackgroundColor(Color.TRANSPARENT);
|
|
133
134
|
FrameLayout.LayoutParams cameraPreviewParams = new FrameLayout.LayoutParams(
|
|
134
135
|
FrameLayout.LayoutParams.MATCH_PARENT,
|
|
135
136
|
FrameLayout.LayoutParams.MATCH_PARENT
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED