FreeType

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Glich

    #1

    FreeType

    Hi, where can I download freetype (>= 2.1.7)? I need it to use
    matplotlib. I have search a lot but still can not find it. Thanks!

  • Michael Bentley

    #2
    Re: FreeType


    On May 17, 2007, at 12:29 PM, Glich wrote:
    Hi, where can I download freetype (>= 2.1.7)? I need it to use
    matplotlib. I have search a lot but still can not find it. Thanks!
    Type 'freetype' in the google search form, and click the "I'm Feeling
    Lucky" button. If that doesn't work for some reason, go to
    freetype.org.



    Comment

    • Glich

      #3
      Re: FreeType

      I've been there. All the code is in C/C++, don't I need it in python?
      I will explore the software. I dismissed this because there was no
      python. I am knew to all of this. Thanks for your reply.

      Comment

      • Robert Kern

        #4
        Re: FreeType

        Glich wrote:
        I've been there. All the code is in C/C++, don't I need it in python?
        I will explore the software. I dismissed this because there was no
        python. I am knew to all of this. Thanks for your reply.
        matplotlib has extension modules that wrap the C library. You will need to
        install libfreetype, then build matplotlib.

        --
        Robert Kern

        "I have come to believe that the whole world is an enigma, a harmless enigma
        that is made terrible by our own mad attempt to interpret it as though it had
        an underlying truth."
        -- Umberto Eco

        Comment

        • Michael Bentley

          #5
          Re: FreeType


          On May 17, 2007, at 2:47 PM, Glich wrote:
          I've been there. All the code is in C/C++, don't I need it in python?
          I will explore the software. I dismissed this because there was no
          python. I am knew to all of this. Thanks for your reply.
          The c stuff (freetype) is what you need (it gets installed as a
          library that can be used by python or any other software entity that
          needs its functionality). It may seem a little weird, but lots of
          the stuff you call from python is written in c. More than likely,
          your python interpreter is also written in c :-)


          Comment

          • Steve Holden

            #6
            Re: FreeType

            Michael Bentley wrote:
            On May 17, 2007, at 2:47 PM, Glich wrote:
            >
            >I've been there. All the code is in C/C++, don't I need it in python?
            >I will explore the software. I dismissed this because there was no
            >python. I am knew to all of this. Thanks for your reply.
            >
            The c stuff (freetype) is what you need (it gets installed as a
            library that can be used by python or any other software entity that
            needs its functionality). It may seem a little weird, but lots of
            the stuff you call from python is written in c. More than likely,
            your python interpreter is also written in c :-)
            >
            >
            Alternatively use the Python Imaging Library (PIL), which I believe
            includes freetype support.

            regards
            Steve
            --
            Steve Holden +1 571 484 6266 +1 800 494 3119
            Holden Web LLC/Ltd http://www.holdenweb.com
            Skype: holdenweb http://del.icio.us/steve.holden
            ------------------ Asciimercial ---------------------
            Get on the web: Blog, lens and tag your way to fame!!
            holdenweb.blogs pot.com squidoo.com/pythonology
            tagged items: del.icio.us/steve.holden/python
            All these services currently offer free registration!
            -------------- Thank You for Reading ----------------

            Comment

            • Steve Holden

              #7
              Re: FreeType

              Michael Bentley wrote:
              On May 17, 2007, at 2:47 PM, Glich wrote:
              >
              >I've been there. All the code is in C/C++, don't I need it in python?
              >I will explore the software. I dismissed this because there was no
              >python. I am knew to all of this. Thanks for your reply.
              >
              The c stuff (freetype) is what you need (it gets installed as a
              library that can be used by python or any other software entity that
              needs its functionality). It may seem a little weird, but lots of
              the stuff you call from python is written in c. More than likely,
              your python interpreter is also written in c :-)
              >
              >
              Alternatively use the Python Imaging Library (PIL), which I believe
              includes freetype support.

              regards
              Steve
              --
              Steve Holden +1 571 484 6266 +1 800 494 3119
              Holden Web LLC/Ltd http://www.holdenweb.com
              Skype: holdenweb http://del.icio.us/steve.holden
              ------------------ Asciimercial ---------------------
              Get on the web: Blog, lens and tag your way to fame!!
              holdenweb.blogs pot.com squidoo.com/pythonology
              tagged items: del.icio.us/steve.holden/python
              All these services currently offer free registration!
              -------------- Thank You for Reading ----------------

              Comment

              • Robert Kern

                #8
                Re: FreeType

                Steve Holden wrote:
                Alternatively use the Python Imaging Library (PIL), which I believe
                includes freetype support.
                The OP seems to be trying to build matplotlib, which actually does require the
                FreeType library. The PIL, lovely though it is, is not a substitute.

                --
                Robert Kern

                "I have come to believe that the whole world is an enigma, a harmless enigma
                that is made terrible by our own mad attempt to interpret it as though it had
                an underlying truth."
                -- Umberto Eco

                Comment

                Working...