Jump to content

VoidWhisperer

Members
  • Posts

    43
  • Joined

  • Last visited

VoidWhisperer's Achievements

Contributor

Contributor (5/14)

  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. Oops -_-' I guess i need to learn to put images on the right way, anyways: this is an image of what's happening:
  2. #region UICode int Amount1=0; //[0,100]Slider 1 Description int Amount2=0; //[0,100]Slider 2 Description int Amount3=0; //[0,100]Slider 3 Description int runs=255; int num = 5; #endregion void Render(Surface dst, Surface src, Rectangle rect) { // Delete any of these lines you don't need Rectangle selection = this.EnvironmentParameters.GetSelection(src.Bounds).GetBoundsInt(); long CenterX = (long)(((selection.Right - selection.Left) / 2)+selection.Left); long CenterY = (long)(((selection.Bottom - selection.Top) / 2)+selection.Top); ColorBgra PrimaryColor = (ColorBgra)EnvironmentParameters.PrimaryColor; ColorBgra SecondaryColor = (ColorBgra)EnvironmentParameters.SecondaryColor; int BrushWidth = (int)EnvironmentParameters.BrushWidth; ColorBgra CurrentPixel; for (int y = rect.Top; y < rect.Bottom; y++) { for (int x = rect.Left; x < rect.Right; x++) { CurrentPixel = src[x,y]; // TODO: Add pixel processing code here // Access RGBA values this way, for example: // CurrentPixel.R = (byte)PrimaryColor.R; // CurrentPixel.G = (byte)PrimaryColor.G; if(CurrentPixel.R != 255 && CurrentPixel.G != 255 && CurrentPixel.B != 255 || CurrentPixel.A > 0){ CurrentPixel.A = (byte)x; runs= runs - 1; dst[x,y] = CurrentPixel; } } } } I'm trying to write something to make the picture go slowly transparent, and i'm kinda of new to PDN Plugins So, could someone help me fix this? A picture is below: That, is what is happening ._.
  3. Is there anyway I can see the source code of some of the effects already in paint.net when you first get it =D?
  4. (Plugin: viewtopic.php?f=5&t=23004) It doesn't provide sufficient information on how to add it to the VB.net templates. Can someone please help me? EDIT: I have Visual basic express edition. Just to clear that up.
  5. The thing I don't understand: They are bytes already...
  6. Error at line 125: Cannot implicitly convert type 'int' to 'byte'. An explicit conversion exists (are you missing a cast?) (CSO266) Thats one of the 3 (They are all the same)
×
×
  • Create New...