タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

psdとjsに関するwakuworksのブックマーク (2)

  • PSD.js by meltingice

    A Photoshop PSD file parser in Javascript for NodeJS and the browser. View the Project on GitHub meltingice/psd.js Download ZIP File Download TAR Ball View On GitHub A general purpose PSD parser written in Coffeescript. Based off of PSD.rb. It allows you to work with a Photoshop document in a manageable tree structure and find out important data such as: Document structure Document size Layer/fold

  • FACEs: PsdReader.js

    PSDから画像を取得。Chrome、FireFoxのみ。 FileReader メモ ・Safari とスマホに FileReader がない。 File API も最小限。 ・FireFox は File API に lastModifiedDate がない。 //こんな感じで使う。 var reader = new FileReader(file); var uploader = new FileUploader(); var psd; reader.onload = function(e){ psd = new PsdReader(e.target.result); var base64 = psd.getDataURL().split(',').pop() uploader.upload(base64); } reader.readAsBinaryString(file); P

    wakuworks
    wakuworks 2011/09/04
    PSDから画像を取得。Chrome、FireFoxのみ。
  • 1