Jump to content

jp2paint

Members
  • Posts

    91
  • Joined

  • Last visited

About jp2paint

  • Birthday 09/06/1969

Contact Methods

  • Website URL
    http://www.jp2code.net

Profile Information

  • Gender
    Male
  • Location
    Longview, TX [USA]
  • Interests
    My Family; Welding; Fitness; Motorcycles; building software, web pages and computers.

Recent Profile Visitors

7,565 profile views

jp2paint's Achievements

Enthusiast

Enthusiast (6/14)

  • First Post
  • Collaborator
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  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: 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?
  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.
  5. Hmmm.... Looks like I need to work on it a bit more. Thanks!
  6. I need to make something like this for our non-profit group:
  7. 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:
  8. Is there a way to make the tool tip window go away once the Comb Box has been opened? 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.
  9. 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)
  10. 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:
  11. 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?
  12. 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.
  13. 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: Microsoft: What's included in Windows 7 Service Pack 1 How-To Geek: Windows 7 Service Pack 1 is Released: But Should You Install It? ZDNet: Should you install Windows 7 Service Pack 1? 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.
×
×
  • Create New...