Skip to content

Transform

Image transformations in CreativeEditor SDK (CE.SDK) allow you to adjust the size, orientation, and framing of images to better fit your designs. Whether you need to crop out unnecessary areas, rotate an image for better composition, or resize assets for different outputs, transformations provide powerful tools for fine-tuning visuals.

You can perform transformations both through the built-in user interface and programmatically using the SDK’s APIs, giving you flexibility depending on your workflow.

Launch Web Demo Get Started

Available Transformations

CE.SDK supports several types of image transformations:

  • Crop: Trim an image to focus on a specific area or fit a desired aspect ratio.
  • Rotate: Rotate the image by a custom degree to adjust orientation.
  • Resize: Change the width and height independently to fit layout requirements.
  • Scale: Uniformly enlarge or reduce the size of the image while maintaining its aspect ratio.
  • Flip: Mirror the image horizontally or vertically to create a reversed version.

Each transformation can be used individually or combined for more complex edits.

Applying Transformations

UI-Based Transformation

You can apply transformations directly in the CE.SDK user interface. The editor provides intuitive controls for cropping, rotating, resizing, scaling, and flipping images. This makes it easy for users to visually adjust images without writing any code.

Programmatic Transformation

Developers can also apply transformations programmatically by interacting with the SDK’s API. This allows for dynamic image adjustments based on application logic, user input, or automated processes.

Combining Transformations

CE.SDK lets you chain multiple transformations together in a single operation. For example, you might scale an image before cropping it to ensure the best possible resolution.

When combining transformations, consider applying scaling first to avoid quality loss during cropping or rotation. Structuring transformations thoughtfully helps maintain visual clarity and optimize output quality.

Guides