How to get text length in (python) extension

Discussion about writing code for Inkscape.
matameko
Posts: 2
Joined: Wed Aug 08, 2012 4:44 pm

How to get text length in (python) extension

Postby matameko » Wed Aug 08, 2012 4:57 pm

Hello,

how can I get the pixel length of a text element in an extension? Is it possible to access the svg dom function "getComputedTextLength" ?

I found a python example here: http://wiki.inkscape.org/wiki/index.php ... ctTutorial
and added a msgbox command to show me some text information.

Could you please modify the last few lines of the following code to show the length of the text?

Code: Select all

#!/usr/bin/env python

# These two lines are only needed if you don't put the script directly into
# the installation directory
import sys
sys.path.append('C:\Program Files (x86)\Inkscape\share\extensions')
sys.path.append('C:\Python27')

# We will use the inkex module with the predefined Effect base class.
import inkex
# The simplestyle module provides functions for style parsing.
from simplestyle import *

from ctypes import c_int, WINFUNCTYPE, windll
from ctypes.wintypes import HWND, LPCSTR, UINT
prototype = WINFUNCTYPE(c_int, HWND, LPCSTR, LPCSTR, UINT)
paramflags = (1, "hwnd", 0), (1, "text", "Hi"), (1, "caption", None), (1, "flags", 0)
MessageBox = prototype(("MessageBoxA", windll.user32), paramflags)


class HelloWorldEffect(inkex.Effect):
    """
    Example Inkscape effect extension.
    Creates a new layer with a "Hello World!" text centered in the middle of the document.
    """
    def __init__(self):
        """
        Constructor.
        Defines the "--what" option of a script.
        """
        # Call the base class constructor.
        inkex.Effect.__init__(self)

        # Define string option "--what" with "-w" shortcut and default value "World".
        self.OptionParser.add_option('-w', '--what', action = 'store',
          type = 'string', dest = 'what', default = 'World',
          help = 'What would you like to greet?')

    def effect(self):
        """
        Effect behaviour.
        Overrides base class' method and inserts "Hello World" text into SVG document.
        """
        # Get script's "--what" option value.
        what = self.options.what

        # Get access to main SVG document element and get its dimensions.
        svg = self.document.getroot()
        # or alternatively
        # svg = self.document.xpath('//svg:svg',namespaces=inkex.NSS)[0]

        # Again, there are two ways to get the attibutes:
        width  = inkex.unittouu(svg.get('width'))
        height = inkex.unittouu(svg.attrib['height'])

        # Create a new layer.
        layer = inkex.etree.SubElement(svg, 'g')
        layer.set(inkex.addNS('label', 'inkscape'), 'Hello %s Layer' % (what))
        layer.set(inkex.addNS('groupmode', 'inkscape'), 'layer')

        # Create text element
        text = inkex.etree.Element(inkex.addNS('text','svg'))
        text.text = 'Hello %s!' % (what)
       

        # Set text position to center of document.
        text.set('x', str(width / 2))
        text.set('y', str(height / 2))

        # Center text horizontally with CSS style.
        style = {'text-align' : 'center', 'text-anchor': 'middle'}
        text.set('style', formatStyle(style))

        # Connect elements together.
        layer.append(text)
       
        #!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
        #!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
        #!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
       
        string  = str(text.get('x'))  #How to modify this to get pixel width of text element?
       
        MessageBox(flags=1, text="Pixel length of text: " + string )
       
       
        #!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
        #!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
        #!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

# Create effect instance and apply it.
effect = HelloWorldEffect()
effect.affect()

morits
Posts: 3
Joined: Mon Jul 08, 2013 6:40 pm

Re: How to get text length in (python) extension

Postby morits » Thu Jul 11, 2013 7:16 pm

hey matameko,

did you find a solution for this?

best wishes,
morits

matameko
Posts: 2
Joined: Wed Aug 08, 2012 4:44 pm

Re: How to get text length in (python) extension

Postby matameko » Thu Jul 11, 2013 8:51 pm

No. I tried to create a formula editor as inkscape extension but stopped this approach
because I was not able to get the size information.
Now I use another approach that works with pyton and qt text elements:
http://sourceforge.net/projects/ikwed (first version is not finished yet).


Return to “Programming”