dongtuan5367 2019-07-19 18:32
浏览 95
已采纳

使用PHP将图像转换为WordPress中的灰度

I'm trying to customize a WordPress plugin which has a function that I wish to add the action to convert colored images to grayscale. I learned that imagefilter($image, IMG_FILTER_GRAYSCALE)does the trick. But I can't seem to get it to work.

public function stream_photo( $image_path, $src, $key, $user_id, $coord, $crop ) {
    $image = wp_get_image_editor( $image_path ); // Return an implementation that extends WP_Image_Editor

    //DEBUG
    imagefilter($image, IMG_FILTER_GRAYSCALE);

    $quality = UM()->options()->get( 'image_compression' );

    if ( ! is_wp_error( $image ) ) {
        if ( ! empty( $crop ) ) {

            if( ! is_array( $crop ) ) {
                $crop = explode(",", $crop );
            }

            $src_x = $crop[0];
            $src_y = $crop[1];
            $src_w = $crop[2];
            $src_h = $crop[3];

            $image->crop( $src_x, $src_y, $src_w, $src_h );

            $max_w = UM()->options()->get('image_max_width');
            if ( $src_w > $max_w ) {
                $image->resize( $max_w, $src_h );
            }
        }

        //DEBUG
        //echo "Image path is: " . $image_path;
        //$image = wp_load_image($image_path);
        //imagefilter($image_path, IMG_FILTER_GRAYSCALE);

        $image->save( $image_path );

        //DEBUG
        //imagefilter($image, IMG_FILTER_GRAYSCALE);

        $image->set_quality( $quality );

        //DEBUG
        //echo "Image path is: " . $image_path;
        //$image2 = wp_load_image($image_path);
        //imagefilter($image2, IMG_FILTER_GRAYSCALE);
    } else {
        wp_send_json_error( esc_js( __( "Unable to crop stream image file: {$image_path}", 'ultimate-member' ) ) );
    }
}
  • 写回答

1条回答 默认 最新

  • duanlinghe8417 2019-07-20 06:10
    关注

    The problem is this lines of code:

    $image = wp_get_image_editor( $image_path ); // Return an implementation that extends WP_Image_Editor
    
    //DEBUG
    imagefilter($image, IMG_FILTER_GRAYSCALE);
    

    wp_get_image_editor return a WP_Image_Editor object, but imagefilter require only 'image resource'. The change below should work.

    $image = wp_get_image_editor( $image_path ); // Return an implementation that extends WP_Image_Editor
    
    $im = imagecreatefrompng($image_path);
    if($im && imagefilter($im, IMG_FILTER_GRAYSCALE)){
        // Convert to grayscale
        imagefilter(imagecreatefrompng($image_path), IMG_FILTER_GRAYSCALE);
        // Save image
        imagepng($im, $image_path);
        imagedestroy($im);
    }
    

    That's for PNG, should you catch all image extension instead of PNG only.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog