Jump to content

NSD

Members
  • Posts

    162
  • Joined

  • Last visited

Everything posted by NSD

  1. Sorry for my mistake... fatigue and haste. However, this means that CodeLab detects the erroneous parameters of the Render method. Wouldn't it be nice to generate an error message?
  2. I have two identical C # files. One is recognized by CodeLab the other is not. The event happened after I saved the files on the Desktop. After saving, when reopened, one of them is no longer recognized. Untitled2.zip
  3. No, it don't bothers me, you did a great job with this Template. Thank you.
  4. I just want to mention that in Project Template - Effect the slider has a minimum value equal to 0 which leads to crash due to division by zero in the following line: CurrentPixel = (y% amount1 == 0)? ... Also, SubmenuName is Blur although I think it should be null to be easily found by the user. The plugin below was created just to test some things. It doesn't do anything special, it just draws lines and a circle. The color control is based on the control in the CodeLab source code and is quite similar. Here is the source code: http://www.mediafire.com/file/9f9gz612mmmlldu/VSpdnProject.zip/file
  5. CodeLab source contains a very useful custom control - PdnColor. Is it legal to use this control in our plugins created in VisualStudio?
  6. If you have a few tabs on your Form: InitializeComponent(); UseAppThemeColors = true; TabControl.TabPageCollection pages = tabControl1.TabPages; foreach (TabPage page in pages) { if (page is TabPage) { page.ForeColor = ForeColor; page.BackColor = BackColor; } } But TabpageHeader will not change its color.
  7. This plugin can be found in the Effects Menu. You need to put OptionBasedLibrary v0.7.8 dlc and dll files in paint.net folder and WarpTextOnPath dll and dlc files in Effects folder. The UI: WarpTextOnPath.zip http://www.mediafire.com/file/ignc6de43v3m90e/WarpTextOnPathOB.zip/file
  8. I never encountered this problem, instead if I open the History floating window (by clicking on the icon not with the F6 key) the tooltips are no longer displayed. Click on Manage color palettes drop down menu and everything returns to normal.
  9. It is possible to set this in CodeLab? new EffectOptions () {Flags = EffectFlags.Configurable, RenderingSchedule = EffectRenderingSchedule.Tiles1024x1024}) This seems to offer the highest rendering speed on my system.
  10. Swirl can be found in Effects > Distort submenu. Swirl.zip
  11. Thank you for your hard work! This plugin only works on latest version of paint.net. Full error message: PaintDotNet.WorkerThreadException: Worker thread threw an exception ---> System.MissingMethodException: Method not found: 'System.Drawing.Rectangle PaintDotNet.Effects.EffectEnvironmentParameters.get_SelectionBounds()'.
  12. I don't know if I understood exactly what you want... Your image has a white background. To outline the letter F with text in it, you need to remove the background. To do this, choose the Magic Wand tool and set the Tolerance to zero. Click in the white area outside of the F then Cut. You can now use the Outline Object plugin.
  13. #region UICode MultiLineTextboxControl text = "Some text here"; // [32767] #endregion In Preview Effect mode ► MultiLineTextboxControl is initialized with the empty string. It is possible to keep the entered text?
  14. You also need OptionBasedLibrary 0.7.9 dll and dlc files in order to see the plugin. You can download them here: https://www.mediafire.com/file/y3oqx1c6r264ohh/TextMask.zip/file And put them (only OptionBasedLibrary 0.7.9 dll and dlc) in the paint.net folder not in Effects folder.
  15. This example was created with the TextOnPath plugin: I don't know if it fits your expectations.
  16. @Ego Eram Reputo You should also fix the issue with scaling size.
  17. The error is given by the fact that the maximum value of the sliders does not correspond to the length / width of the canvas. Using CodeLab it is not possible to load these maximum values at runtime with the values of the canvas.
  18. Hi @Keanny Ooi You can play with the little plugin below. Instead of Help you have the code, so click the button '?'. You can copy it with Ctrl + A / Ctrl + C and then paste it into CodeLab to make the change as you wish.
  19. There are a few contour plugins. Search and install from here: https://forums.getpaint.net/topic/15260-plugin-index/ You just have to run them several times with different colors.
  20. Thanks for this very useful effect. I just want to mention that there is a difference in the result from the result offered by the original plugin posted by TR. Maybe I don't know how to use this plugin correctly? This difference can be seen below: Here is the project I'm working on. I try to copy layer 6 and then I use Paste Warp+ .
×
×
  • Create New...