- 博客(0)
- 资源 (8)
- 收藏
- 关注
winform cefsharp 90.6.70
因为工作需要、需升级到90.6.70所以自己编译一个最新版本。
把cef_binary_90.6.7+g19ba721+chromium-90.0.4430.212_windows32\Release目录下的libcef.dll、libEGL.dll、libGLESv2.dll复制到对应的工作目录就可以实现MP4播放
2021-06-10
.net core 使用Pngquant进行PNG图片压缩
在Startup.cs文件中配置Pngquant所在路径
public void ConfigureServices(IServiceCollection services)
{
if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
{
var pngquant = Configuration.GetSection("PngquantPathLinux").Value;
PngquantConfig.Configure(new PngquantOptions { BinaryFolder = pngquant });
}
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) {
var pngquant = Configuration.GetSection("PngquantPathWin").Value;
PngquantConfig.Configure(new PngquantOptions { BinaryFolder = pngquant });
}
}
使用:
FileStream fs = new FileStream(filePath, FileMode.Open);
byte[] byData = new byte[fs.Length];
//设置压缩选项
var options = new PngQuantOptions()
{
QualityMinMax = (65, 80), //Minimum = 65, Maximum = 80. Default null
Speed = 1, //Value between 1 and 11. default 3.
IEBug = false, //Attempt to fix iebug. default false.
Bit = 256 //bit-rate. default 256
};
///Invoke the compressor
Compressor pngQuant = new PngQuant(options);
//Compress bytes
byte[] compressed = await pngQuant.Compress(byData);
MemoryStream ms = new MemoryStream(compressed); //把那个byte[] 数组传进去, 然后
using (FileStream fs = new FileStream(savePath, FileMode.Create, FileAccess.Write))
ms.WriteTo(fs);
2021-04-28
winform cefsharp 84.4.10.0
cefsharp 84.4.10.0 支持mp3,mp4,H.264播放视频.
在生成后的目录x86 对应替换x86 x64替换x64文件夹里面的文件就可以了
2020-12-19
spring Security jwt授权和认证.rar
下载可以直接运行。使用mysql保存数据。包括数据文件、测试过可以正常使用(API权限可控)
请地址是POST:http://localhost:8080/api/login
JSON参数:{
"username":"user1",
"password":"123456"
}
2020-06-13
spring boot +spring Security+ jwt+oauth2.rar
下载可以直接运行。使用mysql保存数据。包括数据文件、测试过可以正常使用(API权限可控)
服务器端和客户端样例程序都有
2020-06-13
Zend Studio 13.5 激活包
2017-03-13
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人