Giter VIP home page Giter VIP logo

Comments (2)

meltingice avatar meltingice commented on August 22, 2024

If I'm following the question correctly...

If you want to retrieve text and font data, the easiest way is to do:

psd.tree.children_at_path('path/to/layer').first.text

That will return something like:

{:value=>"Make a change and save.",
 :font=>
  {:name=>"HelveticaNeue-Light",
   :sizes=>[33.0],
   :colors=>[[255, 19, 120, 98]],
   :css=>
    "font-family: \"HelveticaNeue-Light\", \"AdobeInvisFont\", \"MyriadPro-Regular\";\nfont-size: 33.0pt;\ncolor: rgba(19, 120, 98, 255);"},
 :left=>0,
 :top=>0,
 :right=>0,
 :bottom=>0,
 :transform=>{:xx=>1.0, :xy=>0.0, :yx=>0.0, :yy=>1.0, :tx=>456.0, :ty=>459.0}}

As you can see, CSS is exported with the rest of the text data. If you want to work more directly with the text data, you can do:

type = psd.tree.children_at_path('path/to/layer').first.type
type.text_value #= text content in text area
type.fonts #= list of all fonts for the text area
type.sizes #= all the font sizes used in the text area
type.colors #= all the colors used in the text area, RGB format
type.parser.to_css #= the css styles for the text

from psd.rb.

HiZhaoxiaoyang avatar HiZhaoxiaoyang commented on August 22, 2024

thanks I'll give it a try.

发自我的 iPhone

在 2013-8-6,22:10,Ryan LeFevre [email protected] 写道:

If I'm following the question correctly...

If you want to retrieve text and font data, the easiest way is to do:

psd.tree.children_at_path('path/to/layer').first.text
That will return something like:

{:value=>"Make a change and save.",
:font=>
{:name=>"HelveticaNeue-Light",
:sizes=>[33.0],
:colors=>[[255, 19, 120, 98]],
:css=>
"font-family: "HelveticaNeue-Light", "AdobeInvisFont", "MyriadPro-Regular";\nfont-size: 33.0pt;\ncolor: rgba(19, 120, 98, 255);"},
:left=>0,
:top=>0,
:right=>0,
:bottom=>0,
:transform=>{:xx=>1.0, :xy=>0.0, :yx=>0.0, :yy=>1.0, :tx=>456.0, :ty=>459.0
}}
As you can see, CSS is exported with the rest of the text data. If you want to work more directly with the text data, you can do:

type = psd.tree.children_at_path('path/to/layer').first.type
type.text_value #= text content in text area
type.fonts #= list of all fonts for the text area
type.sizes #= all the font sizes used in the text area
type.colors #= all the colors used in the text area, RGB format
type.parser.to_css #= the css styles for the text

Reply to this email directly or view it on GitHub.

from psd.rb.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.