wp admin includes image.php Notes - WordPress-Thinstall/wordpress-develop GitHub Wiki

interface AdminImageInterface {
    function wp_crop_image( $src, $src_x, $src_y, $src_w, $src_h, $dst_w, $dst_h, $src_abs = false, $dst_file = false );
    function wp_generate_attachment_metadata( $attachment_id, $file );
    function wp_exif_frac2dec($str);
    function wp_exif_date2ts($str);
    function wp_read_image_metadata( $file );
    function file_is_valid_image($path);
    function file_is_displayable_image($path);
    function load_image_to_edit( $attachment_id, $mime_type, $size = 'full' );
    function _load_image_to_edit_path( $attachment_id, $size = 'full' );
    function _copy_image_file( $attachment_id );
}