Jump to content

Enormator

Members
  • Posts

    279
  • Joined

  • Last visited

  • Days Won

    2

Enormator last won the day on November 7 2011

Enormator had the most liked content!

About Enormator

  • Birthday 01/01/1970

Contact Methods

  • Website URL
    http://enormator.110mb.com

Profile Information

  • Location
    where my laptop is
  • Interests
    everything

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Enormator's Achievements

Community Regular

Community Regular (8/14)

  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

2

Reputation

  1. Makes a triangular gradient in selection (or on the full image when nothing is selected) from primary to secondary color (including alpha). Here is the (quite simple) CodeLab source: I did this because I needed it but you still may tell me what you think about it. I use PdN 3.36 and have no clue what the recent version of PdN will say about that dll. If it doesn't work, just use codelab (if that still exists, don't know, was not here for quite a while) TriangularGradient.zip
  2. It's a bg for a game, so pls don't say it's too empty or something ;-)
  3. I already got helped with it in the Plugin Developer Central but I'm in the mid of my degree tests right now, so probably there won't be anything done until next week. I think at the moment this plugin is just too simple to have serious bugs. It's made with codelab and not very complicated. Thank you all for the feedback
  4. You can get all the rects of the selection via Rectangle[] selectionScans = this.EnvironmentParameters.GetSelection(src.Bounds).GetRegionScansInt(); To access every selected pixel I would then have to write a triple loop like this? for (int i = 0; i < selectionScans.size(); i++) { for (int y = selectionScans[i].Top; y < selectionScans[i].Bottom; y++) { for (int x = selectionScans[i].Left; x < selectionScans[i].Right; x++) { //add this pixel to the arithmetic mean calculation } } } and to access ie the red value of a pixel would I then use this? selectionScans[i][x,y].R
  5. What are the edges of the entire image? "rect" is only a small part of the image, isn't it? Couldn't it happen, that the second rendering thread tries to read the color before it the first is ready with calculating it? I could set a flag for being ready, but how do I wait for the flag? Like this? while(!ready){}
  6. I have the same problem but I'm using Codelab. For this plugin I want to first calculate the middle color and then start processing on the image in a multithreaded way with all threads using the precalculated color. (The middle color should be the arithmetic middle of all pixels) Do I have a chance?
  7. You are not misunderstanding anything as it seems. I'm working on it EDIT: This seems to be more difficult than I thought (maybe even impossible) due to the multithreaded rendering architecture of PdN. Would it also be a good thing to have a color wheel where you can select a color and see how it looks like? EDIT2: color wheel added in v1.1
  8. Adjustments -> invert around primary color version 1.1 You know "invert colors"? This plugin is quite similar except that you can invert colors around other colors. Look at the examples to understand. If you want to make this picture look stamped-in instead of stamped-out, you can just use the normal invert colors effect __ :InvertColors: invert colors__> But on this picture, it would be impossible to do that because it would look like this: __ :InvertColors: invert colors__> Now this plugin comes in handy. You take the color picker :ColorPicker: and select the middle color (like in the background of the picture) as primary color. The you use Adjustments->invert around primary color __invert around primary color__> Another example: A middle orange has been selected as primary color. Note how every bump is inverted. __invert around primary color__> With normal color inversion :InvertColors: the outcome would be like this: :idea: A usage tip: If you don't know the middle color of your image, just resize it to 1x1 px and then colorpick the only pixel left. Undo the resize and then you can easily use my effect. Let me see, what you use it for! I'm looking forward to other creative using ideas for this plugin History: v1.1 added color wheel invert_around_primcol.zip
  9. 1. :Clouds: clouds at default setting 2. :Emboss: emboss at -45 degree 3. reduce the canvas size by 2 pixels in width and height (with positioning setting to center) to remove the border
  10. Today I read something about Google, privacy and Ixquick. This inspired me to do this: Then I was wondering, if one of you has ever done any pictures with a deeper meaning, like political caricatures or something else. So: Have you?
  11. omfg I guess I'll have to reread the rules before refering to them
  12. ^ bump I only used normal blend mode because my plug-in creates transparency on the top layer, so the original parts, which you didn't want to modify should shine through from below. Please read the forum rules. Especially the part about bumping threads. I think the correct procedure in accordance to the forum rules would have been to... ask me via pm? I must say, that I don't like that part of the rules very much...
  13. OMFG! This is sooo impressive! Ultra-Aweseome! The best tutorial, I've ever seen (except for my own ones )
  14. It would be nice, if the black fields of the board would have a different color from the black pieces and be solid. So everyone could more easily do individually styled images. The colors of the pieces are also not so easy editable if you would for example want a texture to fill them, you would want to select all white pieces at once and do a photo flood fill. But I don't know a good solution for that atm... white pieces just should be white maybe white rgb(254,254,254) in contrast to the white of the board rgb(255,255,255) I also like chess
×
×
  • Create New...