简体   繁体   English

在 Windows 上将图像转换为 HEIF 格式

[英]Convert image to the HEIF format on Windows

I want to take advantage of HEIF's benefits on Windows.我想利用 HEIF 在 Windows 上的优势。 I feel I've done quite a bit of searching and I find a lot about opening HEIF files on Windows and converting from HEIF to JPG.我觉得我已经做了很多搜索,我发现了很多关于在 Windows 上打开 HEIF 文件并将 HEIF 转换为 JPG 的信息。 I can't find anything about converting a popular lossless type (BMP, PNG, GIF) to a HEIF.我找不到任何关于将流行的无损类型(BMP、PNG、GIF)转换为 HEIF 的信息。

Is there a library (or available application) that can convert from a popular lossless type to HEIF on Windows?是否有可以在 Windows 上从流行的无损类型转换为 HEIF 的库(或可用应用程序)?

Windows Imaging Component (WIC) API comes with Microsoft HEIF Encoder in latest Windows 10. That is, you can use the API for image encoding. Windows Imaging Component (WIC) API comes with Microsoft HEIF Encoder in latest Windows 10. That is, you can use the API for image encoding.

### Microsoft HEIF Encoder

 * Class Identifier: CLSID_WICHeifEncoder
 * Signing Status: WICComponentSigned
 * Author: Microsoft
 * Vendor Identifier: {F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}
 * Version: 1.0.0.0
 * Spec Version: 1.0.0.0
 * Friendly Name: Microsoft HEIF Encoder
 * IWICBitmapCodecInfo:
  * Container Format: GUID_ContainerFormatHeif
  * Pixel Formats: GUID_WICPixelFormat32bppBGR
  * Color Management Version: 1.0.0.0
  * MIME Types: image/heic,image/heif
  * File Extensions: .heic,.heif
 * IWICBitmapEncoderInfo

You might need to install HEIF Image Extensions from Store to enable format support.您可能需要从 Store 安装HEIF Image Extensions以启用格式支持。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Windows-ImageMagick将字体转换为图像 - WIndows - ImageMagick convert font to image Java,将Windows路径转换为DOS 8.3格式 - java, convert windows path to dos 8.3 format 将Linux日期时间转换为Windows本地日期时间格式 - Convert Linux datetime to Windows local datetime format 如何将当前cygwin目录转换为Windows格式 - How to convert current cygwin directory to windows format 如何在Windows中从任何格式转换为PCM - How to convert from any format to PCM in Windows 将 Windows 时区信息转换为 OpenWRT 格式 - Convert windows timezone info to OpenWRT format Win32 / C:将行尾转换为DOS / Windows格式 - Win32/C: Convert line endings to DOS/Windows format C ++:在WINDOWS上写入BMP图像格式错误 - C++: Write BMP image format error on WINDOWS 使用用户的“区域和语言”格式将Windows SYSTEMTIME转换为C ++中的字符串或char buf? - convert Windows SYSTEMTIME to a string or char buf in C++ with user's “Region and Language” format? 有什么方法可以通过自动转换为zip格式然后每天以自动方式将aws s3存储桶传输Windows文件 - Is there any way to transfer windows files by automatically convert in zip format and then to aws s3 bucket in an automate way daily
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM