Image Processing¶This tutorial explains how images can be handled and transformed with the Image class. Note All operations on an Image return a new Image. The original Image will not be changed. Load data into an Image:¶ In [1]: Copied! from safeds.data.image.containers import Image plane = Image.from_file("data/plane.png") plane from safeds.data.image.containers import Image plane = Image.from_file("data/plane.png") plane Out[1]: