wp_save_image_file [ WordPress Function ]
wp_save_image_file ( $filename, $image, $mime_type, $post_id )
| Defined at: |
|
Soorgelijke functies: wp_save_image, _copy_image_file, wp_stream_image, wp_restore_image, wp_load_image
No description yet.
Source
<?php
function wp_save_image_file($filename, $image, $mime_type, $post_id) {
$image = apply_filters('image_save_pre', $image, $post_id);
$saved = apply_filters('wp_save_image_file', null, $filename, $image, $mime_type, $post_id);
if ( null !== $saved )
return $saved;
switch ( $mime_type ) {
case 'image/jpeg':
return imagejpeg( $image, $filename, apply_filters( 'jpeg_quality', 90, 'edit_image' ) );
case 'image/png':
return imagepng($image, $filename);
case 'image/gif':
return imagegif($image, $filename);
default:
return false;
}
}
?>
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- wp_save_image_file Wordpress hook details -- Adam Brown, BYU ...
Detailed information about every action hook and filter used in WordPress. Makes Plugin API easier to use. Lists appearance, file location, and deprecation data ...
adambrown.info - wp_save_image_file | A HitchHackers guide through WordPress
Feb 12, 2011 ... function wp_save_image_file($filename, $image, $mime_type, $post_id) { $ image = apply_filters('image_save_pre', $image, $post_id); ...
hitchhackerguide.com - wp_save_image_file
Function and Method Cross Reference. wp_save_image_file(). Defined at: /wp- admin/includes/image-edit.php -> line 218. Referenced 1 times: ...
phpxref.ftwr.co.uk - wp_save_image (WordPress Function) - WPSeek.com
Similar Functions: wp_save_image_file, wp_stream_image, wp_load_image, wp_restore_image, wp_crop_image. Get short description ... Loading .
wpseek.com