当前位置: 首页>>代码示例>>Python>>正文


Python Emoji.to_image方法代码示例

本文整理汇总了Python中emojipy.Emoji.to_image方法的典型用法代码示例。如果您正苦于以下问题:Python Emoji.to_image方法的具体用法?Python Emoji.to_image怎么用?Python Emoji.to_image使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在emojipy.Emoji的用法示例。


在下文中一共展示了Emoji.to_image方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: replace_with_emoji

# 需要导入模块: from emojipy import Emoji [as 别名]
# 或者: from emojipy.Emoji import to_image [as 别名]
def replace_with_emoji(effect, size):
    """
    Reportlab's Paragraph doesn't accept normal html <image> tag's attributes
    like 'class', 'alt'. Its a little hack to remove those attrbs
    """
    e = ""
    for i, c in enumerate(effect):
        if c in emoji.UNICODE_EMOJI:
            e += Emoji.to_image(c)
        else:
            e += c
    
#    e = effect
#    for item in sorted(emoji.UNICODE_EMOJI.keys(), key = len, reverse = True):
#        if item in effect:
#            print(item)
#            if Emoji.to_image(item) != item:
#                e = re.sub(item, Emoji.to_image(item), e)
#        print(item)
#        Emoji.to_image(c)
#        e = re.sub(re.escape(item), re.escape(emoji.UNICODE_EMOJI[item]), e)
    
    e = e.replace('class="emojione " style="" ', 'height=%s width=%s' %
                        (size, size))
    return re.sub('alt="'+Emoji.shortcode_regexp+'"', '', e)
开发者ID:robertkck,项目名称:world-control,代码行数:27,代码来源:module.py

示例2: to_image

# 需要导入模块: from emojipy import Emoji [as 别名]
# 或者: from emojipy.Emoji import to_image [as 别名]
def to_image(text, **kwargs):
    """
    Parse short code and unicode code to emotion
    :param text:
    :param kwargs[css]: css class
    :param kwargs[style]: icon stylesheet
    :return: string
    """
    return Emoji.to_image(text, **kwargs)
开发者ID:phuong,项目名称:django-emojione,代码行数:11,代码来源:functions.py

示例3: to_image

# 需要导入模块: from emojipy import Emoji [as 别名]
# 或者: from emojipy.Emoji import to_image [as 别名]
def to_image(text, **kwargs):
    return Emoji.to_image(text, **kwargs)
开发者ID:phuong,项目名称:django-emojione,代码行数:4,代码来源:django_emojione.py


注:本文中的emojipy.Emoji.to_image方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。