The Color Overlay effect is not being applied

When i generate image the Color Overlay effect is not being applied. Could you please help me on this?

@arun.novadontics could you please provide your code and/or source files.

Please downlaod source file using below link
https://s3.us-east-1.amazonaws.com/static.novadonticsllc.com/hhImages/female/PMSImagesFemale.psd

Check for the layer radiation therapy->green->Vector Smart Object. In the code base we setvisible to both radiation therapy and green. It shows only image in black color. Green color is not applied. Same with red as well.

@arun.novadontics
I can confirm issue. Here is my code to reproduce:

string sourceFile = @"PMSImagesFemale(2).psd";
string outputFilePngGreen = @"PMSImagesFemale(2)green.png";
string outputFilePngRed = @"PMSImagesFemale(2)red.png";
string outputFilePngBoth = @"PMSImagesFemale(2)both.png";

var opt = new PsdLoadOptions() { LoadEffectsResource = true, AllowNonChangedLayerRepaint = true, AllowWarpRepaint = true };
var pngOpt = new PngOptions() { ColorType = PngColorType.TruecolorWithAlpha };
using (Image image = Image.Load(sourceFile))
{
    var psd = (PsdImage)image;

    var names = psd.Layers.Select(it => it.DisplayName);
    var radter = (LayerGroup)psd.Layers.FirstOrDefault(it => it.DisplayName == "Layer group: radiation therapy");
    radter.IsVisible = true;
    var green = radter.Layers.FirstOrDefault(it => it.DisplayName == "Layer group: green");

    green.IsVisible = true;
    image.Save(outputFilePngGreen, pngOpt);
    green.IsVisible = false;
    var red = radter.Layers.FirstOrDefault(it => it.DisplayName == "Layer group: red");
    red.IsVisible = true;
    image.Save(outputFilePngRed, pngOpt);
    green.IsVisible = true;
    image.Save(outputFilePngBoth, pngOpt);
}

We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): PSDNET-2839

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.