我需要添加border-radius,ion-img但似乎shadow DOM不会让我修改。
HTML
<ion-img [src]="img-url" [alt]="alt"></ion-img>
Run Code Online (Sandbox Code Playgroud)
CSS
ion-img {
border-radius: 10px !important;
}
Run Code Online (Sandbox Code Playgroud) 我需要将图像(png)转换为(webp)文件。
上传png文件后,已经生成了webp图像,但是webp文件并没有复制png文件的透明度,而是创建了黑色背景。
这是我的php代码:
$type = wp_check_filetype($file, null);
$ext = $type['ext'];
if ($ext === 'png') {
$im = imagecreatefrompng($file);
imagepalettetotruecolor($im);
$webp = imagewebp($im, str_replace('png', 'webp', $file));
}
imagedestroy($im);
Run Code Online (Sandbox Code Playgroud)
PHP的版本是5.6