php的GD库能否按百分比压缩图片?
用php的GD库压缩图片时,可以填入具体的宽和高进行压缩。那么,能否按百分比压缩呢,比如压缩为原图的90%,80%....等?
回复内容:
用php的GD库压缩图片时,可以填入具体的宽和高进行压缩。那么,能否按百分比压缩呢,比如压缩为原图的90%,80%....等?
可以啊,中午刚给朋友搞了个压缩的,
<code> <?php /*+-----------------------------------------------------------------------+*/ /*+ jpg,gif,png图片等比例压缩 +*/ /*+-----------------------------------------------------------------------+*/ class RarImag{ /** * 得到等比例缩放的长宽 */ function getNewSize($maxWidth, $maxHeight, $srcWidth, $srcHeight) { if($srcWidth > $maxWidth) { $maxWidth = $maxWidth; if($srcHeight > $maxHeight) { $maxHeight = ($srcHeight/$srcHeight) * $maxWidth; } else { $maxHeight = $srcHeight; } return array('width' => $maxWidth,'height' => $maxHeight); } if($srcHeight > $maxHeight) { $maxHeight = $maxHeight; if($srcWidth > $maxWidth) { $maxWidth = ($srcWidth/$srcHeight) * $maxHeight; } else { $maxWidth = $srcWidth; } return array('width' => $srcWidth,'height' => $maxHeight); } return array('width' => $srcWidth,'height' => $srcHeight); } /** * 等比例生成缩略图 * * @param String $srcFile 原始文件路径 * @param String $dstFile 目标文件路径 * @param Integer $maxWidth 生成的目标文件的最大宽度 * @param Integer $maxHeight 生成的目标文件的最大高度 * @return Boolean 生成成功则返回true,否则返回false */ function makeThumb($srcFile, $dstFile, $maxWidth, $maxHeight) { if ($size = getimagesize($srcFile)) { $srcWidth = $size[0]; $srcHeight = $size[1]; $mime = $size['mime']; switch ($mime) { case 'image/jpeg'; $isJpeg = true; break; case 'image/gif'; $isGif = true; break; case 'image/png'; $isPng = true; break; default: return false; break; } //header("Content-type:$mime"); $arr = $this->getNewSize($maxWidth, $maxHeight, $srcWidth, $srcHeight); $thumbWidth = $arr['width']; $thumbHeight = $arr['height']; if (isset($isJpeg) && $isJpeg) { $dstThumbPic = imagecreatetruecolor($thumbWidth, $thumbHeight); $srcPic = imagecreatefromjpeg($srcFile); imagecopyresampled($dstThumbPic, $srcPic, 0, 0, 0, 0, $thumbWidth, $thumbHeight, $srcWidth, $srcHeight); imagejpeg($dstThumbPic, $dstFile, 100); imagedestroy($dstThumbPic); imagedestroy($srcPic); return true; } elseif (isset($isGif) && $isGif) { $dstThumbPic = imagecreatetruecolor($thumbWidth, $thumbHeight); //创建透明画布 imagealphablending($dstThumbPic, true); imagesavealpha($dstThumbPic, true); $trans_colour = imagecolorallocatealpha($dstThumbPic, 0, 0, 0, 127); imagefill($dstThumbPic, 0, 0, $trans_colour); $srcPic = imagecreatefromgif($srcFile); imagecopyresampled($dstThumbPic, $srcPic, 0, 0, 0, 0, $thumbWidth, $thumbHeight, $srcWidth, $srcHeight); imagegif($dstThumbPic, $dstFile); imagedestroy($dstThumbPic); imagedestroy($srcPic); return true; } elseif (isset($isPng) && $isPng) { $dstThumbPic = imagecreatetruecolor($thumbWidth, $thumbHeight); //创建透明画布 imagealphablending($dstThumbPic, true); imagesavealpha($dstThumbPic, true); $trans_colour = imagecolorallocatealpha($dstThumbPic, 0, 0, 0, 127); imagefill($dstThumbPic, 0, 0, $trans_colour); $srcPic = imagecreatefrompng($srcFile); imagecopyresampled($dstThumbPic, $srcPic, 0, 0, 0, 0, $thumbWidth, $thumbHeight, $srcWidth, $srcHeight); imagepng($dstThumbPic, $dstFile); imagedestroy($dstThumbPic); imagedestroy($srcPic); return true; } else { return false; } } else { return false; } } } ?></code>
imagejpeg() 有一个参数可以设定压缩比例
http://php.net/manual/zh/function.imagejpeg.php

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제











PHP 8.4는 상당한 양의 기능 중단 및 제거를 통해 몇 가지 새로운 기능, 보안 개선 및 성능 개선을 제공합니다. 이 가이드에서는 Ubuntu, Debian 또는 해당 파생 제품에서 PHP 8.4를 설치하거나 PHP 8.4로 업그레이드하는 방법을 설명합니다.

CakePHP는 PHP용 오픈 소스 프레임워크입니다. 이는 애플리케이션을 훨씬 쉽게 개발, 배포 및 유지 관리할 수 있도록 하기 위한 것입니다. CakePHP는 강력하고 이해하기 쉬운 MVC와 유사한 아키텍처를 기반으로 합니다. 모델, 뷰 및 컨트롤러 gu

VS Code라고도 알려진 Visual Studio Code는 모든 주요 운영 체제에서 사용할 수 있는 무료 소스 코드 편집기 또는 통합 개발 환경(IDE)입니다. 다양한 프로그래밍 언어에 대한 대규모 확장 모음을 통해 VS Code는

CakePHP는 오픈 소스 MVC 프레임워크입니다. 이를 통해 애플리케이션 개발, 배포 및 유지 관리가 훨씬 쉬워집니다. CakePHP에는 가장 일반적인 작업의 과부하를 줄이기 위한 여러 라이브러리가 있습니다.

이 튜토리얼은 PHP를 사용하여 XML 문서를 효율적으로 처리하는 방법을 보여줍니다. XML (Extensible Markup Language)은 인간의 가독성과 기계 구문 분석을 위해 설계된 다목적 텍스트 기반 마크 업 언어입니다. 일반적으로 데이터 저장 AN에 사용됩니다

JWT는 주로 신분증 인증 및 정보 교환을 위해 당사자간에 정보를 안전하게 전송하는 데 사용되는 JSON을 기반으로 한 개방형 표준입니다. 1. JWT는 헤더, 페이로드 및 서명의 세 부분으로 구성됩니다. 2. JWT의 작업 원칙에는 세 가지 단계가 포함됩니다. JWT 생성, JWT 확인 및 Parsing Payload. 3. PHP에서 인증에 JWT를 사용하면 JWT를 생성하고 확인할 수 있으며 사용자 역할 및 권한 정보가 고급 사용에 포함될 수 있습니다. 4. 일반적인 오류에는 서명 검증 실패, 토큰 만료 및 대형 페이로드가 포함됩니다. 디버깅 기술에는 디버깅 도구 및 로깅 사용이 포함됩니다. 5. 성능 최적화 및 모범 사례에는 적절한 시그니처 알고리즘 사용, 타당성 기간 설정 합리적,
