• Stars
    star
    121
  • Rank 293,924 (Top 6 %)
  • Language
    C#
  • License
    MIT License
  • Created over 9 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Photoshop Document Parser for .Net

Ntreev Photoshop Document Parser for .Net

NuGet version (psd-parser)

Developer

[email protected]

Summary

ํฌํ† ์ƒต ํŒŒ์ผ์„ ๋ถ„์„ํ•ด ํ•„์š”ํ•œ ์ •๋ณด๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋Š” .net ์šฉ ๋ผ์ด๋ธŒ๋Ÿฌ๋ฆฌ์ž…๋‹ˆ๋‹ค. .Net framework 3.5 ๊ธฐ๋ฐ˜์œผ๋กœ ์ œ์ž‘๋˜์—ˆ์œผ๋ฉฐ Unity3D์—์„œ๋„ ์ œ์•ฝ์—†์ด ์‚ฌ์šฉ์ด ๊ฐ€๋Šฅํ•ฉ๋‹ˆ๋‹ค. ๋ผ์ด๋ธŒ๋Ÿฌ๋ฆฌ๋Š” ์–ด๋„๋น„์—์„œ ์ œ๊ณตํ•˜๋Š” ํฌํ† ์ƒต ํŒŒ์ผ ํฌ๋งท ์ •๋ณด ๊ธฐ๋ฐ˜์œผ๋กœ ์ œ์ž‘๋˜์—ˆ์Šต๋‹ˆ๋‹ค. http://www.adobe.com/devnet-apps/photoshop/fileformatashtml/ Image Resource IDs์™€ Additional Layer Information ๋ถ€๋ถ„์€ ์ข…๋ฅ˜๊ฐ€ ์›Œ๋‚™ ๋งŽ์•„์„œ ํ•„์š”ํ•œ ๋ถ€๋ถ„์„ ์ œ์™ธํ•˜๊ณ ๋Š” ํŒŒ์‹ฑ ์ž‘์—…์„ ํ•˜์ง€์•Š์•˜์Šต๋‹ˆ๋‹ค.

๋ผ์ด๋ธŒ๋Ÿฌ๋ฆฌ์—์„œ ์ œ๊ณตํ•˜๋Š” PsdViewer๋Š” ์ •๋ณด๋งŒ ๋ณผ ์ˆ˜ ์žˆ๋Š” ๊ฐ„๋‹จํ•œ ํ”„๋กœ๊ทธ๋žจ์ž…๋‹ˆ๋‹ค. ๋ ˆ์ด์–ด์˜ ๊ทธ๋ฆผ๋‚ด์šฉ์„ ๋ณด์—ฌ์ฃผ์ง€๋Š” ์•Š์Šต๋‹ˆ๋‹ค.

์ž‘์—…์˜ ๋ชฉํ‘œ๋Š” ์‰ฌ์šด ์‚ฌ์šฉ๋ฒ•, ๋ชจ๋“  ์ •๋ณด ์ถ”์ถœ, ๋น ๋ฅธ ์†๋„์ž…๋‹ˆ๋‹ค.

Development Environment

  • Microsoft Visual Studio Professional 2017

  • C# 7.0

  • .NET Framework 4.5

    old version has moved to branch 1.0

Test Environment

Photoshop CC

Usage

SourceCode:

using (PsdDocument document = PsdDocument.Create(filename))
{
	foreach (var item in document.Childs)
	{
		Console.WriteLine("LayerName : " + item.Name);
	}
}

License

Ntreev Photoshop Document Parser for .Net

Released under the MIT License.

Copyright (c) 2015 Ntreev Soft co., Ltd.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.