透過網頁讀取PSD後,依圖層輸出PNG檔案

在前面介紹過網頁可以讀取PSD檔案並擷取到該檔案的資訊,接著我們會希望能透過網頁上傳PSD檔之後,依照圖層來輸出圖片,同樣是利用PSD.js來輔助進行,可以透過我們製作的範例頁面來進行輸出測試。

預設輸出效果


透過PSD.js可將PSD內的各圖層輸出成PNG圖檔,亦可轉成Base 64圖檔格式,惟輸出時每個圖檔的尺寸並不會根據整體PSD檔大小來配置。

圖層配置

Layer 1 (421 x 38)
Layer 2 (490 x 479)
Layer 3 (1024 x 800)

<!DOCTYPE html>
<html>
<head>
  <title>psd.js image example</title>
  <style type="text/css">
  body, html {
    padding: 0;
    margin: 0;
  }

  #dropzone {
    width: 500px;
    height: 100px;
    border: 1px #ababab dashed;
    margin: 50px auto;
  }

  #dropzone p {
    text-align: center;
    line-height: 100px;
    margin: 0;
    padding: 0;
  }

  #image {
    text-align: center;
  }
  </style>

  <script type="text/javascript" src="psd.min.js"></script>
</head>
<body>
  <div id="dropzone">
    <p>Drop PSD here</p>
  </div>
  <div id="image"></div>
  <pre id="data"></pre>

  <script type="text/javascript">
  (function () {
    const PSD = require('psd');

    document.getElementById('dropzone').addEventListener('dragover', onDragOver, true);
    document.getElementById('dropzone').addEventListener('drop', onDrop, true);

    function onDragOver(e) {
      e.stopPropagation();
      e.preventDefault();
      e.dataTransfer.dropEffect = 'copy';
    }

    function onDrop(e) {
      e.stopPropagation();
      e.preventDefault();
      PSD.fromEvent(e).then(function (psd) {
		for (var i = 0; i < psd.layers.length; i ++){
			document.getElementById('image').appendChild(psd.layers[i].image.toPng());
		}
      });
    }
	
  }());
  </script>
</body>
</html>

依照整體PSD配置進行輸出


我們希望讓每個圖片在輸出後能保時相同的尺寸,也就是依照PSD的畫布大小來輸出每一張圖檔,但在原生PSD.js中並不具備這樣的功能,於是我們透過下述的方式來達成:

  1. 擷取PSD資訊並將圖檔轉為Base 64格式
  2. 產生與PSD尺寸大小相同的HTML Canvas
  3. 將產生的Base 64圖檔,依照原始位置放入Canvas中
  4. 將Canvas轉成PNG圖檔
圖層配置
Layer 1 (1024 x 800)
Layer 2 (1024 x 800)
Layer 3 (1024 x 800)

可以參考我們製作的範例頁面

<!DOCTYPE html>
<html>
<head>
  <title>psd.js image example</title>
  <style type="text/css">
  body, html {
    padding: 0;
    margin: 0;
  }
  #dropzone {
    width: 500px;
    height: 100px;
    border: 1px #ababab dashed;
    margin: 50px auto;
  }
  #dropzone p {
    text-align: center;
    line-height: 100px;
    margin: 0;
    padding: 0;
  }
  #image {
    text-align: center;
  }
  </style>
  <script type="text/javascript" src="psd.min.js"></script>
</head>
<body>
  <div id="dropzone">
    <p>Drop PSD here</p>
  </div>
  <div id="image"></div>
  <pre id="data"></pre>
  <script type="text/javascript">
  (function () {
    const PSD = require('psd');
    document.getElementById('dropzone').addEventListener('dragover', onDragOver, true);
    document.getElementById('dropzone').addEventListener('drop', onDrop, true);
    function onDragOver(e) {
      e.stopPropagation();
      e.preventDefault();
      e.dataTransfer.dropEffect = 'copy';
    }
    function onDrop(e) {
      e.stopPropagation();
      e.preventDefault();
      PSD.fromEvent(e).then(function (psd) {
    const PSDWidth = psd.tree().width;
    const PSDHeight = psd.tree().height;
    for (var i = 0; i < psd.layers.length; i ++){
      const img = new Image();
      img.src = psd.layers[i].image.toBase64();
      console.log(psd);
      const layerWidth = psd.layers[i].width;
      const layerHeight = psd.layers[i].height;
      const layerLeft = psd.layers[i].left;
      const layerTop = psd.layers[i].top;
      
      const canvas = document.createElement("canvas");
      canvas.setAttribute('class', "canvas");
      canvas.width = PSDWidth;
      canvas.height = PSDHeight;
      console.log("canvas :", canvas);
      img.onload = function(){
        canvas.getContext("2d").drawImage(img, layerLeft, layerTop, layerWidth, layerHeight);
        document.getElementById('image').appendChild(canvas);
      }
    }
      });
    }
  
  }());
  </script>
</body>
</html>

PSD檔案輸出限制


1. 無法輸出帶有效果的圖片

在PSD中我們可能會針對圖層套用一些效果,例如:陰影、光暈、筆畫…等等,但在輸出後的圖檔將不會帶有這些效果。

圖層設定

解決方法:透過點陣化圖層效果,即可輸出相對應的圖檔。

2. 無法輸出帶有遮色片效果的圖片

圖層設定
Before
After

解決方法:將圖層轉為智慧型物件,即可輸出相對應的圖檔。

3. 無法依圖層混合模式輸出圖片

Layer 1
Layer 2
Layer 3
Layer 4

解決方法:無法解決

You may also like...

46,595 Responses

  1. What’s The Job Market For Double Glazed Window Repairs Near Me Professionals?
    window Repairs near Me

  2. En iyi kumarhanede buyuk kazan?n Sweet bonanza

  3. The Biggest Problem With Window Repairs Near Me,
    And How You Can Fix It Upvc window repairs near me

  4. 15 Ideas For Gifts For Those Who Are The Double Glazing Window Repairs Near
    Me Lover In Your Life double glased Doors

  5. This Week’s Most Popular Stories About Birmingham Windows timber windows birmingham

  6. A Quick Introduction To Playing Blackjack 에볼루션 주식

  7. Window Repair Near Me Tools To Make Your Everyday Lifethe Only Window Repair Near Me Trick That Should
    Be Used By Everyone Know window Repair Near me (https://reserv.oy2B23Yvwhete.com/bbs/Board.php?bo_table=free&wr_id=716706)

  8. Door And Window Doctor Tools To Ease Your Everyday Lifethe Only Door And Window Doctor
    Trick Every Person Should Learn door and window doctor (daparamall.Astroweb.co.kr)

  9. 5 Killer Ways To Generate Money From Non Commercial!
    Promote With The Focus 워드프레스 seo

  10. The 9 Things Your Parents Teach You About Bifold Doctor Bifold Doctor
    (welnesbiolabs.com)

  11. fitted表示:

    The Best Double Glazing Installers Near Me Strategies To Transform Your Life
    fitted

  12. Upvc Windows Near Me Tools To Ease Your Daily Life Upvc Windows Near Me Trick That Every Person Must
    Know upvc Windows near me

  13. Incredible points. Outstanding arguments. Keep up the amazing effort.

  14. Guide To Double Glazing Near Me: The Intermediate Guide Towards Double Glazing Near Me Double Glazing Near Me

  15. You’ll Never Be Able To Figure Out This Double Glazed Units Near Me’s Benefits
    double glazed units near me

  16. view表示:

    I believe everything posted made a great deal of sense.
    However, think on this, suppose you wrote a catchier title?
    I mean, I don’t wish to tell you how to run your website, but what if
    you added a title that makes people want more? I mean 透過網頁讀取PSD後,依圖層輸出PNG檔案 – 馬老師 雲端研究室 is kinda boring.
    You should peek at Yahoo’s front page and note how they create news headlines to get viewers to open the links.
    You might add a video or a picture or two to get readers interested about everything’ve got
    to say. In my opinion, it would make your posts a little bit more interesting.

  17. Guide To Double Glazed Window Near Me: The Intermediate Guide For Double Glazed Window Near Me
    Double Glazed Window Near Me

  18. Maple表示:

    20 Resources That Will Make You Better At Double Glazing Window
    Repairs Near Me double glazed wood windows (Maple)

  19. Kanye West music art symbolizes of his eclectic musical and artistic
    capabilities. These artworks are more than simply depict his tracks, but also
    express his creativity.

    Kanye’s artistic musical expressions are distributed in varied styles and forms.
    Including nonrealistic meanings of musical themes to factual depictions of his unforgettable album
    cover designs, these artistic representations illustrate the depth of
    the rapper’s musical and artistic tradition.

    A major attraction of Kanye’s artistic musical expressions is its capability
    to evoke sentiments through creative representation. Each one piece of art explains us a adventure and evokes a good pertaining
    to inspirations so innovation.

    Besides, Kanye’s music-inspired artworks frequently
    includes words from his compositions. These quotes contribute
    a covering of musical and emotional depth to the perfect art form.

    Shopping for Kanye’s music-inspired artworks can be a unique and innovative working experience
    just for fans of Kanye West and his awesome rock music.

    Finality, Kanye’s music-inspired artworks isn’t simply a representation of the musical and imaginative wizard but
    in addition another fit towards their endure from musical technology through the world.

  20. See What Upvc Window Repair Near Me Tricks The Celebs Are Utilizing window Repair near me

  21. Top 10 Seo Terms Explained 검색엔진최적화 업체 (tujuan.grogol.us)

  22. Ye’s music-inspired art portrays of his diverse musical and artistic artistry.
    These art forms aren’t just showcase his songs, but also portray
    his artistic genius.

    Kanye’s music-themed art are sold in several styles and figures.

    Featuring nonfigurative depictions of musical themes
    to reasonable descriptions of his unforgettable album artwork,
    these artistic expressions illustrate the vastness of Ye’s musical heritage.

    A main draw of Kanye’s music-inspired artworks is its capacity to produce responses
    through imaginative depiction. Every single work explains us a history and furthermore induces a brand new excuse pertaining to inventiveness so creativity and
    originality.

    Additionally, Kanye’s art inspired by music typically includes statements from his albums.
    These words inject a covering of musical
    and imaginative detail to a huge art work.

    Buying Kanye’s artistic musical expressions is a one of a kind experience to get proponents associated with the person and his
    awesome background music.

    And so, Kanye’s music-inspired artworks isn’t exactly a demonstration of the musical and emotional masterpiece
    but as well a fabulous fit to make sure you their change from music inside of anyone on the planet.

  23. Kanye’s music-inspired artworks symbolizes of his
    manifold musical and expressive talents. These artworks do
    more than just illustrate his songs, but also evoke his creative spirit.

    Ye’s music-inspired art are sold in a variety of styles and formats.
    From nonfigurative meanings of musical designs to factual explanations of Kanye’s classic
    record covers, these creations present the depth
    of the icon’s musical and visual heritage.

    A notable highlight of Kanye’s music-themed art is its capability to
    arouse experiences through visionary representation. Every single one piece
    of music explains a fabulous story and causes the right main reason of motivation additionally imagination.

    Not only that, Kanye’s artistic musical expressions often involves lyrics
    from his compositions. These quotes deliver a layer of musical and imaginative depth to the perfect creative art.

    Shopping for Kanye’s art inspired by music could be a unique experience for lovers involving Kanye West and his
    rock music.

    In the final analysis, Kanye’s artistic musical expressions
    is not just a demonstration of his or her musical and visual brilliant but also a definite good to make sure you the impact
    related to rock music concerning any world.

  24. Paying Points On A Home Loan Loan: Now When Was Is A Method To?
    중소기업 대출

  25. Kanye’s music-inspired artworks embodies of his extensive musical capabilities.
    These art forms do more than just honor his music, but also
    evoke his creative spirit.

    Kanye’s musical artwork are given in various styles and models.
    Featuring impractical explanations of musical concepts to real expressions of Ye’s legendary album cover designs, these visual compositions present the reach
    of Kanye’s musical and imaginative lineage.

    One of the key highlights of Kanye’s art inspired by music is its aptitude
    to stimulate feelings through beautiful demonstration.
    Each piece explains us a single information and thus results in the good among inventiveness on top of that creativity
    and therefore.

    Also, Kanye’s music-inspired artworks often involves expressions from his
    records. These verses contribute a tier of musical and creative density to a huge create.

    Purchasing Kanye West music art works as a
    incredible suffer meant for proponents associated with Kanye with his fantastic rock music.

    To conclude, Kanye West music art is not merely a portrayal
    of his or her musical and visual wizard but as well the particular proper on their endure of
    favorite entirely on society.

  26. pepek becek表示:

    Hey very interesting blog!

  27. Data Sgp表示:

    Hi are using WordPress for your site platform?
    I’m new to the blog world but I’m trying to get started and set up
    my own. Do you need any coding expertise to make your own blog?
    Any help would be really appreciated!

  28. Kanye West music art captures of his extensive musical and innovative gifts.
    These designs aren’t just celebrate his musical journey,
    but also exhibit his artistic vision.

    Ye’s music-inspired art are given in several styles and kinds.
    Featuring nonobjective descriptions of musical models to
    logical presentations of Kanye’s iconic music covers, these art forms
    illustrate the size of the artist’s musical
    tradition.

    One of the standout features of Kanye West musical creations is its aptitude to arouse
    responses through aesthetic exhibit. Each art piece communicates some sort
    of scenario and also causes a brand new good involved with inspirations and thus creativity and therefore.

    To add, Kanye’s music-themed art usually includes phrases from his hits.
    These lyrics add a layer of musical over all size to the
    perfect creative creation.

    Acquiring Kanye’s musical artwork is a major one of a kind suffer to
    get enthusiasts pertaining to the man and also his sound.

    In the final analysis, Kanye’s music-themed art
    isn’t just an expression of our musical and artistic genius and creativity
    but additionally a definite right choice towards this
    endure of favorite through any world.

  29. Pretty section of content. I just stumbled upon your weblog and in accession capital
    to assert that I get actually enjoyed account your blog
    posts. Anyway I’ll be subscribing to your augment
    and even I achievement you access consistently fast.

  30. 20 Up-And-Comers To Follow In The Double Glazing Firms Near Me Industry replacement double
    glazing (https://www.pitchdecks.tv/)

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。