HDR增强表情符号
HDR‑Infused Emoji

原始链接: https://sharpletters.net/2025/04/16/hdr-emoji/

想让你的Slack表情更出彩?想用你最喜欢的图片做出与众不同的反应? 原来你可以在Slack中添加HDR表情,它们会在支持的硬件上以令人惊艳的亮度呈现。在iPhone上效果很好,但在Android设备上则完全不行。 示例: #注意:这些示例在Slack中发布效果最佳。浏览器和设备上的支持有所不同,你的实际效果可能会有所差异。 脚本: ```bash brew install imagemagick # 调整Multiply值,以保留颜色而不是亮度 magick input.png \ -define quantum:format=floating-point \ -colorspace RGB \ -auto-gamma \ -evaluate Multiply 1.5 \ -evaluate Pow 0.9 \ -colorspace sRGB \ -depth 16 \ -profile 2020_profile.icc \ output.png ``` 你需要将下载的2020_profile.icc文件放到你的工作目录。

Hacker News 最新 | 过去 | 评论 | 提问 | 展示 | 招聘 | 提交 登录 HDR增强表情符号 (sharpletters.net) 13 分,来自 tabletcorry,15 分钟前 | 隐藏 | 过去 | 收藏 | 2 条评论 jchw 5 分钟前 [–] 看起来这在安卓版 Chrome 上有效,但 Firefox 似乎根本不支持 HDR。https://bugzil.la/hdr也许有一天吧。 回复 lxgr 2 分钟前 | 父评论 [–] macOS 上的 Safari 也不支持——老实说,这似乎是正确的行为,因为网站肯定会以对用户不友好的方式使用它。 回复 加入我们,参加 6 月 16-17 日在旧金山举行的 AI 初创公司学校! 指南 | 常见问题 | 列表 | API | 安全 | 法律 | 申请 YC | 联系我们 搜索:
相关文章
  • (评论) 2024-01-07
  • (评论) 2023-12-01
  • macOS 红杉预览 2024-06-12
  • 图像文件的欺骗性 (2020) 2025-04-06
  • (评论) 2025-04-14

  • 原文

    Need a little more pop to your Slack emoji? Want to really stand out when you react with your favorite image?

    Turns out you can add HDR emoji to Slack, and they will be rendered in eye-searing brightness, at least on hardware that supports it. Works great on iPhones, and not at all on Android devices.

    Examples:

    Note: These examples will work best when posted to Slack. Support in browsers and on devices varies, YMMV.

    Script

    brew install imagemagick
    
    # Adjust the Multiply value up or down to preserve color as opposed to brightness
    magick input.png \
      -define quantum:format=floating-point \
      -colorspace RGB \
      -auto-gamma \
      -evaluate Multiply 1.5 \
      -evaluate Pow 0.9 \
      -colorspace sRGB \
      -depth 16 \
      -profile 2020_profile.icc \
      output.png
    

    You will need the 2020_profile.icc downloaded to your working directory.

    联系我们 contact @ memedata.com