Add FittingMode for visual fittingMode 29/311429/1
authorsunghyun kim <scholb.kim@samsung.com>
Mon, 20 May 2024 06:15:05 +0000 (15:15 +0900)
committersunghyun kim <scholb.kim@samsung.com>
Mon, 20 May 2024 06:15:05 +0000 (15:15 +0900)
Add new type for visual fittingMode

Change-Id: I17cb51564117a1c0426052dac547d0beb944e1c2

dali/public-api/images/image-operations.h

index 353dc42..8642976 100644 (file)
@@ -67,9 +67,12 @@ enum Type
   FIT_WIDTH,     ///< Image fills whole width. Height is scaled proportionately to
                  ///  maintain aspect ratio.
                  ///  @SINCE_1_0.0
-  FIT_HEIGHT     ///< Image fills whole height. Width is scaled proportionately to
+  FIT_HEIGHT,    ///< Image fills whole height. Width is scaled proportionately to
                  ///  maintain aspect ratio.
                  ///  @SINCE_1_0.0
+  VISUAL_FITTING /// < Image is scaled to fit within the desired dimensions.
+                 ///  maintain aspect ratio.
+                 ///  @SINCE_2_3.24
 };
 const Type DEFAULT = SHRINK_TO_FIT;
 } // namespace FittingMode