返回介绍

Texture2D.EncodeToJPG 编码为JPG

发布于 2019-12-18 15:38:39 字数 1338 浏览 1067 评论 0 收藏 0

JavaScript => public function EncodeToJPG(): byte[];
JavaScript => public function EncodeToJPG(quality: int): byte[];
C# => public byte[] EncodeToJPG();
C# => public byte[] EncodeToJPG(int quality);

Parameters 参数

qualityJPG quality to encode with, 1..100 (default 75).
JPG的质量1~100(默认75)

Description 描述

Encodes this texture into JPG format.

编码纹理为JPG格式。

The returned byte array is the JPG “file”. You can write them to disk to get the JPG file, send them over the network, etc.

返回的byte数组是JPG文件。你可以写入到硬盘获得JPG文件,发送到网络等。

This function works only on ARGB32 and RGB24 texture formats. The texture also has to have Is Readable flag set in the import settings.

该函数仅工作于ARGB32和RGB24格式。该纹理在纹理导入设置必须具有可读写标识。

The encoded JPG data will have no alpha channel.

编码为JPG数据,不具有alpha通道。

See Also: EncodeToPNG.

Texture2D

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文