透過網頁讀取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...

47,285 Responses

  1. porn表示:

    Good day! I know this is kinda off topic but I was wondering
    which blog platform are you using for this site? I’m getting fed up
    of WordPress because I’ve had issues with hackers and I’m looking at alternatives for another platform.
    I would be awesome if you could point me in the direction of a good platform.

  2. Jasonfew表示:

    NHL news https://nhl-ar.com (National Hockey League) – the latest and most up-to-date NHL news for today.

  3. web site表示:

    I know this site presents quality based articles or reviews and additional information, is there any
    other web site which
    provides these kinds of stuff in quality?

  4. A Look Into The Future How Will The Boat Accident Claim Industry Look Like In 10 Years?
    boat Accident Lawyer

  5. A片表示:

    A片

    Hi! I just wanted to ask if you ever have any issues with hackers?
    My last blog (wordpress) was hacked and I ended up losing many months of
    hard work due to no data backup. Do you have any methods to
    prevent hackers?

  6. 9 Lessons Your Parents Taught You About Upvc Windows Near Me upvc windows near me

  7. 20 Resources That Will Make You More Efficient With Mercedes Replacement Key Cost Mercedes Key Repair

  8. Five Killer Quora Answers On Replacement Double Glazing Units Near Me Double Glazing Units Near Me

  9. Oh my goodness! Awesome article dude! Thank you,
    However I am encountering troubles with your RSS. I
    don’t know why I can’t join it. Is there anybody having identical RSS issues?
    Anyone that knows the solution will you kindly respond?
    Thanks!!

  10. Thanks for ones marvelous posting! I definitely enjoyed reading it, you will be a great author.I will be sure to bookmark your blog and may come back later in life.
    I want to encourage you to ultimately continue your great posts,
    have a nice weekend!

  11. Great site! I recommend to everyone!The best hotels

  12. Shop-Photo.Ru表示:

    11 Ways To Completely Redesign Your Replacement Key For Peugeot Partner Van Car Key
    Cover Peugeot (Shop-Photo.Ru)

  13. porn表示:

    When I originally commented I clicked the “Notify me when new comments are added”
    checkbox and now each time a comment is added I get three e-mails
    with the same comment. Is there any way you can remove people
    from that service? Thanks a lot!

  14. 10 Quick Tips For Window Repair Near upvc window Repairs

  15. 20 Questions You Should Always Have To Ask About Nespresso Pods Machine Before Purchasing It Nespresso machine prices

  16. This piece of writing is truly a fastidious one it assists new net people, who
    are wishing in favor of blogging.

  17. Hi there just wanted to give you a quick heads up and let you know a few of
    the images aren’t loading correctly. I’m not sure why but I
    think its a linking issue. I’ve tried it in two different browsers and both show the same outcome.

    Here is my page … Emporia Medical Malpractice Lawyer

  18. You’ll Be Unable To Guess Fela Attorneys Near Me’s Tricks fela attorneys Near me

  19. 成人影片表示:

    成人影片

    Wow, incredible blog layout! How long have you been blogging for?
    you made blogging look easy. The overall look of your website is
    excellent, as well as the content!

  20. Why We Do We Love Railroad Injuries Litigation (And
    You Should, Too!) railroad injuries lawyer

  21. Help you get the most out of the services – Promonode

  22. LewisCaume表示:

    Spider-Man https://spiderman.kz the latest news, articles, reviews, dates, spoilers and other latest information. All materials on the topic “Spider-Man”

  23. fitters表示:

    “The Ultimate Cheat Sheet” On Double Glazing Supplies Near Me fitters

  24. Meagan表示:

    I have learn a few good stuff here. Certainly worth bookmarking for revisiting.
    I surprise how so much attempt you put to create this sort of magnificent informative web site.

  25. En guvenilir kumarhanede kazan?n Sweet bonanza

  26. Geoffrey表示:

    I know this if off topic but I’m looking into starting my own blog and was curious what
    all is needed to get set up? I’m assuming having a blog like yours would cost a pretty
    penny? I’m not very web smart so I’m not 100% positive. Any recommendations or
    advice would be greatly appreciated. Appreciate
    it

  27. Could Coffee To Bean Machine Be The Answer To Dealing With 2023?
    Coffee Bean To Cup

  28. Paito HK表示:

    whoah this blog is magnificent i like reading your articles.

    Stay up the great work! You understand, a lot of people are searching round for this info, you
    could help them greatly.

  29. Seveceginiz bir online casino Sweet bonanza

發佈留言

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