Jump to content

MadJik

Members
  • Posts

    2,690
  • Joined

  • Last visited

  • Days Won

    68

Everything posted by MadJik

  1. If the text is on a separe layer, you could still move/resize it as picture. To select it with the magic wand hold Shift and click on a letter. Then M to choose move tool. Then you are able to move it and/or resize it... If you enlarge it, it will have some blur...
  2. It is working. But what for? Could you give before/after pictures to let us see that you've build this plugin for.
  3. This could be a way to use the plugin... give speed feeling one some pictures... (example find at http://www.hsv.com.au/studentpack/racecar.jpg) Before: After: I had to take care of the grass and the road...
  4. The tube... Made with gradient + three plugins... Grid maker http://paintdotnet.12.forumer.com/viewtopic.php?t=2302 Oblique http://paintdotnet.12.forumer.com/viewtopic.php?p=19735#19735 Rectangular to polar http://paintdotnet.12.forumer.com/viewtopic.php?t=1849&start=0&postdays=0&postorder=asc&highlight=
  5. I didn't know how to do that... and I found some way into the paint.net sources. I put a new version...
  6. Oblique Effect Plugin What's this? This is a plugin under Effect/Distort menu. This effect will enable you to incline texts or images, vertically horizontally or both using the sliders. (only the second line of text is changed by this effect) Be aware some specifications: - If X alone or Y alone = 1.0, it corresponds to 45° oblique angle. - if part of the tilted image leaves on a side, it reappears on the other. - calculation is made from the center of the image. - if you apply the effect several times and apply same effects with opposite values, you won't obtain the original image. This is due to rounding. (But could be an effect in itself?) - if you apply vertical & horizontal none zero at the same time you'll have like image reduction (test it vert:0.50 hori:-0.50 and Ctrl-F 3-4 times). Download it! Plugin Oblique.dll Note - this is not downloading properly, so for now get the Oblique.dll from here. http://jcljay.free.fr/pdn/ar.pngHere is the DLLhttp://jcljay.free.fr/pdn/al.png The MadJik's All plugins package is available! http://forums.getpaint.net/index.php?showtopic=7186 How to install Close Paint.net Classic version of Paint.net Unzip and (re)place the DLL in your Effect folder usually: C:/Program Files/Paint.NET/Effects Microsoft Store version of Paint.net Unzip and (re)place the DLL in your Effect folder usually: /My Documents/paint.net App Files/Effects/ You have to adapt for your language My Documents The User interface
  7. Flattening the three images as once is perfect instead merging down two layers...
  8. Ok, nice to know... I have to change my point of view and my code too! Thanks for answers.
  9. I'm working on some code lab effect and I have some strange result with the preview. This is the image I'm working with for the tests. This is the code I'm using: void Render(Surface dst, Surface src, Rectangle rect) { double step = 50 / 100.0f; double stepx = 0 / 100.0f; PdnRegion selectionRegion = EnvironmentParameters.GetSelection(src.Bounds); for (int y = rect.Top; y < rect.Bottom; y++) { for (int x = rect.Left; x < rect.Right; x++) { double yreflect = (double)(y + x * step); if (yreflect < 0) yreflect += dst.Height; if (yreflect >= dst.Height) yreflect -= dst.Height; double xreflect = (double)(x + y * stepx); if (xreflect < 0) xreflect += dst.Width; if (xreflect >= dst.Width) xreflect -= dst.Width; if (selectionRegion.IsVisible((int)xreflect, (int)yreflect)) { dst[(int)xreflect, (int)yreflect] = src[x, y]; } } } } Playing with the values for step and stepx I want to obtain an oblic view of the image. I obtain this strange preview (printscreen) And when I press Ok the final image is good! Am I doing something wrong in the code or is this a bug?
  10. I find something more about this problem. I used this picture in different layers: And I rotate each layer with different angle to see the red dot. Conclusion : the Red dot doesn't describe an ellipse as we could expect. It describe like a flat 8. That's the point.
  11. I couldn't imagine plugins (in the codelab way) for that. You describe a tool... For tool you will have to way till it's added to a next version by programer(s)...
  12. watermark tutorial: http://paintdotnet.12.forumer.com/viewtopic.php?t=2432&start=0&postdays=0&postorder=asc&highlight=water
  13. The draw was made after xmas day/night. He's having a bath after a hard time
  14. Ho Ho Ho ! You're welcome ! Merry Christmas.....
  15. Clear the internet temporary file and download again the DLL... If still different then I don't understand... It works like this on three differents PC for me...
  16. Did you forgot Step 19 (Bottom right of the GUI)??? Step is for the line to skip points... Read the mentioned topic please... EDIT: Download the DLL again I put my actual version to be sure... EDIT2: You could change the vertice to more (ex: 60 or 80). Then change as well the Step to Vertice / 2 -1 (ex: V:60 Step:29). This will create more peaks..
  17. Easier with PDN V3.0: Text in his own layer Effect/Outline... Thickness 1-n Intensity 100
  18. Art is personal. I can't do your "art". But I could share ideas and plugins... See the topic here : http://paintdotnet.12.forumer.com/viewtopic.php?p=17402#17402 http://jcljay.free.fr/pdn/ThetaCurves.zip For explosion you could experiment the theta curves plugin will the following settings: Then select outside the form and invert the selection (ctrl+I) so you could use the gradient to start your explosion...
×
×
  • Create New...