Jump to content

BoltBait

Administrator
  • Posts

    15,730
  • Joined

  • Last visited

  • Days Won

    405

Everything posted by BoltBait

  1. You'll need to load the image into separate layers and apply the effect to each layer in turn.
  2. Something is preventing the listed file from being written. Perhaps it is being held open by another process. Try rebooting before running the installer. Or, maybe your drive is failing. Try running CHKDSK /f to fix your disk before installing: http://www.howtogeek.com/howto/windows-vista/guide-to-using-check-disk-in-windows-vista/
  3. Yes, please show us the error message.
  4. Usually it is one of a few things: 1) you have an active selection and you're trying to draw outside of that selection. (Try pressing Ctrl-D before trying again) 2) you are drawing in the background color and therefore you can't really see it. (Try selecting a different color) 3) you have the wrong layer selected in the layer docker window. If your drawing area is covered from above, you won't see it. (Try selecting the top most layer before trying again)
  5. @dpy, please create an installer for your plugin pack. Contact me if you need help with this.
  6. I think when someone complains about "smooth lines" they are wanting to know about antialiasing. After clicking the line tool, look at the tool bar at the top of the screen. Toggle the antialiasing setting to see if you like the lines better.
  7. If you wish to use HTML/CSS to create graphics for paint.net, you can use:
  8. Drop box is not designed to host images. If you don't believe me, click on TR's plugin pack link above (which is what I was responding to).
  9. DropBox? really? Seriously, don't put anything on dropbox.
  10. Windows 10 windows don't have a border. They do have a shadow though.
  11. Rick (the developer) acknowledges that the zoom tool is broken in the latest release and he will be releasing the next build soon. Please be patient.
  12. Which tiling plugin is that? You could try the tiling plugin in my plugin pack. Download here: http://forums.getpaint.net/index.php?/topic/32048-b You'll find it under Effects > Fill > From File (or From Clipboard)
  13. It remembers for me. It is by machine, not account. So, perhaps, something is making it forget? Like running in an incognito window?
  14. This is only on the default theme for now. EDIT: I copied it over to the Goodnight theme.
  15. If you're going to change it into the graphic button, please use the "Donate" button: BTW, I just changed the style sheet for code syntax highlighting. Hopefully it looks better now: #region UICode int Amount1 = 0; // [0,100] Intensity string Amount2 = "Paint.NET rocks!"; // [0,255] Text Pair<double, double> Amount3 = Pair.Create( 0.0 , 0.0 ); // Center #endregion void Render(Surface dst, Surface src, Rectangle rect) { // Delete any of these lines you don't need Rectangle selection = EnvironmentParameters.GetSelection(src.Bounds).GetBoundsInt(); int CenterX = ((selection.Right - selection.Left) / 2)+selection.Left; int CenterY = ((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; CurrentPixel.B = (byte)PrimaryColor.B; CurrentPixel.A = (byte)PrimaryColor.A; dst[x,y] = CurrentPixel; } } } I noticed that the Syntax highlighter gets a little aggressive with the "types" (light blue). The keywords are a bit off too. They have "double" listed as a keyword, but not "int" or "string". They have "int" listed as a type, but not "string". I wish I could fix this, but I don't have access to the syntax highlighter code... only the style sheet. So, for now, that's about as close to CodeLab as I can get it. Also, you need to select "C" in the language drop-down list after pressing the code button "< >".
  16. Not easily. But, we'll look into it. EDIT: I looked but... C isn't listed in the options, just all the other languages. Weird. EDITEDIT: I tried a bunch of stuff, but no matter what I do, when you click the code button HTML is always highlighted. Sorry.
  17. I've never seen that happen. You're going to have to show us images of what's going on.
  18. This has always been the case. My shapes are designed for Outline and Filled with Outline modes.
  19. I just added a Shadow option. It really makes the text pop off the screen. Enjoy.
  20. Got it! It seems impossible to search for "(," so it looks like we'll have to find these by hand.
×
×
  • Create New...