Complete the code to set the image fill mode to crop in Figma.
image.fillMode = '[1]'
Setting fillMode to crop ensures the image is cropped to fit the frame.
Complete the code to set the image fill mode to fill the frame without distortion.
image.fillMode = '[1]'
Setting fillMode to fit scales the image to fit inside the frame without distortion.
Fix the error in the code to correctly set the image fill mode to tile.
image.fillMode = '[1]'
The tile mode repeats the image to fill the frame.
Fill both blanks to set the image fill mode to stretch and set the opacity to 50%.
image.fillMode = '[1]' image.opacity = [2]
Setting fillMode to stretch distorts the image to fill the frame. Setting opacity to 0.5 makes the image 50% transparent.
Fill all three blanks to set the image fill mode to fit, set opacity to 75%, and set the image rotation to 90 degrees.
image.fillMode = '[1]' image.opacity = [2] image.rotation = [3]
Setting fillMode to fit scales the image inside the frame without distortion. Opacity 0.75 means 75% visible. Rotation 90 rotates the image clockwise by 90 degrees.