search
Homephp教程PHP源码将jpg压缩成webp格式的图片


<?php
/**
 * Created by PhpStorm.
 * User: liuft
 * Date: 2016/1/22
 * Time: 11:51
 */

date_default_timezone_set(&#39;PRC&#39;);


/**
 * jpg压缩成webp格式
 * @param string $dir [webp图片的存储路径]
 * @param int $n [压缩图片的张数]
 * @param int $prefix [图片名称的后缀]
 * @param int $type [裁剪图片的类型]
 */
function start_multi_jpg_transform_webp($dir = &#39;&#39;, $n = 1, $prefix = &#39;_a&#39;, $type = 6)
{
    global $jpg_dir;
    if (!is_dir($dir)) {
        mkdir($dir, 0755);
        chmod($dir, 0755);
    }
    if (strrchr($jpg_dir, &#39;/&#39;) != &#39;/&#39;) {

        $jpg_dir = $jpg_dir . &#39;/&#39;;
    }
    if (strrchr($dir, &#39;/&#39;) != &#39;/&#39;) {

        $dir = $dir . &#39;/&#39;;
    }
    for ($j = 1; $j <= $n; $j++) {
        $file_name = $jpg_dir . $j . &#39;.jpg&#39;;//要裁剪的图片
        $new_jpg_path = $dir . $j . &#39;_&#39; . $prefix;//新的图片路径
        createImg($file_name, $new_jpg_path . &#39;.jpg&#39;, $type, 0);//裁剪生成jpg图片
        //生成webp格式的图片
        $new_q = 0;
        $m = 0;
        for ($i = 11; $i getImageGeometry();
            if ($size[&#39;width&#39;] > $size[&#39;height&#39;]) {
                $left = round(($size[&#39;width&#39;] - $size[&#39;height&#39;]) / 2);
                $resource->cropImage($size[&#39;height&#39;], $size[&#39;height&#39;], $left, 0);
            } else if ($size[&#39;width&#39;] < $size[&#39;height&#39;]) {

                $top = round(($size[&#39;height&#39;] - $size[&#39;width&#39;]) / 2);
                $resource->cropImage($size[&#39;width&#39;], $size[&#39;width&#39;], 0, $top);
            }

            if ($type == 1) {
                $resource->resizeImage(210, 210, Imagick::FILTER_CATROM, 1.0, true);
            } elseif ($type == 2) {
                $resource->resizeImage(720, 268, Imagick::FILTER_CATROM, 1.0, true);
            } elseif ($type == 3) {
                $resource->resizeImage(298, 198, Imagick::FILTER_CATROM, 1.0, true);
            } elseif ($type == 4) {
                $resource->resizeImage(338, 365, Imagick::FILTER_CATROM, 1.0, true);
            } elseif ($type == 5) {
                $resource->resizeImage(425, 425, Imagick::FILTER_CATROM, 1.0, true);
            } elseif ($type == 6) {
                $resource->resizeImage(150, 150, Imagick::FILTER_CATROM, 1.0, true);
            } elseif ($type == 7) {
                $resource->resizeImage(640, 640, Imagick::FILTER_CATROM, 1.0, true);
            } elseif ($type == 8) {
                $resource->resizeImage(32, 32, Imagick::FILTER_CATROM, 1.0, true);
            }
        } catch (Exception $e) {
            echo $e->getMessage();
            exit;
        }
    }

    $resource->setImageCompression(Imagick::COMPRESSION_JPEG);
    $current = $resource->getImageCompressionQuality();
    if ($is_compression) {
        $resource->setImageCompressionQuality($current);//压缩质量
    }
    if (!empty($new_jpg_filename_path)) {
        $jpg_file_name_path = $new_jpg_filename_path;
    }
    $resource->writeImage($jpg_file_name_path);
    $resource->clear();
    $resource->destroy();


}

/**
 * jpg格式转换成webp格式
 * @param $jpg_img_path [jpg图片的真实路径]
 * @param $webp_img_path [webp图片的真实路径]
 * @param int $q [图片的压缩质量]
 */
function do_jpg_transform_webp($jpg_img_path, $webp_img_path, $q = 65)
{
    exec("cwebp -q {$q} {$jpg_img_path} -o $webp_img_path");
}


/**
 * 获取图片的质量
 * @param $fileName [图片的具体路径]
 * @return int[图片的质量]
 */
function get_img_quality($fileName)
{
    $resource = new Imagick($fileName);
    $resource->setImageCompression(Imagick::COMPRESSION_JPEG);
    $current = $resource->getImageCompressionQuality();
    $resource->clear();
    $resource->destroy();
    if (empty($current)) {
        $current = 65;
    }
    $resource->clear();
    $resource->destroy();
    return $current;

}


//调用方式
//原始图片,连续用数字命名 !如 1~10张图片,就1.jpg~10.jpg
$jpg_dir = &#39;./image/&#39;;//[准备压缩的jpg图片路径,必须设置!] 
//压缩出webp格式的图片
start_multi_jpg_transform_webp(&#39;./webp&#39;, 1, &#39;_a&#39;, 0);
start_multi_jpg_transform_webp(&#39;./webp1&#39;, 1, &#39;_a&#39;, 1);
start_multi_jpg_transform_webp(&#39;./webp2&#39;, 1, &#39;_a&#39;, 2);
start_multi_jpg_transform_webp(&#39;./webp3&#39;, 1, &#39;_a&#39;, 3);

                   

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.