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


Python style.ansicolors方法代码示例

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


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

示例1: color_string

# 需要导入模块: from pygments import style [as 别名]
# 或者: from pygments.style import ansicolors [as 别名]
def color_string(self):
        attrs = []
        if self.fg is not None:
            if self.fg in ansicolors:
                esc = codes[self.fg[5:]]
                if ';01m' in esc:
                    self.bold = True
                # extract fg color code.
                attrs.append(esc[2:4])
            else:
                attrs.extend(("38", "5", "%i" % self.fg))
        if self.bg is not None:
            if self.bg in ansicolors:
                esc = codes[self.bg[5:]]
                # extract fg color code, add 10 for bg.
                attrs.append(str(int(esc[2:4])+10))
            else:
                attrs.extend(("48", "5", "%i" % self.bg))
        if self.bold:
            attrs.append("01")
        if self.underline:
            attrs.append("04")
        return self.escape(attrs) 
开发者ID:luckystarufo,项目名称:pySINDy,代码行数:25,代码来源:terminal256.py

示例2: _color_index

# 需要导入模块: from pygments import style [as 别名]
# 或者: from pygments.style import ansicolors [as 别名]
def _color_index(self, color):
        index = self.best_match.get(color, None)
        if color in ansicolors:
            # strip the `#ansi` part and look up code
            index = color
            self.best_match[color] = index
        if index is None:
            try:
                rgb = int(str(color), 16)
            except ValueError:
                rgb = 0

            r = (rgb >> 16) & 0xff
            g = (rgb >> 8) & 0xff
            b = rgb & 0xff
            index = self._closest_color(r, g, b)
            self.best_match[color] = index
        return index 
开发者ID:luckystarufo,项目名称:pySINDy,代码行数:20,代码来源:terminal256.py

示例3: color_string

# 需要导入模块: from pygments import style [as 别名]
# 或者: from pygments.style import ansicolors [as 别名]
def color_string(self):
        attrs = []
        if self.fg is not None:
            if self.fg in ansicolors:
                esc = codes[self.fg.replace('ansi','')]
                if ';01m' in esc:
                    self.bold = True
                # extract fg color code.
                attrs.append(esc[2:4])
            else:
                attrs.extend(("38", "5", "%i" % self.fg))
        if self.bg is not None:
            if self.bg in ansicolors:
                esc = codes[self.bg.replace('ansi','')]
                # extract fg color code, add 10 for bg.
                attrs.append(str(int(esc[2:4])+10))
            else:
                attrs.extend(("48", "5", "%i" % self.bg))
        if self.bold:
            attrs.append("01")
        if self.underline:
            attrs.append("04")
        if self.italic:
            attrs.append("03")
        return self.escape(attrs) 
开发者ID:pygments,项目名称:pygments,代码行数:27,代码来源:terminal256.py

示例4: _color_index

# 需要导入模块: from pygments import style [as 别名]
# 或者: from pygments.style import ansicolors [as 别名]
def _color_index(self, color):
        index = self.best_match.get(color, None)
        if color in ansicolors:
            # strip the `ansi/#ansi` part and look up code
            index = color
            self.best_match[color] = index
        if index is None:
            try:
                rgb = int(str(color), 16)
            except ValueError:
                rgb = 0

            r = (rgb >> 16) & 0xff
            g = (rgb >> 8) & 0xff
            b = rgb & 0xff
            index = self._closest_color(r, g, b)
            self.best_match[color] = index
        return index 
开发者ID:pygments,项目名称:pygments,代码行数:20,代码来源:terminal256.py


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