I’m working on a pixel sprite and I have 2 coloured pixels with 1 empty pixel gap between them. Is there any way (tool) to fill in the missing pixel with the mixture of the 2 that are filled?
Answer
Finding the exact colour code might depend on your current colour space, as mentioned in the comments. This method is colour-space agnostic and whould work in most software that supports layers.
- Draw a pixel of colour A on a new layer;
- Add a second layer on top of that, and draw a pixel of colour B exactly on top of pixel A;
- Reduce layer B’s opacity to 50%;
- Merge the two layers;
- Sample the resulting pixel’s colour. That is the colour you are looking for.
Alternatively, you could also draw directly over pixel A in layer A with a 50% opaque brush in colour B to get the same effect. Faster, but less intuitive.
Attribution
Source : Link , Question Author : Cayde , Answer Author : Vincent