0
How to get pixel data in the format I want
New Here
,
/t5/photoshop-ecosystem-discussions/how-to-get-pixel-data-in-the-format-i-want/td-p/1448221
Apr 12, 2006
Apr 12, 2006
Copy link to clipboard
Copied
I'm writing a format plug-in and am having some difficulty getting the pixel data from photoshop in the format I want. From what I gather from the documentation in the SDK I need to specify the following to tell photoshop what format to deliver my pixels in:
theRect
loPlane
hiPlane
data
colBytes
rowBytes
planeBytes
planeMap
I specify all of these appropriately for a 32 bit rgba8888 uncompresssed image and it works just fine... but ONLY if the image I load in the first place matches the format I am requesting. If the image I load is some other format, like a 256 color image with a palette, gFormatRecord->advanceState() just fails with a nebulous -30500 error code (formatBadParameters) instead of delivering pixel data.
So my big question is this: Is Photoshop capable of doing the conversion and delivering the pixels to my format plug-in in my requested format? If it CAN do it, what might I be doing wrong? Please help! Thanks!!
theRect
loPlane
hiPlane
data
colBytes
rowBytes
planeBytes
planeMap
I specify all of these appropriately for a 32 bit rgba8888 uncompresssed image and it works just fine... but ONLY if the image I load in the first place matches the format I am requesting. If the image I load is some other format, like a 256 color image with a palette, gFormatRecord->advanceState() just fails with a nebulous -30500 error code (formatBadParameters) instead of delivering pixel data.
So my big question is this: Is Photoshop capable of doing the conversion and delivering the pixels to my format plug-in in my requested format? If it CAN do it, what might I be doing wrong? Please help! Thanks!!
TOPICS
SDK
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Explore related tutorials & articles
/t5/photoshop-ecosystem-discussions/how-to-get-pixel-data-in-the-format-i-want/m-p/1448222#M450465
Apr 12, 2006
Apr 12, 2006
Copy link to clipboard
Copied
You get the image in the depth that it already exists in - Photoshop won't convert the depth.
The planes, rectangle, etc. are under your control.
Also, the SDK tells you which values are inputs and which are outputs for various calls (sometimes rowbytes is an input, sometimes output only).
The planes, rectangle, etc. are under your control.
Also, the SDK tells you which values are inputs and which are outputs for various calls (sometimes rowbytes is an input, sometimes output only).
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
New Here
,
/t5/photoshop-ecosystem-discussions/how-to-get-pixel-data-in-the-format-i-want/m-p/1448223#M450466
Apr 28, 2006
Apr 28, 2006
Copy link to clipboard
Copied
Let me rephrase this question in a different manner.
Is there a sample anywhere that converts from the various image modes to ARGB? Even the SDK docs acknowledge the following:
"For example, Photoshop stores RGB
images with an alpha channel in the order
RGBA, whereas most frame buffers store the
data in ARGB order."
Why not help out most people porting code from "most frame buffers" type designs by providing code to bridge the gap? This note provides a hint to get you going on RGB, but this doesn't help out with indexed, CMYK, etc. It seems silly to have everyone writing the same code over and over again.
Is there a sample anywhere that converts from the various image modes to ARGB? Even the SDK docs acknowledge the following:
"For example, Photoshop stores RGB
images with an alpha channel in the order
RGBA, whereas most frame buffers store the
data in ARGB order."
Why not help out most people porting code from "most frame buffers" type designs by providing code to bridge the gap? This note provides a hint to get you going on RGB, but this doesn't help out with indexed, CMYK, etc. It seems silly to have everyone writing the same code over and over again.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
/t5/photoshop-ecosystem-discussions/how-to-get-pixel-data-in-the-format-i-want/m-p/1448224#M450467
May 01, 2006
May 01, 2006
Copy link to clipboard
Copied
No, there is no such sample code. You should be processing the image in it's own mode, preferably in it's own depth. If you can't handle a particular mode or depth - indicate that in the EnableInfo PIPL field.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Participant
,
/t5/photoshop-ecosystem-discussions/how-to-get-pixel-data-in-the-format-i-want/m-p/1448225#M450468
May 08, 2006
May 08, 2006
Copy link to clipboard
Copied
You noticed you can use the planeMap[] array to permute the channels. It's not so obvious that Photoshop should offer generalised bit depth/colour space/palette processing. It can be argued that's the role of the plugin itself: to mediate between Photoshop's native image data (which it does offer conveniently) and whatever arbitrary image format the user requires. At least, that's what most of
my plugins do.
Sure, there are a few obvious conversions, but you have to stop somewhere... Sooner or later you'll be implementing stuff on the Photoshop side that should be in a plugin. I don't have a big problem with the line drawn in the current API.
Sure, there are a few obvious conversions, but you have to stop somewhere... Sooner or later you'll be implementing stuff on the Photoshop side that should be in a plugin. I don't have a big problem with the line drawn in the current API.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
New Here
,
/t5/photoshop-ecosystem-discussions/how-to-get-pixel-data-in-the-format-i-want/m-p/1448226#M450469
Jul 11, 2006
Jul 11, 2006
Copy link to clipboard
Copied
> You should be processing the image in it's[sic] own mode...
Photoshop is not the center of the universe. If Photoshop was the only graphics app in existence, then coding directly to the Photoshop format would make sense. There is a lot of code out there that started out in environments other than Photoshop.
I _could_ process the image in its own mode, but the word "should" is too strong in this case.
Why not make the Windows Bitmap file filter a sample in the SDK?
Photoshop is not the center of the universe. If Photoshop was the only graphics app in existence, then coding directly to the Photoshop format would make sense. There is a lot of code out there that started out in environments other than Photoshop.
I _could_ process the image in its own mode, but the word "should" is too strong in this case.
Why not make the Windows Bitmap file filter a sample in the SDK?
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Explorer
,
/t5/photoshop-ecosystem-discussions/how-to-get-pixel-data-in-the-format-i-want/m-p/1448227#M450470
Jul 11, 2006
Jul 11, 2006
Copy link to clipboard
Copied
>Why not make the Windows Bitmap file filter a sample in the SDK?
Windows bitmaps can be 1- 2- 4- or 8-bit paletted or 24 bit color...
Aandi Inston
Windows bitmaps can be 1- 2- 4- or 8-bit paletted or 24 bit color...
Aandi Inston
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Explorer
,
/t5/photoshop-ecosystem-discussions/how-to-get-pixel-data-in-the-format-i-want/m-p/1448228#M450471
Jul 11, 2006
Jul 11, 2006
Copy link to clipboard
Copied
>>Why not make the Windows Bitmap file filter a sample in the SDK?
>
>Windows bitmaps can be 1- 2- 4- or 8-bit paletted or 24 bit color...
And the export sample doesn't handle CMYK or Lab. In the general
principle of Photoshop, color conversions should never be implicit,
the user needs to be in control, so they can choose suitable ICC
profiles and rendering intent, and confirm the result.
Aandi Inston
>
>Windows bitmaps can be 1- 2- 4- or 8-bit paletted or 24 bit color...
And the export sample doesn't handle CMYK or Lab. In the general
principle of Photoshop, color conversions should never be implicit,
the user needs to be in control, so they can choose suitable ICC
profiles and rendering intent, and confirm the result.
Aandi Inston
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
New Here
,
LATEST
/t5/photoshop-ecosystem-discussions/how-to-get-pixel-data-in-the-format-i-want/m-p/1448229#M450472
Jul 11, 2006
Jul 11, 2006
Copy link to clipboard
Copied
Even if the sample isn't perfect, it would help out a great deal.
Also, why couldn't this kind of interaction be added as well in the sample? If it's a best practice and in line with the principles of the API, why not provide a complete sample of a well known, widely documented format that demonstrates what should be automatic and what should require user interaction?
I have now written all of the necessary code myself. It would have saved a great deal of time if such an example had existed. I can imagine that many developers have and will go through the same process over and over again.
Also, why couldn't this kind of interaction be added as well in the sample? If it's a best practice and in line with the principles of the API, why not provide a complete sample of a well known, widely documented format that demonstrates what should be automatic and what should require user interaction?
I have now written all of the necessary code myself. It would have saved a great deal of time if such an example had existed. I can imagine that many developers have and will go through the same process over and over again.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

