Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/16/2017 in all areas

  1. Due to a request here: http://forums.getpaint.net/index.php?/topic/111023-need-color-temperature-control-equivalent-to-windows-live-photo-gallery/ I created a Temperature / Tint Adjustment plugin. It is found under the Adjustment menu. User Interface: Algorithm: This is where I found the algorithm that I used: http://www.tannerhelland.com/5675/simple-algorithms-adjusting-image-temperature-tint/ Here you can visualize the sliders overlaid on the standard color wheel: CodeLab Script: // Name: Temperature/Tint // Submenu: Adjustment // Author: BoltBait // Title: BoltBait's Temperature/Tint v1.3 // Version: 1.3 // Desc: Adjust the Temperature or Tint of a photograph // Keywords: Temperature|Tint // URL: http://BoltBait.com/pdn #region UICode IntSliderControl Amount1 = 0; // [-20,20] Temperature IntSliderControl Amount2 = 0; // [-20,20] Tint CheckboxControl Amount3 = false; // [0,1] Preview original image #endregion private byte Clamp2Byte(int iValue) { if (iValue < 0) return 0; if (iValue > 255) return 255; return (byte)iValue; } unsafe void Render(Surface dst, Surface src, Rectangle rect) { for (int y = rect.Top; y < rect.Bottom; y++) { if (IsCancelRequested) return; ColorBgra* srcPtr = src.GetPointAddressUnchecked(rect.Left, y); ColorBgra* dstPtr = dst.GetPointAddressUnchecked(rect.Left, y); for (int x = rect.Left; x < rect.Right; x++) { ColorBgra CurrentPixel = *srcPtr; if (!Amount3) { CurrentPixel.R = Clamp2Byte(CurrentPixel.R + Amount1); // Temperature CurrentPixel.B = Clamp2Byte(CurrentPixel.B - Amount1); // Temperature CurrentPixel.G = Clamp2Byte(CurrentPixel.G + Amount2); // Tint } *dstPtr = CurrentPixel; srcPtr++; dstPtr++; } } } Download: Download as part of my plugin pack, here: https://forums.getpaint.net/BoltBaitPluginPack Support: This plugin is for paint.net 4.0.6+ If you are running Paint.NET 3.5.11, you can build your own copy using the CodeLab source above. You'll need to update the UICode region by replacing "IntSliderControl" with "int" and "CheckboxControl" with "bool". Or, if CodeLab scares you, download the 3.5.11 version here: http://forums.getpaint.net/index.php?/topic/111031-temperature-tint-adjustment/&do=findComment&comment=527785
    7 points
  2. Having a play around with @MJW's Texture Merger ..............
    3 points
  3. So my husband's godson/nephew is getting confirmed, and as one of his sponsors the Lion had to write a letter to him. (I'm not Catholic so I'm not sure what-all is involved here.) Anyway, Lion asked me to touch up some pictures and make some artwork for the cover. I'm quite proud of how the whole thing turned out, but since I don't have permission to post nephew's picture here's the background I made for the cover page: All PDN. Finished product has a cameo portrait of nephew with gold text.
    3 points
  4. A little bit of nostaglia....inspired by recent finds when doing some early 'spring cleaning'. Bless childhood memories!! Happy Valentine's Day Everyone!!
    3 points
  5. This is a great Plugin @BoltBait and thank you . Perfect for getting a very subtle change in color on photos and will have many other uses as well. Before After
    2 points
  6. 2 points
  7. This a background I did for a flyer that will have txt printed on it. It's for an opera being performed by a community performance group and someone else does the txt. I was asked to provide a starscape with the photocopied faces coming out of clouds. The original is A3 @ 300 dpi which is big by my standards. That's like 26 MB compared to about 2 for the jpeg copy I've posted @ 250 dpi. I had to borrow my daughter's computer cause mine doesn't have enough memory and would have been problematic.
    2 points
  8. 90 cm ~ 35,43 inches dpi = dots per inch 35.43 * 300 = 10629 (pixels) Paint.net works on screen with a standard resolution of 96 dpi. So the size will be 281.23 cm. Changing to 300 dpi -> 90 cm
    1 point
  9. OK, here is the final build, please test: http://forums.getpaint.net/index.php?/topic/111031-temperature-tint-adjustment/ Located in the Effects > Photo menu.
    1 point
  10. Gorgeous new picture! (Coming to you from the Peanuts gang's home town, in fact.)
    1 point
  11. Bitter sweet Lynxster. New Grandbaby is lovely. The passing of your dad is really sad. Hugs to you because there really are no words.
    1 point
  12. Second (and a half) try with minor changes (after reading the discussion I removed the background)
    1 point
  13. Very nice Rickhum....I like it!
    1 point
  14. Cool effects RickHum! It looks like the faces are pressed against glass.
    1 point
  15. Hope you're enjoying Christmas in that well decorated log cabin.
    1 point
  16. Thank you so much! I used rotating text and your tutorial to make these snowflakes .
    1 point
×
×
  • Create New...