Customizing Helper Classes ========================== To customize a helper class (e.g. [[yii\imagine\Image]]), you should create a new class extending from the helper corresponding base class (e.g. [[yii\imagine\BaseImage]]) and name your class the same as the corresponding concrete class (e.g. [[yii\imagine\Image]]), including its namespace. This class will then be set up to replace the original implementation of the framework. The following example shows how to customize the [[yii\imagine\Image::autorotate()|autorotate()]] method of the [[yii\imagine\Image]] class: ```php