ZUCheema

Results 10 comments of ZUCheema

Same with me. Any fixes?

try to set selectedHandleDiameterMultiplier=1.0

@romaHerman , 16*18 = 288 which is constant factor. We can easily calculate custom aspect ratio for needed dimensions. Here's an example for aspect ratio 16/9 or 1920x1080 dimension video....

The setAspectRatio function doesn't really seem aspect ratio here. Setting it 1.0/1.0 will generate a video with 288x288 dimension. Its dimension factor instead of aspect ratio and we manually need...

running the operation on Global queue will resolve the issue. The merge operation is called on main thread by default.

memory issue still there even in Global queue.

You can edit the code and disable touch events in PaintView class. ``` override fun onTouchEvent(event: MotionEvent): Boolean { paintViewListener.onTouchEvent(event) // motionTouchEventX = event.x // motionTouchEventY = event.y // when...

set canvas background color transparent in your fragment class. ``` canvas.setBackgroundColor( ContextCompat.getColor( requireContext(), android.R.color.transparent ) ) ``` The also set PaintView background color in CanvasEditorView class: ` mPaintView.setBackgroundColor(ContextCompat.getColor(context, android.R.color.transparent)) `

since this library is just drawing bitmap/paths on a canvas and canvas isn't editable, we need a floating edittext above canvas and add it as image(by taking view's screenshot) to...