Jump to content

jp2paint

Members
  • Posts

    91
  • Joined

  • Last visited

Posts posted by jp2paint

  1. That was quite detailed, Apollo, but I'm looking for something that goes with the photo - not because I want to make a particular photo of a Cyclops guy, but because the picture - the way he's standing and the way the light is hitting him, made me think of Cyclops. I'd like to extend on that, is all.

     

    I haven't had time to spend on this yet. My TO DO list has been really busy this weekend. I might have to wait until I go back to work to spend time on this at my desk. lol

  2. Hi,

     

    I've been using Paint.net for years, but not for anything heavy - usually just add a layer to change a background or something.

     

    I know there are good tutorials on here, but I'm looking for something that can help me edit this picture I took of my son last week during the solar eclipse:

     

    Maximos.SuperHero.thumb.jpg.48a68b25b0a7e3c894523399670e5203.jpg

     

    Is there a simple tutorial I could follow to make it look like he is blasting out some red lasers similar to what is going on in the animated picture below?

     

    20231020-110223-cyclopse.thumb.png.3858240fb3f5af5e00546e519b60d141.png

  3. Why are the download sites filled with misleading links?

     

    The link above for the Windows release goes to https://getpaint.net/.

     

    From there, one must navigate around the fake download links to https://www.dotpdn.com/downloads/pdn.html#google_vignette

     

    Then on that page, the download is ultimately here: https://github.com/paintdotnet/release/releases/download/v5.0.6/paint.net.5.0.6.install.anycpu.web.zip

     

    Is it too much bandwidth to have the files here? Or is it a liability issue?

     

    Typically, I never notice it; I simply update the app. Sometimes, like now, I need to install it on a work PC or install it on a colleague's machine. All of the fake download links make it look suspect.

  4. Eli,

     

    Did you notice how the individual characters in your text were not smooth? It was much worse on my example because there was a lot more text.

     

    In the end, someone at work showed me how to use clip-art in Microsoft Word to distort the text. I don't like that solution as much, but it enabled me to come up with a much nicer version for our organization's website.

     

    GoJdxuz.gif

  5. I'm trying to make a background with a smooth radial glow using the Gradient tool.

     

    What I keep getting looks ...very digital - meaning there are concentric little rings in a finite number of steps that prevent the effect from having the smoothness of a true light source on a wall.

     

    I even added a Gaussian Blur with a radius of 20 to reduce the effects, but it is still noticeable.

     

    Is there a setting I need to use to make this work?

     

    Here is the image:

     

    wallpaper bigger radial glow.jpg

    post-48278-0-97184700-1433431252_thumb.j

  6. Is there a way to make the tool tip window go away once the Comb Box has been opened?

     

    1-screenshot.jpg

     

     

    A reusable method like sketched out below could handle each Combo Box's DropDown and DropDownClosed event:

        private ComboBox ComboBox1, ComboBox2, ComboBox3;
        private const String CBO1_TOOLTIP = "Shape type\nClick to open list\nShortcut keys: A (next shape), Shift+A (previous shape)";
        private const String CBO2_TOOLTIP = "Text for ComboBox2";
        private const String CBO3_TOOLTIP = "Text for ComboBox3";
    
        private void InitializeComponent_Example()
        {
            // ComboBox1:
            ComboBox1.DropDown += new EventHandler(DropDown_Dropping);
            ComboBox1.DropDownClosed += new EventHandler(DropDown_Close);
            ComboBox1.Tag = CBO1_TOOLTIP;
            toolTip1.SetToolTip(ComboBox1, CBO1_TOOLTIP);
            // ComboBox2:
            ComboBox2.DropDown += new EventHandler(DropDown_Dropping);
            ComboBox2.DropDownClosed += new EventHandler(DropDown_Close);
            ComboBox2.Tag = CBO2_TOOLTIP;
            toolTip1.SetToolTip(ComboBox2, CBO2_TOOLTIP);
            // ComboBox3:
            ComboBox3.DropDown += new EventHandler(DropDown_Dropping);
            ComboBox3.DropDownClosed += new EventHandler(DropDown_Close);
            ComboBox3.Tag = CBO3_TOOLTIP;
            toolTip1.SetToolTip(ComboBox3, CBO3_TOOLTIP);
        }
    
        private void DropDown_Close(object sender, EventArgs e)
        {
            var ctrl = sender as ComboBox;
            if (ctrl != null)
            {
                toolTip1.SetToolTip(ctrl, String.Format("{0}", ctrl.Tag));
            }
        }
    
        private void DropDown_Dropping(object sender, EventArgs e)
        {
            var ctrl = sender as ComboBox;
            if (ctrl != null)
            {
                toolTip1.SetToolTip(ctrl, null);
            }
        }
    
    

    If this is worth doing, my hope is that providing the code is helpful.

     

    I don't know if this is still a .NET project or what language it is currently in.

    post-48278-0-22928500-1429801111_thumb.j

  7. LOL - I understand.

     

    I tried joining in with an open source project once. There was so much code in there that I didn't understand, and there was no way I could learn all of that in what little spare time I seem to have.

     

    Paint.NET is great. It does all that Photoshop and Gimp do. I was just thinking if it had some of those "knock this out really fast" tools, you could ...charge double for it!

     

    Greenshot demo (don't know how to embed)

  8. It isn't just one feature that I am requesting. There are multiple.

     

    Cc4 pointed out that many of the things "can be done", but there are no simple buttons to perform these simple tasks.

     

    Yeah, I know how to post, but if I make a title that says, "Make it more like Greenshot" it'd be deleted for promoting someone else's product. At the least, someone would complain about me using that in the title.

     

    Here is one I threw together in about 10 minutes using Greenshot showing the flow direction of a program we create:

     

    post-48278-0-58810800-1423756495_thumb.p

  9. Does anyone on here use Greenshot (http://getgreenshot.org/)?

     

    This is a handy little "open source" tool for taking screenshots that runs as a system process down in the task bar.

     

    Its image editor is starting to become very rich with features and tools for making quick annotations.

    • highlighting,
    • drawing arrows,
    • adding text,
    • copying image to clipboard,
    • exporting to a number of different applications or websites,
    • shading options,
    • undo features
    • obfuscate
    • counters
    • crop
    • speech bubbles

    The list is always growing.

     

    The point is, it is very easy to use and is quickly becoming something I use more regularly.

     

    I found myself today opening Paint.NET to do more serious work that required layers, then I wanted to draw a few shaded arrows on the topmost layer to indicate the flow pattern of my project.

     

    Oh yeah. That isn't a Paint.NET feature - at least not an easy task.

     

    I recall looking at the Paint.NET code back when it was open source, but I wasn't good at GDI+ at all - now I am only mediocre. I have not looked at the Greenshot source at all.

     

    Would there be any interest in adding these "powerful but simple" features to Paint.NET?

  10. Okay well you've already told us this several times. We get it. Stop bringing it up.

     

     

    That said, have you tried reinstalling Windows fresh and then installing the service pack?  Sometimes that's all it takes.  Additionally, you could download a copy of Windows 7 that includes the service pack and install it fresh on your machine.  There are all sorts of ways that you could fix your machine rather than begging the developer to cater to your edge problem.

     

    I don't want to make Rick mad. I generally hang out on forums where people go to visit and enjoy themselves while possibly learning something. I get the feeling he doesn't want that type of atmosphere here, so I'll keep it brief.

     

    I reinstalled Windows about a year back when I purchased a larger hard drive. At that time, I tried Windows 8 for about a month, but I did not like the tablet interface on a desktop. I downloaded Win7 w/ SP1, but it would not validate with the non-SP1 key I already owned.

     

    v3.5 is fine. I'm not trying to get him to change anything for me. I just wanted to report some of the problems so he'd know about them.

  11. SP-1 would have been available as a Windows 7 update at some stage for you (it was when I had it) Just the same as Windows 8.1 update 1 is now.

     

    I did a search about what was in SP1. It had nothing critical, and only caused issues for a lot of people.

     

    When it failed for me back when Microsoft pushed it out, there was no reason to care.

     

    A few interesting links:

    SP1 does not install on my PC, and I'm guessing there is some sort of incompatibility issue with that computer.

     

    So, I won't be able to migrate to PDN v4 until I buy a new PC. PDN v4 is the only thing that machine an issue with, so I'll hang onto v3.5 for now.

  12. Why is the only solution to revert to the old version? Why not spend a few minutes and learn the new stuff ...

     

    I tried 3 times since this version came out to update my version of Win7 to Win7 SP1.

    • First time failed, so I downloaded the upgrade advisor to see what the problem was (since I could not remember it)
    • Upgrade advisor closed while I was away from my PC. Did that mean it was done? So I tried installing the SP1 again. It still failed saying I needed to run the upgrade advisor to see what those problems were.
    • I ran the upgrade advisor a second time and saw it close after running about 30 minutes, so I tried installing the SP1. It still failed with the same message to run the upgrade advisor - which doesn't work.

    At least v3.5 is not broke. :)

  13. Because without SP1, there are bugs in WIC (Windows Imaging Component) that cause all sorts of problems.

     

    You'll just have to find a way to install SP1 if you want to use 4.0.

     

    It has not worked yet. I'm still trying to find ways to get SP1 to install, but the installer has been crashing due to compatibility issues.

     

    I have v4 installed here at work. Are files edited with v4 still able to be opened in v3.5?

     

    I'm afraid to make changes on some of my very old PDN files at work if they won't be useful in my older version.

  14. I can't see the OS version in your screenshot

     

    Sorry about taking so long to get back. I keep telling my settings to notify me immediately of replies, but that doesn't seem to stick.

     

    So, it is Windows 7 without SP1.

     

    I have several KB patches on my home PC that prevent SP1 from installing. If I remove the KB patches, SP1 will install but I lose features on my PC like sound and video.

     

    Is there any specific reason why SP1 was required with this release over the "plan Jane" Windows 7?

  15. I created my avatar using Paint.NET years ago:

     

    post-48278-0-53265400-1389042408_thumb.p

     

    It is looking dated (to me), so I had been thinking about sprucing it up.

     

    I decided I would remove the ugly text "jp2code", throw a transparent Glossy Button effect over it, and put my text on top of the glossy button as an Etched Glass effect.

     

    Sounds neat, right?

     

    So, I look up and start reading up on a couple of the better glossy button tutorials:

    I have used them both before with great success, but this time proved difficult. Neither of them seems to have a good way to use a background image.

     

    The best approach I found was to create a ymd button using a light gray background and setting the opacity down to 150 or so.

     

    The end result looks no where near as nice as I had pictured in my head:

     

    post-48278-0-46913300-1389042400_thumb.j

     

    As you can see, it is very dark, does not look like a Glass Button, and I have not found a good Etched Glass effect.

     

    Does anyone have any advice on how to brighten up the Glossy Button without washing out the background?

  16. Is it possible to add Snap to Grid?

     

    No one ever answered that.

     

    I use PDN often to design stuff for myself before I try taking pics out to a machine shop to be built (they roll their eyes at me if I bring in a hand sketch and assume I don't know what I'm talking about).

     

    When the program detects mouse movement (like what is shown in the status bar) and some new menu item (Image -> Snap to Grid) is checked, then the mouse coordinates would be rounded to the nearest x and y grid point.

     

    I am a decent C# guy, but mostly with databases, forms, and DataGridView controls. I am not the best at GDI+, but I can give a line a color and draw it from one PointF to the next.

     

    Is the source code for PDN still open to the public? I thought it went private a few years back.

     

    If developers in the PDN group are going to dismiss this as trivial that the OP should look into, then perhaps I could look into it as well. So, how would I go about this? Where is the source code? What files and classes deal with the mouse movements? Is there a repository I need to plug my copy of VS2010 up to?

×
×
  • Create New...