php使用imagick模块实现图片缩放、裁剪、压缩示例_PHP
PHP 使用Imagick模块 缩放,裁剪,压缩图片 包括gif图片
缩放 裁剪
复制代码 代码如下:
/**
* 图片裁剪
* 裁剪规则:
* 1. 高度为空或为零 按宽度缩放 高度自适应
* 2. 宽度为空或为零 按高度缩放 宽度自适应
* 3. 宽度,高度到不为空或为零 按宽高比例等比例缩放裁剪 默认从头部居中裁剪
* @param number $width
* @param number $height
*/
public function resize($width=0, $height=0){
if($width==0 && $height==0){
return;
}
$color = '';// 'rgba(255,255,255,1)';
$size = $this->image->getImagePage ();
//原始宽高
$src_width = $size ['width'];
$src_height = $size ['height'];
//按宽度缩放 高度自适应
if($width!=0 && $height==0){
if($src_width>$width){
$height = intval($width*$src_height/$src_width);
if ($this->type == 'gif') {
$this->_resizeGif($width, $height);
}else{
$this->image->thumbnailImage ( $width, $height, true );
}
}
return;
}
//按高度缩放 宽度自适应
if($width==0 && $height!=0){
if($src_height>$height){
$width = intval($src_width*$height/$src_height);
if ($this->type == 'gif') {
$this->_resizeGif($width, $height);
}else{
$this->image->thumbnailImage ( $width, $height, true );
}
}
return;
}
//缩放的后的尺寸
$crop_w = $width;
$crop_h = $height;
//缩放后裁剪的位置
$crop_x = 0;
$crop_y = 0;
if(($src_width/$src_height) //宽高比例小于目标宽高比例 宽度等比例放大 按目标高度从头部截取
$crop_h = intval($src_height*$width/$src_width);
//从顶部裁剪 不用计算 $crop_y
}else{
//宽高比例大于目标宽高比例 高度等比例放大 按目标宽度居中裁剪
$crop_w = intval($src_width*$height/$src_height);
$crop_x = intval(($crop_w-$width)/2);
}
if ($this->type == 'gif') {
$this->_resizeGif($crop_w, $crop_h, true, $width, $height,$crop_x, $crop_y);
} else {
$this->image->thumbnailImage ( $crop_w, $crop_h, true );
$this->image->cropImage($width, $height,$crop_x, $crop_y);
}
}
针对gif图片的处理方法
复制代码 代码如下:
/**
* 处理gif图片 需要对每一帧图片处理
* @param unknown $t_w 缩放宽
* @param unknown $t_h 缩放高
* @param string $isCrop 是否裁剪
* @param number $c_w 裁剪宽
* @param number $c_h 裁剪高
* @param number $c_x 裁剪坐标 x
* @param number $c_y 裁剪坐标 y
*/
private function _resizeGif($t_w, $t_h, $isCrop=false, $c_w=0, $c_h=0, $c_x=0, $c_y=0){
$dest = new Imagick();
$color_transparent = new ImagickPixel("transparent"); //透明色
foreach($this->image as $img){
$page = $img->getImagePage();
$tmp = new Imagick();
$tmp->newImage($page['width'], $page['height'], $color_transparent, 'gif');
$tmp->compositeImage($img, Imagick::COMPOSITE_OVER, $page['x'], $page['y']);
$tmp->thumbnailImage ( $t_w, $t_h, true );
if($isCrop){
$tmp->cropImage($c_w, $c_h, $c_x, $c_y);
}
$dest->addImage($tmp);
$dest->setImagePage($tmp->getImageWidth(), $tmp->getImageHeight(), 0, 0);
$dest->setImageDelay($img->getImageDelay());
$dest->setImageDispose($img->getImageDispose());
}
$this->image->destroy ();
$this->image = $dest;
}
保存时压缩处理
复制代码 代码如下:
// 保存到指定路径
public function save_to($path) {
//压缩图片质量
$this->image->setImageFormat('JPEG');
$this->image->setImageCompression(Imagick::COMPRESSION_JPEG);
$a = $this->image->getImageCompressionQuality() * 0.60;
if ($a == 0) {
$a = 60;
}
$this->image->setImageCompressionQuality($a);
$this->image->stripImage();
if ($this->type == 'gif') {
$this->image->writeImages ( $path, true );
} else {
$this->image->writeImage ( $path );
}
}
ImagickService.php
复制代码 代码如下:
/**
* 图片处理服务类
* 使用php扩展服务Imagick实现
* ImageMagick 官网地址 [url]http:www.imagemagick.org/script/index.php[/url]
*
* @author weiguang3
* @since 20140403
*/
class ImagickService {
private $image = null;
private $type = null;
// 构造函数
public function __construct() {
}
// 析构函数
public function __destruct() {
if ($this->image !== null)
$this->image->destroy ();
}
public function init(){
}
// 载入图像
public function open($path) {
$this->image = new Imagick ( $path );
if ($this->image) {
$this->type = strtolower ( $this->image->getImageFormat () );
}
return $this->image;
}
/**
* 图片裁剪
* 裁剪规则:
* 1. 高度为空或为零 按宽度缩放 高度自适应
* 2. 宽度为空或为零 按高度缩放 宽度自适应
* 3. 宽度,高度到不为空或为零 按宽高比例等比例缩放裁剪 默认从头部居中裁剪
* @param number $width
* @param number $height
*/
public function resize($width=0, $height=0){
if($width==0 && $height==0){
return;
}
$color = '';// 'rgba(255,255,255,1)';
$size = $this->image->getImagePage ();
//原始宽高
$src_width = $size ['width'];
$src_height = $size ['height'];
//按宽度缩放 高度自适应
if($width!=0 && $height==0){
if($src_width>$width){
$height = intval($width*$src_height/$src_width);
if ($this->type == 'gif') {
$this->_resizeGif($width, $height);
}else{
$this->image->thumbnailImage ( $width, $height, true );
}
}
return;
}
//按高度缩放 宽度自适应
if($width==0 && $height!=0){
if($src_height>$height){
$width = intval($src_width*$height/$src_height);
if ($this->type == 'gif') {
$this->_resizeGif($width, $height);
}else{
$this->image->thumbnailImage ( $width, $height, true );
}
}
return;
}
//缩放的后的尺寸
$crop_w = $width;
$crop_h = $height;
//缩放后裁剪的位置
$crop_x = 0;
$crop_y = 0;
if(($src_width/$src_height) //宽高比例小于目标宽高比例 宽度等比例放大 按目标高度从头部截取
$crop_h = intval($src_height*$width/$src_width);
//从顶部裁剪 不用计算 $crop_y
}else{
//宽高比例大于目标宽高比例 高度等比例放大 按目标宽度居中裁剪
$crop_w = intval($src_width*$height/$src_height);
$crop_x = intval(($crop_w-$width)/2);
}
if ($this->type == 'gif') {
$this->_resizeGif($crop_w, $crop_h, true, $width, $height,$crop_x, $crop_y);
} else {
$this->image->thumbnailImage ( $crop_w, $crop_h, true );
$this->image->cropImage($width, $height,$crop_x, $crop_y);
}
}
/**
* 处理gif图片 需要对每一帧图片处理
* @param unknown $t_w 缩放宽
* @param unknown $t_h 缩放高
* @param string $isCrop 是否裁剪
* @param number $c_w 裁剪宽
* @param number $c_h 裁剪高
* @param number $c_x 裁剪坐标 x
* @param number $c_y 裁剪坐标 y
*/
private function _resizeGif($t_w, $t_h, $isCrop=false, $c_w=0, $c_h=0, $c_x=0, $c_y=0){
$dest = new Imagick();
$color_transparent = new ImagickPixel("transparent"); //透明色
foreach($this->image as $img){
$page = $img->getImagePage();
$tmp = new Imagick();
$tmp->newImage($page['width'], $page['height'], $color_transparent, 'gif');
$tmp->compositeImage($img, Imagick::COMPOSITE_OVER, $page['x'], $page['y']);
$tmp->thumbnailImage ( $t_w, $t_h, true );
if($isCrop){
$tmp->cropImage($c_w, $c_h, $c_x, $c_y);
}
$dest->addImage($tmp);
$dest->setImagePage($tmp->getImageWidth(), $tmp->getImageHeight(), 0, 0);
$dest->setImageDelay($img->getImageDelay());
$dest->setImageDispose($img->getImageDispose());
}
$this->image->destroy ();
$this->image = $dest;
}
/**
* 更改图像大小
* $fit: 适应大小方式
* 'force': 把图片强制变形成 $width X $height 大小
* 'scale': 按比例在安全框 $width X $height 内缩放图片, 输出缩放后图像大小 不完全等于 $width X $height
* 'scale_fill': 按比例在安全框 $width X $height 内缩放图片,安全框内没有像素的地方填充色,
* 使用此参数时可设置背景填充色 $bg_color = array(255,255,255)(红,绿,蓝, 透明度)
* 透明度(0不透明-127完全透明)) 其它: 智能模能 缩放图像并载取图像的中间部分 $width X $height 像素大小
* $fit = 'force','scale','scale_fill' 时: 输出完整图像
* $fit = 图像方位值 时, 输出指定位置部分图像 字母与图像的对应关系如下:
* north_west north north_east
* west center east
* south_west south south_east
*/
public function resize_to($width = 100, $height = 100, $fit = 'center', $fill_color = array(255,255,255,0)) {
switch ($fit) {
case 'force' :
if ($this->type == 'gif') {
$image = $this->image;
$canvas = new Imagick ();
$images = $image->coalesceImages ();
foreach ( $images as $frame ) {
$img = new Imagick ();
$img->readImageBlob ( $frame );
$img->thumbnailImage ( $width, $height, false );
$canvas->addImage ( $img );
$canvas->setImageDelay ( $img->getImageDelay () );
}
$image->destroy ();
$this->image = $canvas;
} else {
$this->image->thumbnailImage ( $width, $height, false );
}
break;
case 'scale' :
if ($this->type == 'gif') {
$image = $this->image;
$images = $image->coalesceImages ();
$canvas = new Imagick ();
foreach ( $images as $frame ) {
$img = new Imagick ();
$img->readImageBlob ( $frame );
$img->thumbnailImage ( $width, $height, true );
$canvas->addImage ( $img );
$canvas->setImageDelay ( $img->getImageDelay () );
}
$image->destroy ();
$this->image = $canvas;
} else {
$this->image->thumbnailImage ( $width, $height, true );
}
break;
case 'scale_fill' :
$size = $this->image->getImagePage ();
$src_width = $size ['width'];
$src_height = $size ['height'];
$x = 0;
$y = 0;
$dst_width = $width;
$dst_height = $height;
if ($src_width * $height > $src_height * $width) {
$dst_height = intval ( $width * $src_height / $src_width );
$y = intval ( ($height - $dst_height) / 2 );
} else {
$dst_width = intval ( $height * $src_width / $src_height );
$x = intval ( ($width - $dst_width) / 2 );
}
$image = $this->image;
$canvas = new Imagick ();
$color = 'rgba(' . $fill_color [0] . ',' . $fill_color [1] . ',' . $fill_color [2] . ',' . $fill_color [3] . ')';
if ($this->type == 'gif') {
$images = $image->coalesceImages ();
foreach ( $images as $frame ) {
$frame->thumbnailImage ( $width, $height, true );
$draw = new ImagickDraw ();
$draw->composite ( $frame->getImageCompose (), $x, $y, $dst_width, $dst_height, $frame );
$img = new Imagick ();
$img->newImage ( $width, $height, $color, 'gif' );
$img->drawImage ( $draw );
$canvas->addImage ( $img );
$canvas->setImageDelay ( $img->getImageDelay () );
$canvas->setImagePage ( $width, $height, 0, 0 );
}
} else {
$image->thumbnailImage ( $width, $height, true );
$draw = new ImagickDraw ();
$draw->composite ( $image->getImageCompose (), $x, $y, $dst_width, $dst_height, $image );
$canvas->newImage ( $width, $height, $color, $this->get_type () );
$canvas->drawImage ( $draw );
$canvas->setImagePage ( $width, $height, 0, 0 );
}
$image->destroy ();
$this->image = $canvas;
break;
default :
$size = $this->image->getImagePage ();
$src_width = $size ['width'];
$src_height = $size ['height'];
$crop_x = 0;
$crop_y = 0;
$crop_w = $src_width;
$crop_h = $src_height;
if ($src_width * $height > $src_height * $width) {
$crop_w = intval ( $src_height * $width / $height );
} else {
$crop_h = intval ( $src_width * $height / $width );
}
switch ($fit) {
case 'north_west' :
$crop_x = 0;
$crop_y = 0;
break;
case 'north' :
$crop_x = intval ( ($src_width - $crop_w) / 2 );
$crop_y = 0;
break;
case 'north_east' :
$crop_x = $src_width - $crop_w;
$crop_y = 0;
break;
case 'west' :
$crop_x = 0;
$crop_y = intval ( ($src_height - $crop_h) / 2 );
break;
case 'center' :
$crop_x = intval ( ($src_width - $crop_w) / 2 );
$crop_y = intval ( ($src_height - $crop_h) / 2 );
break;
case 'east' :
$crop_x = $src_width - $crop_w;
$crop_y = intval ( ($src_height - $crop_h) / 2 );
break;
case 'south_west' :
$crop_x = 0;
$crop_y = $src_height - $crop_h;
break;
case 'south' :
$crop_x = intval ( ($src_width - $crop_w) / 2 );
$crop_y = $src_height - $crop_h;
break;
case 'south_east' :
$crop_x = $src_width - $crop_w;
$crop_y = $src_height - $crop_h;
break;
default :
$crop_x = intval ( ($src_width - $crop_w) / 2 );
$crop_y = intval ( ($src_height - $crop_h) / 2 );
}
$image = $this->image;
$canvas = new Imagick ();
if ($this->type == 'gif') {
$images = $image->coalesceImages ();
foreach ( $images as $frame ) {
$img = new Imagick ();
$img->readImageBlob ( $frame );
$img->cropImage ( $crop_w, $crop_h, $crop_x, $crop_y );
$img->thumbnailImage ( $width, $height, true );
$canvas->addImage ( $img );
$canvas->setImageDelay ( $img->getImageDelay () );
$canvas->setImagePage ( $width, $height, 0, 0 );
}
} else {
$image->cropImage ( $crop_w, $crop_h, $crop_x, $crop_y );
$image->thumbnailImage ( $width, $height, true );
$canvas->addImage ( $image );
$canvas->setImagePage ( $width, $height, 0, 0 );
}
$image->destroy ();
$this->image = $canvas;
}
}
// 添加水印图片
public function add_watermark($path, $x = 0, $y = 0) {
$watermark = new Imagick ( $path );
$draw = new ImagickDraw ();
$draw->composite ( $watermark->getImageCompose (), $x, $y, $watermark->getImageWidth (), $watermark->getimageheight (), $watermark );
if ($this->type == 'gif') {
$image = $this->image;
$canvas = new Imagick ();
$images = $image->coalesceImages ();
foreach ( $image as $frame ) {
$img = new Imagick ();
$img->readImageBlob ( $frame );
$img->drawImage ( $draw );
$canvas->addImage ( $img );
$canvas->setImageDelay ( $img->getImageDelay () );
}
$image->destroy ();
$this->image = $canvas;
} else {
$this->image->drawImage ( $draw );
}
}
// 添加水印文字
public function add_text($text, $x = 0, $y = 0, $angle = 0, $style = array()) {
$draw = new ImagickDraw ();
if (isset ( $style ['font'] ))
$draw->setFont ( $style ['font'] );
if (isset ( $style ['font_size'] ))
$draw->setFontSize ( $style ['font_size'] );
if (isset ( $style ['fill_color'] ))
$draw->setFillColor ( $style ['fill_color'] );
if (isset ( $style ['under_color'] ))
$draw->setTextUnderColor ( $style ['under_color'] );
if ($this->type == 'gif') {
foreach ( $this->image as $frame ) {
$frame->annotateImage ( $draw, $x, $y, $angle, $text );
}
} else {
$this->image->annotateImage ( $draw, $x, $y, $angle, $text );
}
}
// 保存到指定路径
public function save_to($path) {
//压缩图片质量
$this->image->setImageFormat('JPEG');
$this->image->setImageCompression(Imagick::COMPRESSION_JPEG);
$a = $this->image->getImageCompressionQuality() * 0.60;
if ($a == 0) {
$a = 60;
}
$this->image->setImageCompressionQuality($a);
$this->image->stripImage();
if ($this->type == 'gif') {
$this->image->writeImages ( $path, true );
} else {
$this->image->writeImage ( $path );
}
}
// 输出图像
public function output($header = true) {
if ($header)
header ( 'Content-type: ' . $this->type );
echo $this->image->getImagesBlob ();
}
public function get_width() {
$size = $this->image->getImagePage ();
return $size ['width'];
}
public function get_height() {
$size = $this->image->getImagePage ();
return $size ['height'];
}
// 设置图像类型, 默认与源类型一致
public function set_type($type = 'png') {
$this->type = $type;
$this->image->setImageFormat ( $type );
}
// 获取源图像类型
public function get_type() {
return $this->type;
}
public function get_file_size(){
if($this->image){
return 0;//$this->image->getImageLength(); getImageLength not find
}else{
return 0;
}
}
public function get_file_type(){
if($this->image){
return $this->image->getimagemimetype();
}else{
return 0;
}
}
public function get_sha1(){
if($this->image){
return sha1($this->image->__tostring());
}else{
return '';
}
}
// 当前对象是否为图片
public function is_image() {
if ($this->image)
return true;
else
return false;
}
/*
* 添加一个边框 $width: 左右边框宽度 $height: 上下边框宽度 $color: 颜色: RGB 颜色 'rgb(255,0,0)' 或 16进制颜色 '#FF0000' 或颜色单词 'white'/'red'...
*/
public function border($width, $height, $color = 'rgb(220, 220, 220)') {
$color = new ImagickPixel ();
$color->setColor ( $color );
$this->image->borderImage ( $color, $width, $height );
}
public function blur($radius, $sigma) {
$this->image->blurImage ( $radius, $sigma );
} // 模糊
public function gaussian_blur($radius, $sigma) {
$this->image->gaussianBlurImage ( $radius, $sigma );
} // 高斯模糊
public function motion_blur($radius, $sigma, $angle) {
$this->image->motionBlurImage ( $radius, $sigma, $angle );
} // 运动模糊
public function radial_blur($radius) {
$this->image->radialBlurImage ( $radius );
} // 径向模糊
public function add_noise($type = null) {
$this->image->addNoiseImage ( $type == null ? imagick::NOISE_IMPULSE : $type );
} // 添加噪点
public function level($black_point, $gamma, $white_point) {
$this->image->levelImage ( $black_point, $gamma, $white_point );
} // 调整色阶
public function modulate($brightness, $saturation, $hue) {
$this->image->modulateImage ( $brightness, $saturation, $hue );
} // 调整亮度、饱和度、色调
public function charcoal($radius, $sigma) {
$this->image->charcoalImage ( $radius, $sigma );
} // 素描
public function oil_paint($radius) {
$this->image->oilPaintImage ( $radius );
} // 油画效果
public function flop() {
$this->image->flopImage ();
} // 水平翻转
public function flip() {
$this->image->flipImage ();
} // 垂直翻转
}

핫 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)

뜨거운 주제











JavaScript에서 이미지 썸네일 기능을 구현하는 방법은 무엇입니까? 웹 페이지에 이미지를 표시할 때 페이지의 레이아웃 요구 사항을 충족하기 위해 원본 큰 이미지를 줄여야 하는 경우가 있는데, 이를 위해서는 이미지 축소판 기능을 사용해야 합니다. JavaScript에서는 다음 방법을 통해 이미지의 썸네일 기능을 구현할 수 있습니다. HTML을 사용하여 이미지의 너비와 높이를 직접 설정하는 가장 간단한 방법은 HTML에서 이미지의 너비와 높이 속성을 직접 설정하는 것입니다. 썸네일 효과. 예를 들면:&l

Vue에서 이미지 크기 조정 및 돋보기 효과를 구현하는 방법은 무엇입니까? 웹 기술이 지속적으로 발전함에 따라 사용자는 웹사이트에서 이미지 표시 효과에 대한 요구 사항이 점점 더 높아지고 있습니다. 그중에서도 이미지 확대/축소 및 돋보기 효과는 비교적 일반적인 요구 사항입니다. Vue에서 이미지 스케일링과 돋보기 효과를 구현하는 것은 비교적 간단합니다. 다음으로 구체적인 구현 방법을 소개하겠습니다. 1. 기본 방법 먼저 기본적인 이미지 스케일링 효과를 얻는 방법을 살펴보겠습니다. 구현 방법은 간단합니다. Vue에 내장된 명령어를 사용하면 됩니다.

CSS를 사용하여 이미지 확대/축소 효과를 얻는 방법 웹 디자인에서 이미지의 확대/축소 효과는 일반적인 요구 사항 중 하나입니다. CSS의 관련 속성과 기술을 통해 이미지의 확대/축소 효과를 쉽게 얻을 수 있습니다. 아래에서는 CSS를 사용하여 이미지의 확대/축소 효과를 얻는 방법을 자세히 소개하고 구체적인 코드 예를 제공합니다. 변환 속성을 사용하여 이미지의 행렬 크기 조정을 구현하면 요소를 회전, 크기 조정, 기울이기 또는 이동하여 변환할 수 있습니다. 그 중 스케일링 변환은 그림을 구현하는 것입니다.

PHP 및 GD 라이브러리를 사용하여 이미지 크기 조정을 달성하는 가장 좋은 방법 최근 인터넷의 인기로 인해 이미지 처리는 많은 사이트에서 필요한 기능 중 하나가 되었습니다. 이미지 처리의 가장 일반적인 요구 사항 중 하나인 이미지 크기 조정은 다양한 디스플레이 요구 사항에 맞게 이미지 품질을 잃지 않고 비례적으로 이미지 크기를 조정할 수 있어야 합니다. 일반적인 서버 측 프로그래밍 언어인 PHP에는 풍부한 이미지 처리 라이브러리가 있으며, 그 중 가장 일반적으로 사용되는 것은 GD 라이브러리입니다. GD 라이브러리는 다양한 이미지 작업을 처리하는 데 사용할 수 있는 간단하고 강력한 인터페이스를 제공합니다.

PHP를 사용하여 간단한 이미지 크기 조정 및 자르기 기능을 개발하는 방법 요약: 이미지 처리는 웹 개발에서 일반적인 요구 사항입니다. 이 기사에서는 PHP를 사용하여 간단한 이미지 크기 조정 및 자르기 기능을 개발하는 방법을 소개하고 구체적인 코드 예제를 제공합니다. 이 기사를 연구함으로써 독자는 PHP를 사용하여 웹 애플리케이션에서 기본 이미지 처리 기능을 구현하는 방법을 이해할 수 있습니다. 1. 배경 소개 웹 개발에서는 다양한 페이지 레이아웃에 적응하거나 특정 요구 사항을 충족하기 위해 이미지 크기를 조정하거나 잘라야 하는 경우가 있습니다. PHP로

이미지 크기 조정을 위한 CSSPositions 레이아웃 기술 웹 디자인에서 이미지 크기 조정은 일반적인 요구 사항 중 하나입니다. CSSPositions 레이아웃을 통해 이미지의 확대/축소 효과를 얻고 웹 페이지에 더 나은 시각적 경험을 추가할 수 있습니다. 이 기사에서는 몇 가지 기술을 소개하고 구체적인 코드 예제를 제공합니다. position 속성을 사용하여 이미지의 위치를 설정합니다. CSS에서는 position 속성을 사용하여 요소의 위치를 지정하는 방법을 정의할 수 있습니다. position 속성을 "re"로 설정하여

HTML, CSS 및 jQuery를 사용하여 이미지 크기 조정의 고급 기능을 구현하는 방법 소개: 현대 웹 디자인에서는 이미지의 아름다움과 적응성이 매우 중요합니다. 그러나 기존의 사진 디스플레이는 우리의 요구를 충족시키지 못하는 경우가 많습니다. 이 기사에서는 HTML, CSS 및 jQuery를 사용하여 일부 고급 이미지 확대/축소 기능을 구현하는 방법을 소개합니다. 이러한 기술을 통해 우리는 맞춤형 이미지 크기 조정 효과를 달성하고 웹 페이지에 더 많은 상호 작용성을 추가할 수 있습니다. 1단계: HTML 마크업 먼저

이미지 버블 효과를 얻기 위해 CSS를 사용하는 팁과 방법 웹 디자인에서 이미지에 특수 효과를 추가하는 것은 사용자 경험을 향상시키는 중요한 수단 중 하나입니다. 그중에서도 그림 풍선 효과는 그림에 흥미와 상호작용성을 더해 웹 콘텐츠를 더욱 매력적으로 만들어줍니다. 이 문서에서는 CSS를 사용하여 이미지 풍선 효과를 얻는 방법에 대한 몇 가지 팁과 방법을 특정 코드 예제와 함께 공유합니다. 의사 클래스 요소를 사용하여 거품 효과 만들기 CSS 의사 클래스 요소를 사용하면 이미지 위에 거품 효과를 추가할 수 있습니다. 구체적인 방법은 의사 분류자를 설정하는 것입니다.
