Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/06/2017 in all areas

  1. Version 1.1 has been released. You can find the changes in the changelog at the bottom, just above the download. I didn't get a big response for the initial release (but then, it had no publicity). Now that a few people have seen it, I would like some feedback if you have the time @Eli I haven't given up on that idea. I might create an alternate way to draw. I was trying to draw as a percent of image size, but now I'm thinking of running a timer that every few ticks will look at the mouse position and add X images at some fixed distance (that might still be %-based). If I get it to work, I'll have it as an optional way to draw under the 'other' tab.
    2 points
  2. MadJik All plugin pack v4.21e for paint.net version 4.0.6 and + This is the magical plugins mega pack (MadJik All plugins I meant)... It is 78 plugins in one pack! Moderator note: If you have trouble downloading any of these links please do this: Right-click > Open in new tab. If the above method doesn't work, try this: Right click on the link > Save As > save to a folder, then unzip. (Ignore virus warning.) You have three ways to download this pack: 1. Here is the ZIP for plugin manager Pack of DLLs 2. Here is the ZIP Pack of DLLs 3. Or you could follow the links below one by one plugin per plugin… You could also ask me for a link to download the sources: PM me! I would like to address special thanks to @BoltBait who maintain and improve the CodeLab and also for the plugin installer I would like to address special thanks to @ReMake who help (and support) me for the Russian translation and lot of suggestions of improvements The list is ordered by menu/submenu/alphabetic order. I recommend you to follow the links for each plugin as you'll have more explanation about each of them. (Few of them could be missing or out of date, if you need it please PM me to ask me to correct this) List of the MadJik's plugins: _____________________________________________________________ Root of effect menu Signature stamp Fast way to add a signature stamp to your art, The DLL isn't in the plugin manager pack to not overwrite your personal version. Use the link below to go to the thread and download this effect. https://forums.getpaint.net/index.php?showtopic=112441 _____________________________________________________________ Blur _____________________________________________________________ Color _____________________________________________________________ Distort _____________________________________________________________ Noise _____________________________________________________________ Render _____________________________________________________________ Selection _____________________________________________________________ Stylize _____________________________________________________________ Texture _____________________________________________________________ Tools _____________________________________________________________ BONUS in the Package: These plugins have no dedicated topics (or links were lost with the forum transfer but you could find them in the pack). Distort Displacement Move the darkest colors over the lightest. Render Polygones Polygones as the name says. _____________________________________________________________ Last changes: 2018-04-07 Added new effect Fractal Curly tree. 2018-03-23 Added new effect Fractal fern leaf. 2018-03-10 Added new effect Hilbert Curve. Added new effect Spot the center. 2018-03-03 Added new effect List of palettes. Added new effect Generate 96 colors. Updated Hexagrid
    1 point
  3. Drawing with brush dynamics (similar to Krita/Photoshop), but within Paint.Net! Everything in the pic below was drawn with it except the letter shapes Additional thanks to TechnoRobbo, Null54, Pyrochild, Toehead, and xchellx for valuable code contributions Using Dynamic Draw 1. Pick a brush image (and add your own under Settings - Brush section -> Brush Image Locations) 2. Change settings (don't forget you can scroll down for more settings) 3. Draw on the canvas (with some tablet support for huion/wacom via WinTab) You'll see explanations & keyboard shortcuts in a tooltip as you hover over settings. Note: If you're working with multiple layers, you can merge down all the layers below to copy it to the clipboard and use it as the background in a right-click menu on the canvas itself. Installing Extract the Dynamic Draw folder to the Effects folder of your paint.net installation, which for me is at C:/Program Files/paint.net/Effects. Leave it in the folder. Then restart paint.net. What's New? changelog new Added an effect dropdown to select and apply filter effects using the brush. Certain incompatible effects are blacklisted. tweak Significant speed increases for larger brush drawing due to parallelization. Get Dynamic Draw v3.3 optional extra brushes How to use Dynamic Draw old downloads Source code
    1 point
  4. I am helping out DrewDale this week with the Poll. You can vote for 5 entries. Poll will close on Saturday 14th January 2017 at 7 PM (UK Time) To see how that equates to other countries, here is a link to the World Time
    1 point
  5. I've added it in now. I'm still working feverishly on Brush Factory, but eventually I will come back to it later and add things like a preview, which is why I didn't have tolerance the first time around. Pixel Set Replacer P.S: I was able to replace those letters using a tolerance of 220.
    1 point
  6. Codeplex has finally taken action, and files can now be downloaded successfully on Chrome and Firefox. Due to the quick reporting from users, the PSD Plugin was one of the first projects on Codeplex to workaround the problem. I also have reason to believe that the operators of Codeplex took action based directly on my recommendations. Therefore, every project on Codeplex owes a debt of gratitude to the users of the PSD Plugin. Thank you!
    1 point
  7. Looks like a scanning device from a sci-fi movie
    1 point
  8. Hello, This image contain several effects: 1.Background which made of Free hand drawing on kaleidoscope + zoom blur + surface blur 2. The glob made of grid layer + 3D to sphere + glow + Trouser Flare Music also my personal creation: Enjoy
    1 point
  9. Follows a chibi version of Superman also done entirely in PdN. Chibi characters also belong to the anime/manga culture, with the peculiarity that chibi characters are created so that they look small, cute, and childlike.
    1 point
  10. @MJW Here's the main part of the code. //Iterates through each pixel. for (int y = 0; y <= src.Height - token.BmpToReplace.Height; y++) { for (int x = 0; x <= src.Width - token.BmpToReplace.Width; x++) { //Skips all pixels that have been replaced. if (replacedPixels.Count > 0 && replacedPixels[0].X == x && replacedPixels[0].Y == y) { replacedPixels.RemoveAt(0); continue; } //Checks if the first pixel matches. if (ColorBgra.FromColor(token.BmpToReplace.GetPixel(0, 0)).Equals(src[x, y])) { bool totalMatch = true; //Checks if every pixel matches. for (int yy = 0; yy < token.BmpToReplace.Height; yy++) { for (int xx = 0; xx < token.BmpToReplace.Width; xx++) { if (!ColorBgra.FromColor(token.BmpToReplace.GetPixel(xx, yy)).Equals(src[x + xx, y + yy])) { totalMatch = false; break; } } if (!totalMatch) { break; } } //Replaces the matching pixels. They will be skipped. if (totalMatch) { for (int yy = 0; yy < token.BmpReplacing.Height; yy++) { for (int xx = 0; xx < token.BmpReplacing.Width; xx++) { dst[x + xx, y + yy] = ColorBgra.FromColor(token.BmpReplacing.GetPixel(xx, yy)); //All pixels except the first should be skipped. //The first has been checked already. if (xx != 0 && yy != 0) { replacedPixels.Add(new Point(x + xx, y + yy)); } } } replacedPixels.OrderBy(p => p.X).ThenBy(p => p.Y); } } } }
    1 point
  11. That was enlightening, BoltBait. Thanks. @toe_head2001 I added myself as a company and changed the functionality of lock alpha so it applies after each stroke instead of at the end of the image, which is a more useful method. I can't lock alpha & copy after every individual brush stroke without doing some crazy size calculations (esp. with a rotated brush) and other things like that, so I think doing it after a brush stroke is better. It might be plausibly useful, now.
    1 point
  12. The character is started some where before a year ago. is from my first collection of trying to do anime. this image was upgraded with strong lines. it try to resize it to the the sig size. i hope i didn't destroy everything. in case you liked it you can see it in my gallery pages.
    1 point
  13. My very first vertical siggie featuring an anime Santa done entirely in PdN. Belated season's greetings to everyone!
    1 point
  14. I'm working on it. I should have a solution for you in a few days or less. Edit: Well, that was faster than expected. I've attached the .dll file. You'll need to drop it in the Effects folder under Paint.net. (An easy way to get there is to right-click paint.net, click "open file location" and do that again on the shortcut. You should see the Effects folder at the top, then.) It was fun PixSetRepl.zip ---------------------------- Instructions: Select the tile you want to change. Click the button to store it as the "image to be replaced". Select (or draw) the tile you want to replace it with. Store that as the second image. Go to it again and click "replace". You can also use "reset" to use it on multiple tiles. It might be slow on a large image.
    1 point
  15. As promised to @Collagemaster (and every other cat lover), meet Machfiva Flounceandpounce von Sturmundrang, princess of Ooze-Jumping-Glompenstein...better known as Mach Five, or "YOUNG LADY!" when she climbs into the decorations: All PDN except for the kitty. (BTW, Ooze-Jumping-Glompenstein is the 4' by 4' square of living room where she has her "crazies.") She's sitting next to me watching as I post...I'd better not make a typo!
    1 point
×
×
  • Create New...