Jump to content
How to Install Plugins ×

Drop Shadow and other effects, KrisVDM's Plugin Pack (updated 2023-08-27) v.5.0.3.0


KrisVDM

Recommended Posts

Even as good as the idea sounds, I'm not keeping it, for these reasons:

1. Having a sub-menu in Adjustments just does not look right.

2. The 4 effects are placed in a un-nessesscary menu, instead of places related to where it should be.

3. Most of the adjustments can be done using Curves easily.

4. What happens if we don't want a certain plugin? It just clutters up space.

Link to comment
Share on other sites

All colors in all effects are controlled by using the colors window before starting the effect/adjustment. That applies to the shadow color too.

I did it that way for a number of reasons: it's in line with the built-in effects; the colors window is more powerful than anything I can provide in the dialogs, IndirectUI doesn't support it and the dialog box for the drop shadow had become big enough already with the new widening radius. I guess the lack of support by IndirectUI is the killer argument here. Rick?

About the submenus: you do have a point and I did consider placing the effects "where they belong". Their are pro's and con's either way. At least this way the demo adjustments don't clutter your adjustments menu. If you're a developer, feel free to change the source code to move the effects around or remove the ones you don't like, just don't redistribute the modified source or binary.

And about the "smart" thingy: the base classes needed a name, and in a way, they are "smart" in the sense they do take away a lot of the programming complexity. But I guess I got my inspiration from Jan Tielens' SmartPart.

Kris.

  • Like 1
  • Upvote 3
Link to comment
Share on other sites

Anyways, I'm going through the source, I presume to remove effects you simply delete the .cs for it, correct?

Also, where I can change the sub-menu's for these effects, I'm looking through the code and there are so many mentions of what the sub-menu is called I have no idea how to change it.

EDIT: I also need to re-reference everything now :|

Link to comment
Share on other sites

And about the "smart" thingy: the base classes needed a name, and in a way, they are "smart" in the sense they do take away a lot of the programming complexity. But I guess I got my inspiration from Jan Tielens' SmartPart.

Kris.

I'm not saying it isn't smart. I'm just saying that I'd rather have my effects menu sorted based on what a plugin does, rather than the relative intelligence of the plugin package. ;)

xZYt6wl.png

ambigram signature by Kemaru

[i write plugins and stuff]

If you like a post, upvote it!

Link to comment
Share on other sites

Anyways, I'm going through the source, I presume to remove effects you simply delete the .cs for it, correct?

Also, where I can change the sub-menu's for these effects, I'm looking through the code and there are so many mentions of what the sub-menu is called I have no idea how to change it.

Indeed, delete the files in the demo folders (and in those only!) for the effects you don't need from the project, or edit the .csproj file directly.

To change a submenu, modify the third parameter in the constructor call. For example, change

        public SmartBlurEffect()
           : base("Smart Blur", Resources.SmartBlurImage, "Smart Effects", EffectFlags.Configurable)

to

        public SmartBlurEffect()
           : base("Smart Blur", Resources.SmartBlurImage, "Blurs", EffectFlags.Configurable)

Kris.

Link to comment
Share on other sites

Anyways, I'm going through the source, I presume to remove effects you simply delete the .cs for it, correct?

Also, where I can change the sub-menu's for these effects, I'm looking through the code and there are so many mentions of what the sub-menu is called I have no idea how to change it.

Indeed, delete the files in the demo folders (and in those only!) for the effects you don't need from the project, or edit the .csproj file directly.

To change a submenu, modify the third parameter in the constructor call. For example, change

        public SmartBlurEffect()
           : base("Smart Blur", Resources.SmartBlurImage, "Smart Effects", EffectFlags.Configurable)

to

        public SmartBlurEffect()
           : base("Smart Blur", Resources.SmartBlurImage, "Blurs", EffectFlags.Configurable)

Kris.

Ah, thanks for clearing that out.

  • Like 1
Link to comment
Share on other sites

I miss the old Drop Shadow plugin where you could specify the colour of the shadow from within the plugin window. Oh well. I suppose I'll have to get used to setting my colour first then applying the shadow.

Also, how come (for me) all the codelab files have errors when opened up? I mean they open up fine but there are error messages in terms of the coding

Link to comment
Share on other sites

I miss the old Drop Shadow plugin where you could specify the colour of the shadow from within the plugin window. Oh well. I suppose I'll have to get used to setting my colour first then applying the shadow.

Also, how come (for me) all the codelab files have errors when opened up? I mean they open up fine but there are error messages in terms of the coding

If your trying to use CodeLab, you definetely will get build errors, as CodeLab uses a simplified version of writing a C# effect, like with namespaces and references.

You'll have to use Visual Studio 2008 (Express versions work fine aswell) to view to code correctly.

Link to comment
Share on other sites

I miss the old Drop Shadow plugin where you could specify the colour of the shadow from within the plugin window. Oh well. I suppose I'll have to get used to setting my colour first then applying the shadow.

Also, how come (for me) all the codelab files have errors when opened up? I mean they open up fine but there are error messages in terms of the coding

If your trying to use CodeLab, you definetely will get build errors, as CodeLab uses a simplified version of writing a C# effect, like with namespaces and references.

You'll have to use Visual Studio 2008 (Express versions work fine aswell) to view to code correctly.

Oh, right. Thanks for that.

(Although for the sake of a few effects, I can't be bothered to buy VS) :wink:

Link to comment
Share on other sites

I miss the old Drop Shadow plugin where you could specify the colour of the shadow from within the plugin window. Oh well. I suppose I'll have to get used to setting my colour first then applying the shadow.

Also, how come (for me) all the codelab files have errors when opened up? I mean they open up fine but there are error messages in terms of the coding

If your trying to use CodeLab, you definetely will get build errors, as CodeLab uses a simplified version of writing a C# effect, like with namespaces and references.

You'll have to use Visual Studio 2008 (Express versions work fine aswell) to view to code correctly.

Oh, right. Thanks for that.

(Although for the sake of a few effects, I can't be bothered to buy VS) :wink:

You can get a Express version which is free and unlimited in how long you can use it for.

However, it misses quite a few features important for program production, however for .dll's, there's more than you need features wise.

Link to comment
Share on other sites

Anyways, I'm going through the source, I presume to remove effects you simply delete the .cs for it, correct?

Also, where I can change the sub-menu's for these effects, I'm looking through the code and there are so many mentions of what the sub-menu is called I have no idea how to change it.

Indeed, delete the files in the demo folders (and in those only!) for the effects you don't need from the project, or edit the .csproj file directly.

To change a submenu, modify the third parameter in the constructor call. For example, change

        public SmartBlurEffect()
           : base("Smart Blur", Resources.SmartBlurImage, "Smart Effects", EffectFlags.Configurable)

to

        public SmartBlurEffect()
           : base("Smart Blur", Resources.SmartBlurImage, "Blurs", EffectFlags.Configurable)

Kris.

OK, that's not the right way to make this change.

Please do it this way instead:

        public SmartBlurEffect()
           : base("Smart Blur", Resources.SmartBlurImage,  SubmenuNames.Blurs, EffectFlags.Configurable)

By using SubmenuNames.Blurs your effect will show up under the localized "Blurs" submenu if you are running Paint.NET in a language other than English.

Link to comment
Share on other sites

Anyways, I'm going through the source, I presume to remove effects you simply delete the .cs for it, correct?

Also, where I can change the sub-menu's for these effects, I'm looking through the code and there are so many mentions of what the sub-menu is called I have no idea how to change it.

Indeed, delete the files in the demo folders (and in those only!) for the effects you don't need from the project, or edit the .csproj file directly.

To change a submenu, modify the third parameter in the constructor call. For example, change

        public SmartBlurEffect()
           : base("Smart Blur", Resources.SmartBlurImage, "Smart Effects", EffectFlags.Configurable)

to

        public SmartBlurEffect()
           : base("Smart Blur", Resources.SmartBlurImage, "Blurs", EffectFlags.Configurable)

Kris.

OK, that's not the right way to make this change.

Please do it this way instead:

        public SmartBlurEffect()
           : base("Smart Blur", Resources.SmartBlurImage,  SubmenuNames.Blurs, EffectFlags.Configurable)

By using SubmenuNames.Blurs your effect will show up under the localized "Blurs" submenu if you are running Paint.NET in a language other than English.

It's fine for me though as I am English.

Link to comment
Share on other sites

First off, let me echo many of the sentiments here...thanks Kris! New things to play with! :D

Couple of things I wanted to mention though:

1. Lack of drop-shadow-color-picker. It was oh-so-useful, but I read your post earlier and now we're probably not going to be able to get it. RIP color picker...RIP. :cry:

2. "Grayscale on Color Paper" just makes my image black. I'm a little confused as to how this is supposed to work...? I tried it on a straight photo.

3. A few of the adjustments seem to be pointless. I'm thinking in specific of "Darken", "Lighten", and "Negative". This seems like something we could do ourselves pretty easily unless I'm missing something...

4. The "Duotone" and "Monotone" effects just seem to make my image grayscale...I'm guessing there's more to these effects than I get at the moment. :)

5. "Average Blur"? I don't get it... :?

6. "Fade Edge" = Awesome! I've been wanting something like that for a while! :D

7. "Smart Blur" looks very similar to "Surface Blur"...what is the difference?

8. I also wanted to re-iterate everyone else in saying that the submenus look a little weird...I don't have a constructive suggestion for what to do though. Sorry. :?

9. I know you've explained how to re-compile your effects into separate dlls already, but...por favor? :(

All in all, a good addition! My comments are merely suggestions, nothing more. Thanks for making all this stuff for us, I appreciate it! :D:mtdew:

  • Upvote 1
Link to comment
Share on other sites

1. Lack of drop-shadow-color-picker. It was oh-so-useful, but I read your post earlier and now we're probably not going to be able to get it. RIP color picker...RIP. :cry:
Believe me, I share your pain...
2. "Grayscale on Color Paper" just makes my image black. I'm a little confused as to how this is supposed to work...? I tried it on a straight photo.
See point 1. You need to set the "paper color" using the colors window before applying the adjustment. The same is true for several other ones. Read the summary descriptions on my blog again.
3. A few of the adjustments seem to be pointless. I'm thinking in specific of "Darken", "Lighten", and "Negative". This seems like something we could do ourselves pretty easily unless I'm missing something...
Well, their point is in the source code. What I really wanted to do is create a framework for others to write effects more easily. And so I included some very simple samples. But you're absolutely correct: to an end user they're completely pointless.
4. The "Duotone" and "Monotone" effects just seem to make my image grayscale...I'm guessing there's more to these effects than I get at the moment. :)
See point 2 above. Note that the duotone ones need two colors. I personally think that the "duotone ink on paper" is one of the most useful ones in the lot (together with the drop shadow and the smart blur - that works miracles on scanned images from magazines and such).
5. "Average Blur"? I don't get it... :?
Well' date=' its a blur that averages all pixels within a certain radius, where each pixel counts as much as any other pixel. In a Gaussian blur, the center pixels have much more weight than the further ones. But the truth is, I needed this blur for the drop shadow and since I had it anyway, I just made it available by itself as well.
6. "Fade Edge" = Awesome! I've been wanting something like that for a while! :D
It's strange how these things go... To me, that was one in the very simple sample code category.
7. "Smart Blur" looks very similar to "Surface Blur"...what is the difference?
No idea. What's surface blur?
8. I also wanted to re-iterate everyone else in saying that the submenus look a little weird...I don't have a constructive suggestion for what to do though. Sorry. :?
Point taken. Expect an update in a few days that will fix this.
9. I know you've explained how to re-compile your effects into separate dlls already, but...por favor? :(
Point taken too. See point 8.
All in all, a good addition! My comments are merely suggestions, nothing more. Thanks for making all this stuff for us, I appreciate it! :D:mtdew:
Thank you for the constructive feedback. I did this as an experiment, to play with all kinds of C# 3.0 stuff. But it's nice to here people actually like (some of the) results.
Link to comment
Share on other sites

Thank you for the constructive feedback. I did this as an experiment, to play with all kinds of C# 3.0 stuff. But it's nice to here people actually like (some of the) results.

Oh definitely! Thanks for answering my questions! :D

Surface Blur is one of Ed Harvey's effects...

example.jpg

Can you see my confusion? I may have used too much of Ed, but they seem to do similar things. :?

And changing the colors gave me vastly different results on the Monotone/Duotone stuff. I knew I was missing something. Thanks! :D

Link to comment
Share on other sites

Is there any way to make the cs files codelab compatible? Some of the effects are interesting, but I don't want all of them (including subs) and I'm to busy for VS.

Link to comment
Share on other sites

Is there any way to make the cs files codelab compatible? Some of the effects are interesting, but I don't want all of them (including subs) and I'm to busy for VS.

It would mean re-coding them all.

VS is simple to use, you just need to have an hour or two on your hands for it to download/install and restart.

Link to comment
Share on other sites

I'm scared to download this, does this delete the old drop shadow, if so can you call this one drop shadow 2, and upload the old one aswell?

omExTE6.png


 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...