Lines Matching refs:im
69 $im = new imagick($this->getSourceFilepath()."[0]");
73 $im->setResolution(300, 300);
74 $im->setCompressionQuality(95);
75 $im->setImageFormat('jpeg');
78 $im->writeImage($this->getTargetFilepath());
79 $im->clear();
80 $im->destroy();
83 $im = new imagick($this->getTargetFilepath());
84 $im->thumbnailImage($this->getTargetMaxDimension(),$this->getTargetMaxDimension(),true,false);
85 $im->writeImage($this->getTargetFilepath());
86 $im->clear();
87 $im->destroy();
104 $im = new imagick( $this->getSourceFilepath() );
105 $im->thumbnailImage($this->getTargetMaxDimension(),$this->getTargetMaxDimension(),true,false);
106 $im->writeImage($this->getTargetFilepath());
107 $im->clear();
108 $im->destroy();