Jump to content

BoltBait

Administrator
  • Posts

    15,728
  • Joined

  • Last visited

  • Days Won

    405

Everything posted by BoltBait

  1. Try this: https://forums.getpaint.net/topic/28556-fill-from-file-fill-from-clipboard Play with the zoom slider.
  2. I had an idea for making a plugin that would color my gray hair... I'll just leave this code here in case I ever get bored again and try to fix it. (Also, someone smarter than me may have an idea to make it work.) Needs work... // Author: BoltBait #region UICode #endregion // Setup for using Difference blend op private BinaryPixelOp differenceOp = LayerBlendModeUtil.CreateCompositionOp(LayerBlendMode.Difference); private BinaryPixelOp darkenOp = LayerBlendModeUtil.CreateCompositionOp(LayerBlendMode.Darken); // Here is the main render loop function 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; ColorBgra SourcePixel = *srcPtr; HsvColor hsv = HsvColor.FromColor(CurrentPixel.ToColor()); int H = hsv.Hue; int S = hsv.Saturation; int V = hsv.Value; byte A = CurrentPixel.A; V = 100-V; CurrentPixel = ColorBgra.FromColor(new HsvColor(H,S,V).ToColor()); CurrentPixel.A = A; CurrentPixel = differenceOp.Apply(*srcPtr, CurrentPixel); CurrentPixel = darkenOp.Apply(CurrentPixel,SourcePixel); *dstPtr = CurrentPixel; srcPtr++; dstPtr++; } } } "Just for Men" is easier...
  3. You know that's not my style! I just did a google search for notebook paper. (I did edit it to make it smaller though.)
  4. The font is called Gigi on my system. Not sure where it came from.
  5. The only "forcing" is here on the forum. We only answer questions about the latest version (as explained in the forum rules):
  6. What font? If you could link to the font download, that might help as well.
  7. Start by downloading the plugin packs that are pinned in this forum: http://forums.getpaint.net/index.php?/forum/44-plugin-packs/
  8. Rick can probably go right to the issue. But, if he doesn't check-in... we'll need a little more info: Does this happen with every image you try to save? What was the size of the image you were trying to save? What format where you trying to save to? Was it trying to save to a normal drive or network drive, etc? Did the image have layers?
  9. To expand on what EER said... For example, if you're saving in JPG format the picture is 'lossy'--the saved picture is NOT exactly what you saved. Try saving in PNG format instead which is 'lossless'--the saved picture is EXACTLY what you saved.
  10. Create a file with 3 layers called "Red", "Green", and "Blue". Load each grayscale image into the appropriate layer. Uncheck the Blue and Green layers (by using the checkmark in the layer window). Select the Red layer. Use Adjustments > Curves to isolate the red layer: 1) select "rgb" 2) unselect "red" 3) grab the middle of the line and move it to the bottom right corner This should prepare your red layer. Turn off the red layer. Turn on the blue layer. Select it and repeat the 3 steps above only this time "red" and "green" should be selected. Do the same thing for the green layer. Using each layer's property window, change the blend mode to multiply. (I think... or is it additive. Not sure.) Create a new layer at the bottom filled with white. Flatten the image. Apply your alpha channel. That should do it. WARNING: This was off the top of my head, so excuse me if it doesn't work.
  11. I'll just lock the thread. Thanks for the big report.
  12. I'm not sure there's a plugin to do what you want. You could try a zoom blur (to get the shape) and manipulate it to be solid using Adjustment > Transparency (from my plugin pack). Or, select with magic wand and fill with white. Just an idea. I haven't actually tried it.
  13. This is going to be easier with a vector editor. Try Inkscape, http://www.inkscape.org/en/
  14. A user's desktop should never be 'read only'. Anyway, Paint.NET remembers where it last saved a file. So, that becomes the default save location for next time.
  15. Be sure the correct options for the recolor tool are selected:
  16. The zoom controls are in the lower right corner of the main window.
  17. This is a family-friendly forum. If you insist on cursing, I will ban you.
  18. I don't recommend installing both at the same time. There could be problems...
  19. Did you add all of the references according to this tutorial? http://boltbait.com/pdn/CodeLab/help/tutorial5.php Hope this helps.
×
×
  • Create New...