Jump to content

Shmelly

Members
  • Posts

    11
  • Joined

  • Last visited

Posts posted by Shmelly

  1. Thanks for your help,

    I fiddled around with some code, and I got something very near what I would like.

    However, I can't get codelab to create DLLs for me, could somebody build this, call it "Single Color", put it under "Color", and post a download link?

    It would be greatly appreciated.

    void Render(Surface dst, Surface src, Rectangle rect)
    {
    
    Rectangle selection = this.EnvironmentParameters.GetSelection(src.Bounds).GetBoundsInt();
    
    ColorBgra PrimaryColor = (ColorBgra)EnvironmentParameters.PrimaryColor;
    
    ColorBgra CurrentPixel;
    for(int y = rect.Top; y < rect.Bottom; y++)
    {
    for (int x = rect.Left; x < rect.Right; x++)
    {
    CurrentPixel = src[x,y];
    CurrentPixel.R = (byte)PrimaryColor.R;
    CurrentPixel.G = (byte)PrimaryColor.G;
    CurrentPixel.B = (byte)PrimaryColor.B;
    // CurrentPixel.A = (byte)PrimaryColor.A;
    dst[x,y] = CurrentPixel;
    }
    }
    }

  2. Could somebody make a plugin for me that:

    Turns every pixel's color to your primary color.

    And, changes that pixels Alpha to your primary color's alpha, unless that pixel is completly transparent, and you check a certain checkbox.

    I would really appreciate it, I was planning to use this to gray out buttons, and things of that sort.

    :oops:

  3. Thanks for your help, about trying a different web Browser.

    I couldn't get this to download with IE, so I tried Chrome, and it worked! Thanks!

    Plus, I love:

    Simplify - Helps removing Anti-Aliased objects.

    Color Flip - I've never seen ANYTHING like it!

    Color Tilt - Awesome for changing around photos.

    Extract Channel - I've been looking for something like this for AGES.

    Single Hue - Used this on a checkerboard image, cool effect.

    Threshold - Great for cutting out images, into seperate layers, at least for me.

    Drop Ripple - More useful than I can say.

    Ripple - Good for flags, maybe?

    Vignette - Saves me a bunch of steps.

    Weave - Awesome!

    Seismograph - I'm not sure what this could be used for, pratically, but it is Cool.

    Thank you SO much.

  4. Wow! I'm seriously impressed!

    I was just searching around for a 'Text Circle' plugin, and found all these!

    I especially like the 'Black and Alpha+', with the ability to remove all the white, seamlessly from an cartoon-ish image,

    plus the 'AA's Assistant' is the best anti-aliasing plugin ever!

    Nice work!

×
×
  • Create New...