搜尋
首頁php教程php手册php中使用gd库实现下载网页中所有图片

php中使用gd库实现下载网页中所有图片

   这篇文章主要介绍了php中使用gd库实现下载网页中所有图片,本文直接给出实现代码,需要的朋友可以参考下

  在前期的php教程就讲了php gd库可以实现远程图片的下载,但是那只是下载了一张图片,原理是一样的,要想下载一个网页的所有图片只要使用正则表达式进行判断,找出所有的图片url就可以进行循环下载了,我特地参照网络资源编写了gd库图片下载类!

  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

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

header("Content-type:text/html ; charset=utf-8");

if (!empty($_POST['submit'])){

$url = $_POST['url'];

//为了获取相对路径的图片所做的操作

$url_fields = parse_url($url);

$main_url = $url_fields['host'];

$base_url = substr($url,0,strrpos($url, '/')+1);

//获取网页内容

//设置代理服务器

$opts = array('http'=>array('request_fulluri'=>true));

$context = stream_context_create($opts);

$content = file_get_contents($url,false,$context);

//匹配img标签,将所有匹配字符串保存到数组$matches

$reg = "/php中使用gd库实现下载网页中所有图片/i";

preg_match_all($reg, $content, $matches);

$count = count($matches[0]);

for ($i=0; $i

/*将所有图片的url转换为小写

*$matches[1][$i] = strtolower($matches[1][$i]);

*/

//如果图片为相对路径就转化为全路径

if (!strpos('a'.$matches[1][$i], 'http')){

//因为'/'是第0个位置

if (strpos('a'.$matches[1][$i], '/')){

$matches[1][$i] = 'http://'.$main_url.$matches[1][$i];

}else{

$matches[1][$i] = $base_url.$matches[1][$i];

}

}

}

//过滤重复的图片

$img_arr = array_unique($matches[1]);

//实例化图片下载类

$getImg = new DownImage();

$url_count = count($img_arr);

for ($i=0; $i

$getImg->source = $img_arr[$i];

$getImg->save_address = './pic/';

$file = $getImg->download();

}

echo "下载完成!哈哈,简单吧!";

}

class DownImage{

public $source;//远程图片URL

public $save_address;//保存本地地址

public $set_extension; //设置图片扩展名

public $quality; //图片的质量(0~100,100最佳,默认75左右)

//下载方法(选用GD库图片下载)

public function download(){

//获取远程图片信息

$info = @getimagesize($this->source);

//获取图片扩展名

$mime = $info['mime'];

$type = substr(strrchr($mime, '/'), 1);

//不同的图片类型选择不同的图片生成和保存函数

switch($type){

case 'jpeg':

$img_create_func = 'imagecreatefromjpeg';

$img_save_func = 'imagejpeg';

$new_img_ext = 'jpg';

$image_quality = isset($this->quality) ? $this->quality : 100;

break;

case 'png':

$img_create_func = 'imagecreatefrompng';

$img_save_func = 'imagepng';

$new_img_ext = 'png';

break;

case 'bmp':

$img_create_func = 'imagecreatefrombmp';

$img_save_func = 'imagebmp';

$new_img_ext = 'bmp';

break;

case 'gif':

$img_create_func = 'imagecreatefromgif';

$img_save_func = 'imagegif';

$new_img_ext = 'gif';

break;

case 'vnd.wap.wbmp':

$img_create_func = 'imagecreatefromwbmp';

$img_save_func = 'imagewbmp';

$new_img_ext = 'bmp';

break;

case 'xbm':

$img_create_func = 'imagecreatefromxbm';

$img_save_func = 'imagexbm';

$new_img_ext = 'xbm';

break;

default:

$img_create_func = 'imagecreatefromjpeg';

$img_save_func = 'imagejpeg';

$new_img_ext = 'jpg';

}

//根据是否设置扩展名来合成本地文件名

if (isset($this->set_extension)){

$ext = strrchr($this->source,".");

$strlen = strlen($ext);

$newname = basename(substr($this->source,0,-$strlen)).'.'.$new_img_ext;

}else{

$newname = basename($this->source);

}

 

//生成本地文件路径

$save_address = $this->save_address.$newname;

$img = @$img_create_func($this->source);

if (isset($image_quality)){

$save_img = @$img_save_func($img,$save_address,$image_quality);

}else{

$save_img = @$img_save_func($img,$save_address);

}

return $save_img;

}

}

?>

远程url地址:

  运行结果如图:

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

VSCode Windows 64位元 下載

VSCode Windows 64位元 下載

微軟推出的免費、功能強大的一款IDE編輯器

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

這個專案正在遷移到osdn.net/projects/mingw的過程中,你可以繼續在那裡關注我們。 MinGW:GNU編譯器集合(GCC)的本機Windows移植版本,可自由分發的導入函式庫和用於建置本機Windows應用程式的頭檔;包括對MSVC執行時間的擴展,以支援C99功能。 MinGW的所有軟體都可以在64位元Windows平台上運作。

EditPlus 中文破解版

EditPlus 中文破解版

體積小,語法高亮,不支援程式碼提示功能

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

將Eclipse與SAP NetWeaver應用伺服器整合。

Dreamweaver Mac版

Dreamweaver Mac版

視覺化網頁開發工具