• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Writing Merged composite image to PSD file??

New Here ,
Oct 04, 2008 Oct 04, 2008

Copy link to clipboard

Copied

Hi,

I'm developing PSD file writer which adds layers to PSD file.
Can anyone tell me how to write merged composite image to psd file,
so that it shows composite image when i open that PSD file in other image viewer applications such as irfan viewer or Quick time picture viewer.

Currently i've been successful in exporting each image as layer. But due to some reasons merged composite doesn't show up.

Thanks in Advance,
-Suma
TOPICS
SDK

Views

1.6K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Participant ,
Oct 04, 2008 Oct 04, 2008

Copy link to clipboard

Copied

The merged composite is stored after all layers. Have you studied the PSD spec? I have written a PSD parser which may help you. http://telegraphics.com.au/svn/psdparse/trunk

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 05, 2008 Oct 05, 2008

Copy link to clipboard

Copied

ya i'm writing the last part of PSD file "image data section" but still merged composite doesn't show up. Rendered file opens in photoshop with all the layers, but nothing shows up in image viewer applcations.

I've checked out the code but m not able to compile it.. not able to include "xlocale.h"

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 06, 2008 Oct 06, 2008

Copy link to clipboard

Copied

Thank u so much for ur help. I got it working :)

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Oct 12, 2008 Oct 12, 2008

Copy link to clipboard

Copied

I apologise that the 'psdparse' program has been unbuildable in the repo for a little while. I finally fixed it today after an unconscionable delay - version 2.5.3 should build fine on Linux, etc.

Perhaps it can help you debug your PSD editor.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 13, 2009 Feb 13, 2009

Copy link to clipboard

Copied

Hi,

I am new to photoshop.My requirement is extract the different layers and other information from psd file.
I took the code from http://telegraphics.com.au/svn/psdparse/trunk.But iam not able to build it.I tried it in Linux environment.
Anybody can help me in this regard.Its very urgent.

Thanks in advance.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 13, 2009 Feb 13, 2009

Copy link to clipboard

Copied

Are you aware the Photoshop itself will split the layers into separate
files? This could be done with an action or script, and would be much
simpler than writing your own filter or format plugin.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Feb 13, 2009 Feb 13, 2009

Copy link to clipboard

Copied

@kumarz4321
The program builds fine for me. Please contact me directly with details of your problem: support@telegraphics.com.au (I am the author).

It will separate all raster layers in a PSD or PSB file, to individual PNG files.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 16, 2009 Feb 16, 2009

Copy link to clipboard

Copied

Hi Mr Toby thain,

I copied all the files in a folder named Parser from http://telegraphics.com.au/svn/psdparse/trunk.Then i went to the folder parser and gave a command make.It didn't worked.
Actually iam very new to this area.So can you kindly help me.Its very urgent.

Thanks in advance

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Feb 24, 2009 Feb 24, 2009

Copy link to clipboard

Copied

Try:

$ ./configure
$ make

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Mar 18, 2009 Mar 18, 2009

Copy link to clipboard

Copied

To "Suma"

Did you actually manage to make an Irfan-plugin or something to that effect? I'm searching for a way to view psd's saved without the composite layer - possibly by constructing the layers on-the-fly as I browse through the files. I've found tools capable of showing the contents of the separate layers, but no luck finding an application that will overlay all the layers and form one composite image.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Mar 20, 2009 Mar 20, 2009

Copy link to clipboard

Copied

LATEST
Laurids, if you mean re-creating all of Photoshop's compositing functionality - effects, vectors, text, etc - it simply isn't documented well enough for that to be possible (no accident, I'm sure), but even if it were, it's unlikely the effort would be within any realistic budget.

On the other hand... if you only want to support a very limited subset of simple raster layer compositing features, that could be achievable - possibly using my psdparse code as a starting point.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines