Skip to main content
Language

Configure Transforms

VideoEditor SDK supports several configuration options for the TransformToolPanel allowing flexible adaptation to different needs and use cases.

Forcing specific ratios#

The default configuration includes several different crop aspect ratios users can choose from. To restrict those to specific aspect ratios only, for instance, those used by social networks (e.g. Facebook, Twitter, Instagram, Flickr), we can specify aspect ratios as CropAspectAssets and give it the desired width and height.

For the UI, we add CropAspectItems with ids matching CropAspectAssets. The CropAspectItem constructor allows using a custom name and ImageSource for further customization.

For the sake of this example, we don't add the Reset button and Free Crop since we are enforcing certain ratios.

Force crop#

VideoEditor SDK chooses the best matching aspect amongst the specified ratios for the input video. However, you can also force a specific ratio.

Here, we force the 16:9 ratio for landscape videos and the 9:16 ratio for portrait videos. However, the user can still choose from one of the specified ratios above using the TransformTool.

We also set the forceCropMode to SHOW_TOOL_ALWAYS. This ensures that the transform tool is always presented first before being able to use other features of the editor.