Changeset 22619 for trunk/wp-includes/class-wp-image-editor-gd.php
- Timestamp:
- 11/16/2012 10:02:21 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-image-editor-gd.php
r22538 r22619 26 26 27 27 /** 28 * Checks to see if current environment supports GD 28 * Checks to see if current environment supports GD. 29 29 * 30 30 * @since 3.5.0 … … 41 41 42 42 /** 43 * Loads image from $this->file into new GD Resource 44 * 45 * @since 3.5 43 * Loads image from $this->file into new GD Resource. 44 * 45 * @since 3.5.0 46 46 * @access protected 47 47 * … … 73 73 74 74 /** 75 * Sets or updates current image size 75 * Sets or updates current image size. 76 76 * 77 77 * @since 3.5.0 … … 92 92 93 93 /** 94 * Checks to see if editor supports mime-type specified94 * Checks to see if editor supports the mime-type specified. 95 95 * 96 96 * @since 3.5.0 … … 108 108 /** 109 109 * Resizes current image. 110 * Wrapper around _resize, since _resize returns a GD Resource 110 * Wraps _resize, since _resize returns a GD Resource. 111 * 112 * @since 3.5.0 113 * @access public 111 114 * 112 115 * @param int $max_w … … 153 156 * Processes current image and saves to disk 154 157 * multiple sizes from single source. 158 * 159 * @since 3.5.0 160 * @access public 155 161 * 156 162 * @param array $sizes { {width, height}, ... } … … 193 199 * @param int $dst_w Optional. The destination width. 194 200 * @param int $dst_h Optional. The destination height. 195 * @param int$src_abs Optional. If the source crop points are absolute.201 * @param boolean $src_abs Optional. If the source crop points are absolute. 196 202 * @return boolean|WP_Error 197 203 */ … … 251 257 252 258 /** 253 * Flips current image 259 * Flips current image. 260 * 261 * @since 3.5.0 262 * @access public 254 263 * 255 264 * @param boolean $horz Horizonal Flip … … 278 287 279 288 /** 280 * Saves current in-memory image to file 289 * Saves current in-memory image to file. 290 * 291 * @since 3.5.0 292 * @access public 281 293 * 282 294 * @param string $destfilename … … 336 348 337 349 /** 338 * Returns stream of current image 350 * Returns stream of current image. 351 * 352 * @since 3.5.0 353 * @access public 339 354 * 340 355 * @param string $mime_type
Note: See TracChangeset
for help on using the changeset viewer.