Bug 421289 - Broken Channels management
Summary: Broken Channels management
Status: RESOLVED FIXED
Alias: None
Product: krita
Classification: Applications
Component: Scripting (show other bugs)
Version: 4.2.9
Platform: Microsoft Windows Microsoft Windows
: NOR normal
Target Milestone: ---
Assignee: Krita Bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-05-10 15:27 UTC by Kapyia
Modified: 2024-12-12 19:34 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments
Broken Channels script (816 bytes, text/plain)
2020-05-10 15:27 UTC, Kapyia
Details
Color diagram to help test the issues (29.74 KB, image/jpeg)
2020-05-10 15:28 UTC, Kapyia
Details
The results from me using the script (170.22 KB, image/png)
2020-05-10 15:29 UTC, Kapyia
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Kapyia 2020-05-10 15:27:20 UTC
Created attachment 128336 [details]
Broken Channels script

SUMMARY
I've been running into a couple of issues while experimenting with manipulating individual channels using the Python API.


First thing I noticed is that the 'channels' function of the Node class returns a QList with the channels ordered as "BGRA". This could be intentional for all I know and not a bug, but I thought/assumed them to be ordered as "RGBA".

-

Second problem I ran into was that the 'pixelData' function of a Channel returns a byte array with a full 4 bytes per pixel, but only the alpha channel of each pixel holds data. Not too confusing, but it would've been nice if the documentation was a bit clearer about this :) 

This feeds into the third problem, which is that the 'setPixelData' function doesn't account for only the alpha channel/byte actually has valuable data. Writing the pixel data from one channel to another results in only every 4 pixels actually having data, whilst the remaining 3/4 of the pixels are empty.

The second and third problem could probably be solved with one swoop if either the QBA returned by the 'pixelData' function only had one byte per pixel, or if the 'setPixelData' only wrote from the alpha channel/byte of the input QBA :)

-

The fourth problem I've run into is that I seem to only be able to get the data from the Blue channel. No matter which index in the list retrieved using the 'channels' function in the Node class, it's always the Blue channel. This is evident when writing the pixel data to the alpha channel of a node and comparing the thumbnails in the Channels docker.

- 

Fifth and final problem I've encountered is that when I tried writing pixel data from one channel to another it appears the data gets corrupted, resulting in unwanted artefacts.

I've attached a script to help test these issues :)
SOFTWARE/OS VERSIONS
Windows 10 x64
Comment 1 Kapyia 2020-05-10 15:28:35 UTC
Created attachment 128337 [details]
Color diagram to help test the issues

Color diagram to help test the issues
Comment 2 Kapyia 2020-05-10 15:29:05 UTC
Created attachment 128338 [details]
The results from me using the script

The results from me using the script
Comment 3 wolthera 2020-05-10 15:34:31 UTC
I haven't tried to reproduce yet, but 1. is correct, our integer colorspaces are in bgra format and the floating point ones in rgba, this is due color management library, but also because it is most common in raster formats to format this way, 2 & 3 seems awkward, and proly caused by the channel data not being sent out as a proper alpha colorspace.

4... no idea, 5 and 6 might be related to general pixeldata issues.
Comment 4 Vitamorus 2024-12-12 19:34:32 UTC
Recreated in 4.2.9 but resolved in 5.2.6!

- channels() function correctly retrieved each colour channel
- No weird artifacts
- "Extract[ing] every 4th byte" is no longer necessary to do manually