GithubHelp home page GithubHelp logo

bellyabc123 / py-psd-enginedata Goto Github PK

View Code? Open in Web Editor NEW

This project forked from firstplacelabs/py-psd-enginedata

0.0 2.0 0.0 154 KB

Reads the text, font type, font size and color from a photoshop psd file

License: MIT License

Python 100.00%

py-psd-enginedata's Introduction

py-psd-engineData

Reads the text, font type, font size and color from a photoshop psd file

To first obtain the engineData you will need to install psd-tools, then you can parse the engineData with the following:

#HOW TO

from psd_tools import PSDImage
from engineData import getFontAndColorDict
#open the psd
fname = 'myPsdName.psd'
psd = PSDImage.load(fname)


for layer in reversed(psd.layers):
    #get the raw engine data
    rawData = layer._tagged_blocks['TySh'][-1][-1][-1][-1]
    rawDataValue = rawData.value
    
    propDict= {'FontSet':'','Text':'','FontSize':'','A':'','R':'','G':'','B':''}
    getFontAndColorDict(propDict,engineDataValue)
    #Then just index into the dictionary to get the values
    myText = propDict['Text']
    myFont = propDict['FontSet']

*note A R G B are percentages so to get the actual value multiply by 255

py-psd-enginedata's People

Contributors

firstplacelabs avatar

Watchers

AAA avatar James Cloos avatar

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.