bottomPixels = $bottomPixels; } /** * @return int */ public function getBottomPixels() { return $this->bottomPixels; } /** * The number of pixels to crop from the left. The default is 0. * * @param int $leftPixels */ public function setLeftPixels($leftPixels) { $this->leftPixels = $leftPixels; } /** * @return int */ public function getLeftPixels() { return $this->leftPixels; } /** * The number of pixels to crop from the right. The default is 0. * * @param int $rightPixels */ public function setRightPixels($rightPixels) { $this->rightPixels = $rightPixels; } /** * @return int */ public function getRightPixels() { return $this->rightPixels; } /** * The number of pixels to crop from the top. The default is 0. * * @param int $topPixels */ public function setTopPixels($topPixels) { $this->topPixels = $topPixels; } /** * @return int */ public function getTopPixels() { return $this->topPixels; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Crop::class, 'Google_Service_Transcoder_Crop');