Jump to content

BoltBait

Administrator
  • Posts

    15,730
  • Joined

  • Last visited

  • Days Won

    405

Everything posted by BoltBait

  1. Your effect code has specified a default value that is outside of the range of the control. In your script, look for the UI block: #region UICode IntSliderControl Amount1 = 0; // [1,100] Radius #endregion If this is not a CodeLab script, but a visual studio project, your UI code will look like this: protected override PropertyCollection OnCreatePropertyCollection() { List<Property> props = new List<Property>(); props.Add(new Int32Property(PropertyNames.Amount1, 0, 1, 100)); This control will cause the problem: The default value is "0" and the minimum allowed value is "1". (The maximum value is "100".) In this case, to fix the problem, just change the "0" to "1" or any other value that sits between 1 and 100.
  2. Your OS is really, really, really... x 100 ... really old. You should update now. https://forums.getpaint.net/topic/114255-📢⚠⚠⚠-reminder-please-upgrade-to-win10-and-64-bit-win781-and-32-bitx86-support-being-removed/
  3. Please try using the offline installer. https://github.com/paintdotnet/release/releases
  4. Rhombus is a built-in shape. Another name for Rhombus is Diamond. Try that.
  5. Impossible, sorry. You'll just need to recreate the text. You see, once you finalize text, it becomes pixels just like the rest of your image. Text is no longer special at that point. So, flipping the layer also flips the text as the text is just pixels like the rest of your image.
  6. Please show an example image (family friendly) and we'll see what can be done.
  7. I would say... be patient. The next major release of Paint.NET will include a completely rewritten brush system.
  8. Please try using the offline installer. https://github.com/paintdotnet/release/releases
  9. Maybe this? https://forums.getpaint.net/topic/9364-polar-transformations-plugin-ymd100718/
  10. Don’t do that. OnDispose is called by the .NET Garbage Collector, not by Paint.NET itself.
  11. What @MJW said. If you convert your plugin to use vs instead of CodeLab, you can do what you want as long as you stop using IndirectUI. You’ll need to code everything yourself. Look around, there is a template to get you started.
  12. In order to move something on a layer, that thing needs to be selected. If you just want to move around the entire layer, press Ctrl-A before trying to move that layer.
  13. CodeLab v6.6 Released This is only for Paint.NET 4.3.11+! Quick update today... Just a release of random stuff before we start tackling support for Paint.NET 4.4+ (UI tabs and GPU acceleration) Changes: â–ª Fix auto braces (toe_head2001) â–ª Add option to disable auto-complete (toe_head2001) â–ª Minor code refactoring and bug fixes (BoltBait and toe_head2001) Grab the CodeLab DLL here: https://www.boltbait.com/pdn/CodeLab/
  14. In 5.0, it will be easy to create tapered lines as long as you have a drawing tablet with pressure sensitivity.
  15. Did you try the different blending methods? I like Multiply (selected color + black) and Screen (selected color + white) the best. But, all the blend modes are interesting. Or, how about this one that goes from white to sepia to black: Starting with a color image, I ran Effects > Stylize > Floyd-Steinberg Dithering with these options: followed by a Gaussian Blur of size 2. To finalize off the image I scaled it down to 800x600 from 3000ish.
  16. I think the OP may be looking for this information: https://www.getpaint.net/doc/latest/paintdotnetProtocol.html
  17. Ctrl-A to select all. Ctrl-C to copy the guy. Switch to your desired image. Ctrl-Shift-V to paste into the new image with layer.
  18. Why do you need to find it? If you're just trying to install plugins, for example, that works a little differently on the store version of Paint.NET... Read this: https://www.getpaint.net/doc/latest/InstallPlugins.html
  19. Please attach a family-friendly example of an image that doesn't work.
  20. Easy as pie: Click the gear icon in the upper right corner of Paint.NET: Click on the "Updates" tab and then click the "Check Now" button:
  21. Run the installer again. Uncheck all of my plugins you no longer want installed on your system. Click the "Install Selected" button.
  22. How are we supposed to know how Paint3D works? (or in this case DOESN'T work) We offer support for Paint.NET not Microsoft Paint or Microsoft Paint3D. I recommend installing Paint.NET and stop using that Microsoft crap. Start by clicking the link in the upper right corner of this web page: https://www.dotpdn.com/downloads/pdn.html
×
×
  • Create New...