无损裁剪图片

May 25, 2016 pm 05:14 PM

php代码:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

<?php

$image = "jiequ.jpg"; // 原图

$imgstream = file_get_contents($image);

$im = imagecreatefromstring($imgstream);

$x = imagesx($im);//获取图片的宽

$y = imagesy($im);//获取图片的高

 

// 缩略后的大小

$xx = 140;

$yy = 200;

 

if($x>$y){

//图片宽大于高

    $sx = abs(($y-$x)/2);

    $sy = 0;

    $thumbw = $y;

    $thumbh = $y;

} else {

//图片高大于等于宽

    $sy = abs(($x-$y)/2.5);

    $sx = 0;

    $thumbw = $x;

    $thumbh = $x;

  }

if(function_exists("imagecreatetruecolor")) {

  $dim = imagecreatetruecolor($yy, $xx); // 创建目标图gd2

} else {

  $dim = imagecreate($yy, $xx); // 创建目标图gd1

}

imageCopyreSampled ($dim,$im,0,0,$sx,$sy,$yy,$xx,$thumbw,$thumbh);

header ("Content-type: image/jpeg");

imagejpeg ($dim, false, 100);

?>

ログイン後にコピー
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。

ホットAIツール

Undresser.AI Undress

Undresser.AI Undress

リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover

AI Clothes Remover

写真から衣服を削除するオンライン AI ツール。

Undress AI Tool

Undress AI Tool

脱衣画像を無料で

Clothoff.io

Clothoff.io

AI衣類リムーバー

AI Hentai Generator

AI Hentai Generator

AIヘンタイを無料で生成します。

ホットツール

メモ帳++7.3.1

メモ帳++7.3.1

使いやすく無料のコードエディター

SublimeText3 中国語版

SublimeText3 中国語版

中国語版、とても使いやすい

ゼンドスタジオ 13.0.1

ゼンドスタジオ 13.0.1

強力な PHP 統合開発環境

ドリームウィーバー CS6

ドリームウィーバー CS6

ビジュアル Web 開発ツール

SublimeText3 Mac版

SublimeText3 Mac版

神レベルのコード編集ソフト(SublimeText3)