Jump to content

BoltBait

Administrator
  • Posts

    15,728
  • Joined

  • Last visited

  • Days Won

    405

Everything posted by BoltBait

  1. Try this plugin: http://forums.getpaint.net/index.php?/topic/31736-
  2. Congrats to ishi! And, thanks for the votes. I find that flags are generally used to separate people. That's why I tried to use my entry to bring everyone together.
  3. I'm always interested in techniques to turn a photograph into a drawing. That's why I developed Ink Sketch and helped the Dwarf Hoard with Croquis. You can see some of my other aborted attempts in the Plugin Developer's Centeral. Some of those look really good--specifically Rollo_Sketch_1. I don't think there is much value in persuing a stipple plugin/tutorial as we already have a really good stipple plugin. But, I'd like to see a tutorial on Rollo_Sketch_1.
  4. This thread is really old. Open a new one if you're still confused.
  5. I would love this type of functionality for this plugin: http://forums.getpaint.net/index.php?/topic/31736- so that it would automatically switch modes for the final render.
  6. Yeah, I'd much rather be answering your questions instead of skinning spammers alive and pelting them with salt.
  7. No. That just causes more work for us as we then have to deal with the report. Believe me, we see it. The only time you should report a spam post is if they put the spam at the end of another thread.
  8. Read this: http://forums.getpaint.net/index.php?/topic/17049-dpi-and-you-understanding-resolution-for-print-and-web/
  9. When resizing, be sure both images are set to the same pixels/inch. This is usually 96. You'll find it on the resize screen.
  10. The best way might be to output your data in CSV. Something like this: // Name: CSV Output Example // Author: BoltBait #region UICode TextboxControl Amount1 = ""; // [0,255] Output Pathname #endregion void Render(Surface dst, Surface src, Rectangle rect) { 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; // create a list of strings List<string> lines = new List<string>(); // populate that list with everything you wish to output using "," as a separator lines.Add("CenterX, " + CenterX.ToString()); lines.Add("CenterY, " + CenterY.ToString()); lines.Add("PrimaryColor, " + PrimaryColor.ToHexString()); lines.Add("SecondaryColor, " + SecondaryColor.ToHexString()); lines.Add("BrushWidth, " + BrushWidth.ToString()); ColorBgra CurrentPixel; for (int y = rect.Top; y < rect.Bottom; y++) { if (IsCancelRequested) return; for (int x = rect.Left; x < rect.Right; x++) { CurrentPixel = src[x,y]; // See if we are working on the center pixel if (x == CenterX && y == CenterY) { // Do we have a valid filename? if (Amount1.EndsWith(".csv")) { // Output everything to the file File.WriteAllLines(Amount1, lines); } } dst[x,y] = CurrentPixel; } } } You can then open your CSV file in Excel.
  11. Try this plugin: http://forums.getpaint.net/index.php?showtopic=5578
  12. I entered a sig contest: Go vote for me. EDIT: Thanks for the votes. I came in 3rd. Flags are typically used to separate people. I used my design to bring people together.
  13. That's the one I was thinking of when I posted the other link above. So, ignore my post and look at this link.
  14. As far as I can tell, the poll never shows up in the preview. You'll need to actually post the poll for it to show up.
  15. The following stocks were used: flag pole fringe earth sky
  16. Try this plugin: http://forums.getpaint.net/index.php?/topic/14278- It is really old. And, the images are gone from the thread. But, my (admittedly faulty) memory says it may be what you need.
  17. There are only 4 rules for this forum: http://forums.getpaint.net/index.php?/topic/32127-r I'm sure you can figure out which rule you're breaking.
  18. It looks like you're running the latest version of the effect... What version of paint.net are you using? I suspect you are using an older version of paint.net, like 3.5.11. Please upgrade your paint.net to version 4.0.6 and try again.
  19. Depending on the picture, Seam Carving may work for you. http://forums.getpaint.net/index.php?/topic/34047- But, please understand, with such a drastic reduction in size, you're going to have to make trade-offs.
  20. Please review the various buttons on the tool bar when using the paint brush: http://www.getpaint.net/doc/latest/Paintbrush.html
  21. With my Dominoes game, 100% and 150% look perfect, but 125% just seems off.
  22. That should read: dst.CopySurface(surfaceXYZ, rect.Location, rect);
  23. There is a couple ways to do it. Here's an easy one: Type your text WHITE on a BLACK background. Add a new layer and draw your gradient on that layer. Press F4 to edit the gradient's layer properties and change the blending mode to Multiply.
  24. Try this tutorial: http://forums.getpaint.net/index.php?/topic/28777-the-absolute-best-way-to-sharpen-a-blurry-photograph/
×
×
  • Create New...