作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个场景。我想随着循环的进行模糊我的图像。我怎样才能做到这一点?这是我的代码。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Test Pagw</title>
</head>
<body>
<?php for($i=1; $i<=5; $i++){
/*
* if $i=1, image will be clear
* if $i=2, image will be less clear
* if $i=3, image will be even clear
* if $i=4, image will be very partially clear
* if $i=5, image will be totally blurred
*/
?>
<img src="flower.jpg" />
<?php } ?>
</body>
</html>
最佳答案
您可能需要使用 PHP 的“imagemagick”。里面有很多图像处理方法。您可以按照以下方法对您的图像使用它,
Imagick::blurImage
详细文档请引用以下链接。
关于javascript - 如何向图像添加滤镜(模糊),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34898626/
我是一名优秀的程序员,十分优秀!