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


Python rsvg.Handle方法代码示例

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


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

示例1: __init__

# 需要导入模块: import rsvg [as 别名]
# 或者: from rsvg import Handle [as 别名]
def __init__(self, x, y, rsvg_handle, **kwargs):
        """
        Initializer
        @param self this object
        """
        super(SvgItem, self).__init__(**kwargs)
        assert isinstance(rsvg_handle, rsvg.Handle)
        self.x = x
        self.y = y
        self.sx = 1.0
        self.sy = 1.0
        self.handle = rsvg_handle
        self.width = self.handle.props.width
        self.height = self.handle.props.height
        self.custom_width = None
        self.custom_height = None 
开发者ID:KTH,项目名称:royal-chaos,代码行数:18,代码来源:svgitem.py

示例2: svg2png

# 需要导入模块: import rsvg [as 别名]
# 或者: from rsvg import Handle [as 别名]
def svg2png(svg_file, output_file, scale=1):
    # Get the svg files content
    svg_data = open(svg_file).read()

    # Get the width / height inside of the SVG
    doc = minidom.parseString(svg_data)
    width = [path.getAttribute('width') for path in doc.getElementsByTagName('svg')][0]
    height = [path.getAttribute('height') for path in doc.getElementsByTagName('svg')][0]
    width = int(round(float(re.compile('(\d+\.*\d*)\w*').findall(width)[0])))
    height = int(round(float(re.compile('(\d+\.*\d*)\w*').findall(height)[0])))
    doc.unlink()

    # Create the png
    img = cairo.ImageSurface(
        cairo.FORMAT_ARGB32, width * scale, height * scale)
    ctx = cairo.Context(img)
    ctx.scale(scale, scale)
    handler = rsvg.Handle(None, str(svg_data))
    handler.render_cairo(ctx)
    img.write_to_png(output_file)
    print("{} ==> {}".format(svg_file, output_file)) 
开发者ID:Geequlim,项目名称:godot-themes,代码行数:23,代码来源:svg2png.py

示例3: __init__

# 需要导入模块: import rsvg [as 别名]
# 或者: from rsvg import Handle [as 别名]
def __init__(self, x, y, rsvg_handle, **kwargs):
        super(SvgItem, self).__init__(**kwargs)
        assert isinstance(rsvg_handle, rsvg.Handle)
        self.x = x
        self.y = y
        self.sx = 1.0
        self.sy = 1.0
        self.handle = rsvg_handle
        self.width = self.handle.props.width
        self.height = self.handle.props.height
        self.custom_width = None
        self.custom_height = None 
开发者ID:ntu-dsi-dcn,项目名称:ntu-dsi-dcn,代码行数:14,代码来源:svgitem.py

示例4: rsvg_handle_factory

# 需要导入模块: import rsvg [as 别名]
# 或者: from rsvg import Handle [as 别名]
def rsvg_handle_factory(base_file_name):
    try:
        return _rsvg_cache[base_file_name]
    except KeyError:
        full_path = os.path.join(os.path.dirname(__file__), 'resource', base_file_name)
        rsvg_handle = rsvg.Handle(full_path)
        _rsvg_cache[base_file_name] = rsvg_handle
        return rsvg_handle 
开发者ID:ntu-dsi-dcn,项目名称:ntu-dsi-dcn,代码行数:10,代码来源:svgitem.py


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