Jump to content

Coornio

Members
  • Posts

    28
  • Joined

  • Last visited

Posts posted by Coornio

  1. 42 minutes ago, treston.colson said:

    Blocked by Windows Defender!

    "Trojan:Win32/Wacatac.B!ml"

     

    This is just Defender's way of saying "I don't even know why, but I don't like this." This is a heuristic detection that more often than not comes up flagging legit files. Look up the term if you're curious. I coded myself a Hangman game some months ago that kept getting flagged by Defender when compiled, it's pretty much brain-dead and/or paranoid.

  2. As is the usual after one posts a lengthy post requesting help, I managed to solve it with the help of another third party. For those curious:

     

    weightSrc = Asrc / 255;
    weightDst = 1 - weightSrc;
    
    Aout = min(Adst * weightDst + Asrc,              255);
    Rout = min(Rdst * weightDst + BLEND * weightSrc, 255);
    Gout = min(Gdst * weightDst + BLEND * weightSrc, 255);
    Bout = min(Bdst * weightDst + BLEND * weightSrc, 255);
    
    // where BLEND stands for the particular blend operation you require, 
    // eg: Difference is: abs(Rsrc - Rdst)
    // eg: Multiply is: (Rsrc * Rdst) / 255
    // eg: Additive is: min(Rsrc + Rdst, 255)
    
    // normal alpha blending in particular is easier
    
    Aout = min(Adst * weightDst +         Asrc,        255);
    Rout = min(Rdst * weightDst + (Rsrc * Asrc) / 255, 255);
    Gout = min(Gdst * weightDst + (Gsrc * Asrc) / 255, 255);
    Bout = min(Bdst * weightDst + (Bsrc * Asrc) / 255, 255);

     

    I am not 100% sure if I haven't made any mistakes, but some rudimentary testing through the color picker in a comparison between paint.NET's blend and mine shows practically identical values, minus rounding differences.

  3. Hello there! It's been a while since I've been around these forums for anything, but I imagine it's at present my best bet of getting some relevant help on the topic. I apologize in advance if this may not be the most appropriate category to post, but it seemed the most relevant one. If needed, please feel free to move the thread elsewhere.

     

    To give a bit of a background, I am programming an emulator for MegaChip-8 (something probably few people know), and I wanted to add blend modes for its sprite drawing routine to its repertoire. That much is fine and all, but the only part I've actually managed to get working correctly is normal blending (with alpha) and opaque-only in other modes.

     

    To clarify on what I mean with opaque-only.. well, the results are only as expected when opacity of the source pixels is 1 (255). The lower it gets, the more inaccurate the output I get. I've been using paint.NET as my tool for authenticating the validity of the output pixels in my attempt to implement the various blend modes out there.

     

    The extension of this problem I'm facing however is the limited resources available in regards to coding blends in general. A lot of the stuff from Google is either straight up nonsense, or irrelevant to the search query. The free tier of chatgpt is also completely inept and incompetent at providing useful feedback. Understanding the process of handling color with opaque pixels is super easy, but when alpha is concerned, many of the formulas I see straight up crumble.

     

    One example would be the Difference blend, which in essence is |Src - Dst| and I got this working with opaque pixels, and also in alpha-blending mode at full opacity. The lower I go though, the less the result looks like what I get from paint.NET.

     

    So, given this place has a bunch of very knowledgeable people that have tackled color theory, blending, and programming with all those mixed in, I was hoping I might employ your assistance in figuring out how I'm supposed to be going about this in order to do it right. Fair warning however, I am absolutely terrible at figuring out how to read math-format formulas. I would appreciate any such suggestions if you could please translate them to pseudocode. My brain picks that up waaaay easier.

     

    Thanks to everyone who may participate!
    --------------------------------------------


    Examples, for those interested. First picture depicts the expected result in paint.NET, and also what I'm getting when doing an opaque Difference blend in the emulator I'm writing:

    image.png

     

    This next picture showcases the expected outcome at 0.5 alpha from paint.NET

     

    image.png.298452f3592d4f5d9ac18e30a138e60b.png

    And this is what I get instead from the emulator under the same parameters:


    image.png.e94e09a257ed5d9067659f8d7a62953d.png

  4. I have some textures that are baked onto a black background, which works for some situations where an app can properly blend the textures that way, but in others it's an issue.

     

    As such, I am looking for a way to convert a pixel's luminance value (HSV) to opacity. The closer to V=100 a pixel is, the closer to 255 alpha it gets basically. I need this applied to the entire texture of course, not on a per-pixel basis, in case it was misleading.

     

    Does anyone have any recommendations for me? It is imperative to maintain color information so the likes of "Black and Alpha+" or BoltBait's "Gray to Alpha" don't work for me. Neither is one called "Color to alpha" or another "AlphaSpace" (this one mostly works but also seems to dampen brightness and lose pixels below a threshold).

     

    Many thanks for any pointers!

  5. Tried toggling Num lock on the keyboard?

     

    Try this:

     

    1. open paint.net & select the Text tool :TextTool:  Click in the middle of your canvas.

     

    2. Press & Hold The Alt key + use the numeric pad to type 0169  Release the Alt key.  Copyright symbol should appear.  Does it?

     

    If that doesn't work, try #2 again with the Num Lock toggled.

     

    Now that works. Weird how nobody tells you that it only appears to work through the numpad.

  6. Not quite: https://www.dropbox.com/s/3zbv56atdbelzky/Screenshot%202014-11-03%2002.31.29.png?dl=0

     

    Told you, no icons.

     

    Also, i've read a lot about using ALT + numbers to type special characters. I've also realised that no matter what i do, it seems i'm not the chosen one. This "feature" never worked for me throughout 4 operating systems, from XP and Vista to Windows 7 and 8.1. It just doesn't do anything. Pressing the left ALT immediately highlights the menu bar of any application, and while the right one doesn't, it does not produce any symbols with a combination of numbers or letters either. Is there some kinda switch i'm supposed to flip in windows for this ability to activate or something?

  7. Download and install the font.  

     

    Then download and install my WhichSymbol+ plugin (link in my sig).  

     

    The plugin is basically a font browser.  Use it to navigate through the installed fonts and pick out a symbol.  Whatever you select is rendered to the active layer (NB: one symbol at a time)

     

    Didn't help. It only lists the standard + cyrilic characters as you'd expect from a standard font. I'm afraid i need a different way to import them.

  8. 1. ScriptLab might help here.

     

    2. TR's PseudoSnap will help you snap stuff to a grid of your choosing.

     

    3. Smashing Magazine gives away awesome font packs for free http://www.smashingmagazine.com/tag/freebies/c I also like these: http://zurb.com/playground/foundation-icon-fonts-3

     

    Very very interesting. Thanks for the help on all of them.

    This foundation font seems very nice, but i can't seem to figure how exactly i'll use its icons inside paint.net. Any pointers? Perhaps i have to make a sample website to render them all and then i'll just copy them as bitmaps :P

  9. I do something similar to that when i mess with icons. As long as you don't mind slight shadows making it into your alpha map, it should be simple for any images that have a transparent background. Otherwise, you may have to use the magic wand to cut parts out afaik.

     

    Take the picture, crank up the brightness and contrast to make it completely white, make a new layer below it, paint it black. Done.

     

    I'm no expert, so don't take my word for perfect success :P

  10. I hope there's an answer to either of these two questions :P

     

    1) I'm pretty sure that many of you would like to be able to record a paint.net session and replay it step by step for another image. Just take a history chunk, pop it to another picture, boom, automated painting. It's what i'd like to do in my case for several icons of different colors. They all follow pretty much the same procedure but having to write it down, and note the colors and values of each plugin for every step is just tedious. So i'm wondering, is there a plugin that can do something like that i haven't heard of? Is the idea awesome enough for someone to attempt it? :P

     

    2) I am also looking for any plugin or feature which may make working in tiles much better. In some cases i wish to line up textures in a sprite fashion, but that requires me first to make a sample checker board so i can use it to know that my selections are aligned perfectly with each other. Is there something that would let me operate in this fashion where the selection snaps in place every 64 pixels for example?

     

    3) As i said, i work with icons. I'm making a mod in a game called Tesseract that is pretty much a replacement for the current UI (which is a much older version of my mod to begin with, long story) but i'm helpless. I won't lie, i've no real clue how to draw anything that isn't a shape, at least, not reliable enough so i can reproduce it a few months later if i decide to redo it for whatever reason. Bottom line is, i suck. So i'm using dingbat fonts like webdings and wingdings to render the symbols unto the canvas, and then i work a little coloration on them and boom, ready to go in my mod to pretty things up. There is, however, only so much the default fonts can provide and having to rely on free icons i find elsewhere is both disgraceful and difficult when i run out of options since i can't exactly mix and match sets from different people, there would be no consistency whatsoever.

    So this is my problem really. I'm looking for dingbat fonts which may be able to render icons in a style similar to this icon pack i found:

    https://www.iconfinder.com/iconsets/super-mono-reflection

    Not to the letter, but clean looking like those.

    I would also appreciate any tips anyone might be willing to give me so i can create my own icon templates to work on. Because i could tell you some basic things about how an image is put together to make the end result but my knowledge would only go so far when complex shapes, intricate gradients, shadows, reflections and glows are in play..

     

     

     

    Bonus: screenie of the kind of icons i'm using in my mod for reference.

    EDIT: the "no" and "yes" thumbs icons are what i was talking about when i said about coloring dingbat font symbols. It's a bit of a roundabout way that i'm going, using the Black & Alpha plugin to turn the image "inside out" by attempting to make transparent pixels opaque and opaque pixels transparent. If you guys know of another plugin to do something like that, MUCH appreciated.

    post-90474-0-92782800-1414875482_thumb.p

  11. Personally i doubt this crash can be replicated. It's never happened before while following that procedure, it was wholly unexpected. Then again, a few hours later my computer froze for good, applications wouldn't close or respond, task manager wouldn't even show up; hell, i was holding the restart button and it refused to do anything! It could have been some weird memory corruption for all i know. In any case, i think it would be safe to call this closed for now, at least until it can be proven that this crash can happen again, and under normal circumstances.

  12. I know 4.0.3 is out. I don't think its changes affect this weird occasion though, so i went ahead and made this thread.

     

    I was testing an image by duplicating the layer and merging, and then repeating the process until all transparent pixels were completely opaque. Then i tried to undo the changes back to when the image was opened, and instead paint.net crashed for the first time while doing something like that. I do not know if it will happen again, but here's the log in any case. I will update if get the same crash again.

     

    Hidden Content:
    This text file was created because paint.net crashed. Please e-mail this to crashlog4@getpaint.net so we can diagnose and fix the problem.
     
    Application version: paint.net 4.0.2 (Final 4.2.5309.33059)
    Time of crash: 3/8/2014 11:17:23 μμ
    Application uptime: 01:04:04.5288945
    Application state: Running 
    Working set: 211.524 KiB
    Threads: 31
    Install directory: C:\Program Files\Paint.NET
    Current directory: C:\Program Files\Paint.NET
    OS Version: 6.1.7601.65536 Service Pack 1 Workstation x64
    .NET version: CLR 4.0.30319.18444 x64, FX 4.0 4.5
    Processor: 4x "Intel® Core i5 CPU         750  @ 2.67GHz" @ ~2666MHz (DEP, SSE, SSE2, SSE3, SSSE3, SSE4_1, SSE4_2)
    Physical memory: 8151 MB
    Video card: ATI Radeon HD 4800 Series (v:1002, d:9460, r:0)
    Hardware acceleration: True (default: True)
    UI animations: True
    UI DPI: 96,00 dpi (1,00x scale)
    UI theme: Aero/Aero + DWM (Aero.msstyles)
    Updates: True, 3/8/2014
    Locale: pdnr.c: el-GR, hklm: el-GR, hkcu: el-GR, cc: el-GR, cuic: el-GR
     
    Exception details:
    System.InvalidOperationException: Η λειτουργία δεν είναι έγκυρη εξαιτίας της τρέχουσας κατάστασης του αντικειμένου.
       σε PaintDotNet.Collections.Deque`1.Peek() στο d:\src\pdn\paintdotnet\src\Base\Collections\Deque`1.cs:γραμμή 318
       σε PaintDotNet.Rendering.ThumbnailManager.RenderThreadLoop() στο d:\src\pdn\paintdotnet\src\PaintDotNet\Rendering\ThumbnailManager.cs:γραμμή 273
       σε PaintDotNet.Rendering.ThumbnailManager.RenderThread() στο d:\src\pdn\paintdotnet\src\PaintDotNet\Rendering\ThumbnailManager.cs:γραμμή 236
       σε System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       σε System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       σε System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       σε System.Threading.ThreadHelper.ThreadStart()
     
    Managed assemblies: 
        mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @ C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorlib.dll
        PaintDotNet, Version=4.2.5309.33059, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\PaintDotNet.exe
        PaintDotNet.Core, Version=4.2.5309.33059, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\PaintDotNet.Core.dll
        PaintDotNet.Base, Version=4.2.5309.33059, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\PaintDotNet.Base.dll
        System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @ C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll
        System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @ C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll
        PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 @ C:\Windows\Microsoft.Net\assembly\GAC_MSIL\PresentationFramework\v4.0_4.0.0.0__31bf3856ad364e35\PresentationFramework.dll
        WindowsBase, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 @ C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll
        PresentationCore, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 @ C:\Windows\Microsoft.Net\assembly\GAC_64\PresentationCore\v4.0_4.0.0.0__31bf3856ad364e35\PresentationCore.dll
        System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @ C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll
        System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @ C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll
        PaintDotNet.SystemLayer, Version=4.2.5309.33059, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\PaintDotNet.SystemLayer.dll
        PaintDotNet.Framework, Version=4.2.5309.33059, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\PaintDotNet.Framework.dll
        PaintDotNet.Resources, Version=4.2.5309.33059, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\PaintDotNet.Resources.dll
        PaintDotNet.Data, Version=4.2.5309.33059, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\PaintDotNet.Data.dll
        PaintDotNet.Effects, Version=4.2.5309.33059, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\PaintDotNet.Effects.dll
        PaintDotNet.SystemLayer.Native.x64, Version=4.2.5309.33059, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\PaintDotNet.SystemLayer.Native.x64.dll
        System.Windows.Forms.resources, Version=4.0.0.0, Culture=el, PublicKeyToken=b77a5c561934e089 @ C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms.resources\v4.0_4.0.0.0_el_b77a5c561934e089\System.Windows.Forms.resources.dll
        System.Xaml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @ C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll
        System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @ C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll
        mscorlib.resources, Version=4.0.0.0, Culture=el, PublicKeyToken=b77a5c561934e089 @ C:\Windows\Microsoft.Net\assembly\GAC_MSIL\mscorlib.resources\v4.0_4.0.0.0_el_b77a5c561934e089\mscorlib.resources.dll
        "AA's_Assistant", Version=1.0.3697.21415, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\AA's_Assistant.dll
        AlphaBlur, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\AlphaBlur.dll
        AlphaMask, Version=2.0.3574.41943, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\AlphaMask.dll
        BasicPhotoAdjustments, Version=2.1.4020.485, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\BasicPhotoAdjustments.dll
        BlackandAlpha+, Version=1.1.3809.21705, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\BlackandAlpha+.dll
        "Borders N' Shapes", Version=1.8.3627.29848, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\Borders N' Shapes.dll
        ComputeShaderEffects, Version=1.0.0.7, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\ComputeShaderEffects.dll
        LightningCurve, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\CurlyLines.dll
        Flip, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\Flip.dll
        FurBlur, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\FurBlur.dll
        Gralpha, Version=1.0.3684.31203, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\Gralpha.dll
        Heightmap plugin v1, Version=1.2.4109.36768, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\Heightmap v1.2.dll
        HexaGrid, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\HexaGrid.dll
        LightRays, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\LightRays.dll
        Norm_Render, Version=7.3.4484.27012, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\Norm_Render.dll
        Outline Object, Version=2.6.3612.21574, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\Outline Object.dll
        Pixelate+, Version=1.2.3742.38634, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\Pixelate+.dll
        Polygon, Version=3.5.4315.35143, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\Polygon.dll
        pyrochild.effects.REQUIRED, Version=3.6.3742.39840, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\pyrochild.effects.REQUIRED.dll
        Rosaces, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\Rosaces.dll
        Shapes, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\Shapes.dll
        SlimDX, Version=2.0.10.43, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\SlimDX.D3D11.x64.dll
        Trail, Version=1.0.3723.27562, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\Trail.dll
        Vandermotten.PaintDotNetEffects.Blurs, Version=3.8.0.0, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\Vandermotten.PaintDotNetEffects.Blurs.dll
        Vandermotten.PaintDotNetEffects, Version=3.8.0.0, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\Vandermotten.PaintDotNetEffects.dll
        Vandermotten.PaintDotNetEffects.DropShadow, Version=3.8.0.0, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\Vandermotten.PaintDotNetEffects.DropShadow.dll
        Vandermotten.PaintDotNetEffects.Gradient, Version=3.8.0.0, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\Vandermotten.PaintDotNetEffects.Gradient.dll
        Vandermotten.PaintDotNetEffects.ObjectAlign, Version=3.8.0.0, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\Effects\Vandermotten.PaintDotNetEffects.ObjectAlign.dll
        System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @ C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll
        AnimGIF, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\FileTypes\AnimGIF.dll
        BMP32 Paint.NET FileType, Version=2.6.0.0, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\FileTypes\BMP32 Paint.NET FileType.dll
        IcoCur, Version=3.7.0.0, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\FileTypes\IcoCur.dll
        OptiPngFileType, Version=10.0.0.0, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\FileTypes\OptiPngFileType.dll
        PhotoShop, Version=2.4.0.32275, Culture=neutral, PublicKeyToken=null @ C:\Program Files\Paint.NET\FileTypes\PhotoShop.dll
        WindowsFormsIntegration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 @ C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsFormsIntegration\v4.0_4.0.0.0__31bf3856ad364e35\WindowsFormsIntegration.dll
        System.IO.Compression, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @ C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IO.Compression\v4.0_4.0.0.0__b77a5c561934e089\System.IO.Compression.dll
     
    Native modules: 
        C:\Program Files\Paint.NET\PaintDotNet.exe, version=4.2.5309.33059
        C:\Windows\SYSTEM32\ntdll.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\SYSTEM32\MSCOREE.DLL, version=4.0.40305.0 (Main.040305-0000)
        C:\Windows\system32\KERNEL32.dll, version=6.1.7601.18015 (win7sp1_gdr.121129-1432)
        C:\Windows\system32\KERNELBASE.dll, version=6.1.7601.18015 (win7sp1_gdr.121129-1432)
        C:\Windows\system32\guard64.dll, version=7, 0, 315459, 4132
        C:\Windows\system32\USER32.dll, version=6.1.7601.17514 (win7sp1_rtm.101119-1850)
        C:\Windows\system32\GDI32.dll, version=6.1.7601.18275 (win7sp1_gdr.131002-1533)
        C:\Windows\system32\LPK.dll, version=6.1.7601.18177 (win7sp1_gdr.130605-1534)
        C:\Windows\system32\USP10.dll, version=1.0626.7601.18454 (win7sp1_gdr.140424-1533)
        C:\Windows\system32\msvcrt.dll, version=7.0.7601.17744 (win7sp1_gdr.111215-1535)
        C:\Windows\system32\ADVAPI32.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\SYSTEM32\sechost.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\RPCRT4.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\PSAPI.DLL, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\VERSION.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\IMM32.DLL, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\MSCTF.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\fltlib.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscoreei.dll, version=4.0.30319.18408 built by: FX451RTMGREL
        C:\Windows\system32\SHLWAPI.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clr.dll, version=4.0.30319.18444 built by: FX451RTMGDR
        C:\Windows\system32\MSVCR110_CLR0400.dll, version=11.00.50938.18408 built by: FX451RTMGREL
        C:\Windows\assembly\NativeImages_v4.0.30319_64\mscorlib\abf62e6545d2802fc60286678a67e6bf\mscorlib.ni.dll, version=4.0.30319.18444 built by: FX451RTMGDR
        C:\Windows\system32\ole32.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\CRYPTBASE.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\uxtheme.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\assembly\NativeImages_v4.0.30319_64\System\4d4a15d5d7968df7dedd4cf853848d90\System.ni.dll, version=4.0.30319.18408 built by: FX451RTMGREL
        C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Drawing\7926c26400ff262c7fc48b729377085b\System.Drawing.ni.dll, version=4.0.30319.18408 built by: FX451RTMGREL
        C:\Windows\assembly\NativeImages_v4.0.30319_64\WindowsBase\8be42454b4d7db7686ea494691d18b16\WindowsBase.ni.dll, version=4.0.30319.18408 built by: FX451RTMGREL
        C:\Windows\system32\CRYPTSP.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\rsaenh.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\assembly\NativeImages_v4.0.30319_64\PresentationCore\bb1efedf0f2aa2ebbf9f0bf640c9721d\PresentationCore.ni.dll, version=4.0.30319.18408 built by: FX451RTMGREL
        C:\Windows\assembly\NativeImages_v4.0.30319_64\Presentatio5ae0f00f#\91b87b18c4453c04c9cebdeea2952826\PresentationFramework.ni.dll, version=4.0.30319.18408
        C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Core\1d513cb1b284a419e8b3df381ce7f270\System.Core.ni.dll, version=4.0.30319.18408 built by: FX451RTMGREL
        C:\Windows\assembly\NativeImages_v4.0.30319_64\PaintDotNet.Base\bcf07091dfbe5ed26af915bf0d0e275a\PaintDotNet.Base.ni.dll, version=4.2.5309.33059
        C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Windows.Forms\4764e3995ebd7b6b438eef937cde1332\System.Windows.Forms.ni.dll, version=4.0.30319.18408 built by: FX451RTMGREL
        C:\Windows\assembly\NativeImages_v4.0.30319_64\PaintDotNet500b2e4f#\3bd7b180ebcd232ff76c886b8fdc9abc\PaintDotNet.SystemLayer.ni.dll, version=4.2.5309.33059
        C:\Windows\assembly\NativeImages_v4.0.30319_64\PaintDotNet.Core\d4f2bd14efb4a437f7a2853e1c77a4e4\PaintDotNet.Core.ni.dll, version=4.2.5309.33059
        C:\Windows\assembly\NativeImages_v4.0.30319_64\PaintDotNet26779e70#\755afac95cc278751a17bbae6cc1c667\PaintDotNet.Resources.ni.dll, version=4.2.5309.33059
        C:\Windows\assembly\NativeImages_v4.0.30319_64\PaintDotNet7afaaa15#\f5c41fa0ef2d98f045d5fe9d09522ca7\PaintDotNet.Framework.ni.dll, version=4.2.5309.33059
        C:\Windows\assembly\NativeImages_v4.0.30319_64\PaintDotNet.Data\2edd97bc6a000faa67153adab512b2f9\PaintDotNet.Data.ni.dll, version=4.2.5309.33059
        C:\Windows\assembly\NativeImages_v4.0.30319_64\PaintDotNet.Effects\57c3f1f4da478685e359379c52023795\PaintDotNet.Effects.ni.dll, version=4.2.5309.33059
        C:\Windows\assembly\NativeImages_v4.0.30319_64\PaintDotNet\ec9e850e615dc96e6dabf9734342a4dc\PaintDotNet.ni.exe, version=4.2.5309.33059
        C:\Windows\system32\dwrite.dll, version=6.2.9200.16492 (win8_gdr_oobssr.130113-0015)
        C:\Windows\Microsoft.NET\Framework64\v4.0.30319\WPF\wpfgfx_v0400.dll, version=4.0.30319.18408 built by: FX451RTMGREL
        C:\Windows\system32\OLEAUT32.dll, version=6.1.7601.17676
        C:\Windows\Microsoft.NET\Framework64\v4.0.30319\WPF\PresentationNative_v0400.dll, version=4.0.30319.18408 built by: FX451RTMGREL
        C:\Windows\system32\shell32.dll, version=6.1.7601.17514 (win7sp1_rtm.101119-1850)
        C:\Windows\Microsoft.NET\Framework64\v4.0.30319\nlssorting.dll, version=4.0.30319.18408 built by: FX451RTMGREL
        C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clrjit.dll, version=4.0.30319.18444 built by: FX451RTMGDR
        C:\Windows\assembly\NativeImages_v4.0.30319_64\PaintDotNetc8826574#\ec90481fefc4ebebf5241ce379902ad7\PaintDotNet.SystemLayer.Native.x64.ni.dll, version=4.2.5309.33059
        C:\Program Files\Paint.NET\PaintDotNet.SystemLayer.Native.x64.dll, version=4.2.5309.33059
        C:\Windows\system32\MSVCR120.dll, version=12.00.21005.1 built by: REL
        C:\Windows\system32\VCOMP120.DLL, version=12.00.21005.1 built by: REL
        C:\Windows\system32\MSVCP120.dll, version=12.00.21005.1 built by: REL
        C:\Windows\system32\PROPSYS.dll, version=7.00.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.18455_none_2b283fd671e9bf4d\gdiplus.dll, version=6.1.7601.18455 (win7sp1_gdr.140425-1537)
        C:\Windows\system32\dxgi.dll, version=6.2.9200.16492 (win8_gdr_oobssr.130113-0015)
        C:\Windows\system32\dwmapi.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\DXGIDebug.dll, version=9.30.9200.16384
        C:\Windows\system32\WINTRUST.dll, version=6.1.7601.18205 (win7sp1_gdr.130708-1532)
        C:\Windows\system32\CRYPT32.dll, version=6.1.7601.18277 (win7sp1_gdr.131005-0934)
        C:\Windows\system32\MSASN1.dll, version=6.1.7601.17514 (win7sp1_rtm.101119-1850)
        C:\Windows\system32\profapi.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\CLBCatQ.DLL, version=2001.12.8530.16385 (win7_rtm.090713-1255)
        C:\Windows\System32\UIAnimation.dll, version=6.2.9200.16492 (win8_gdr_oobssr.130113-0015)
        C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_fa396087175ac9ac\comctl32.dll, version=6.10 (win7_rtm.090713-1255)
        C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.18201_none_a4d3b9377117c3df\comctl32.dll, version=5.82 (win7_rtm.090713-1255)
        C:\Windows\system32\WindowsCodecs.dll, version=6.2.9200.16810 (win8_gdr.140129-1238)
        C:\Windows\system32\RpcRtRemote.dll, version=6.1.7601.17514 (win7sp1_rtm.101119-1850)
        C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms.resources\v4.0_4.0.0.0_el_b77a5c561934e089\System.Windows.Forms.resources.dll, version=4.0.30319.17929 built by: FX45RTMREL
        C:\Windows\system32\d2d1.dll, version=6.2.9200.16492 (win8_gdr_oobssr.130113-0015)
        C:\Windows\system32\wtsapi32.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\WINSTA.dll, version=6.1.7601.17514 (win7sp1_rtm.101119-1850)
        C:\Windows\system32\d3d11.dll, version=6.2.9200.16570 (win8_gdr.130327-1526)
        C:\Windows\system32\D3D10Warp.dll, version=6.2.9200.16783 (win8_gdr.131220-1803)
        C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Xaml\e3882692d8f0e323f93b4d95c204b7b7\System.Xaml.ni.dll, version=4.0.30319.18408 built by: FX451RTMGREL
        C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Xml\fa4b9cda7a89969191429507a934c352\System.Xml.ni.dll, version=4.0.30319.18408 built by: FX451RTMGREL
        C:\Windows\Microsoft.Net\assembly\GAC_MSIL\mscorlib.resources\v4.0_4.0.0.0_el_b77a5c561934e089\mscorlib.resources.dll, version=4.0.30319.17929 built by: FX45RTMREL
        C:\Windows\system32\aticfx64.dll, version=8.17.10.1129
        C:\Windows\system32\atiuxp64.dll, version=8.14.01.6264
        C:\Windows\system32\atidxx64.dll, version=8.17.10.0436
        C:\Windows\system32\winmm.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\explorerframe.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\DUser.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\DUI70.dll, version=6.1.7601.17514 (win7sp1_rtm.101119-1850)
        C:\Program Files\Paint.NET\Effects\AA's_Assistant.dll, version=1.0.3697.21415
        C:\Program Files\Paint.NET\Effects\AlphaBlur.dll, version=1.0.0.0
        C:\Program Files\Paint.NET\Effects\AlphaMask.dll, version=2.0.3574.41943
        C:\Program Files\Paint.NET\Effects\BasicPhotoAdjustments.dll, version=2.1.4020.485
        C:\Program Files\Paint.NET\Effects\BlackandAlpha+.dll, version=1.1.3809.21705
        C:\Program Files\Paint.NET\Effects\Borders N' Shapes.dll, version=1.8.3627.29848
        C:\Program Files\Paint.NET\Effects\ComputeShaderEffects.dll, version=1.0.0.7
        C:\Program Files\Paint.NET\Effects\CurlyLines.dll, version=1.0.0.0
        C:\Program Files\Paint.NET\Effects\Flip.dll, version=2.0.0.0
        C:\Program Files\Paint.NET\Effects\FurBlur.dll, version=1.0.1.0
        C:\Program Files\Paint.NET\Effects\Gralpha.dll, version=1.0.3684.31203
        C:\Program Files\Paint.NET\Effects\Heightmap v1.2.dll, version=1.2.4109.36768
        C:\Program Files\Paint.NET\Effects\HexaGrid.dll, version=1.2.0.0
        C:\Program Files\Paint.NET\Effects\LightRays.dll, version=1.3.0.0
        C:\Program Files\Paint.NET\Effects\Norm_Render.dll, version=7.3.4484.27012
        C:\Program Files\Paint.NET\Effects\Outline Object.dll, version=2.6.3612.21574
        C:\Program Files\Paint.NET\Effects\Pixelate+.dll, version=1.2.3742.38634
        C:\Program Files\Paint.NET\Effects\Polygon.dll, version=3.5.4315.35143
        C:\Program Files\Paint.NET\Effects\pyrochild.effects.REQUIRED.dll, version=3.6.3742.39840
        C:\Program Files\Paint.NET\Effects\Rosaces.dll, version=1.1.0.0
        C:\Program Files\Paint.NET\Effects\Shapes.dll, version=1.4.0.0
        C:\Program Files\Paint.NET\Effects\SlimDX.D3D11.x64.dll, version=
        C:\Windows\WinSxS\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_08e61857a83bc251\MSVCR90.dll, version=9.00.30729.6161
        C:\Windows\WinSxS\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_08e61857a83bc251\msvcm90.dll, version=9.00.30729.6161
        C:\Windows\system32\winhttp.dll, version=6.1.7601.17514 (win7sp1_rtm.101119-1850)
        C:\Windows\system32\webio.dll, version=6.1.7601.17514 (win7sp1_rtm.101119-1850)
        C:\Windows\system32\IPHLPAPI.DLL, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\NSI.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\WINNSI.DLL, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\dhcpcsvc6.DLL, version=6.1.7601.17970 (win7sp1_gdr.121009-0412)
        C:\Windows\system32\WS2_32.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\dhcpcsvc.DLL, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\SspiCli.dll, version=6.1.7601.18443 (win7sp1_gdr.140411-1533)
        C:\Windows\system32\credssp.dll, version=6.1.7601.18489 (win7sp1_gdr.140529-2100)
        C:\Windows\system32\CFGMGR32.dll, version=6.1.7601.17514 (win7sp1_rtm.101119-1850)
        C:\Program Files\Paint.NET\Effects\Trail.dll, version=1.0.3723.27562
        C:\Program Files\Paint.NET\Effects\Vandermotten.PaintDotNetEffects.Blurs.dll, version=3.8.0.0
        C:\Program Files\Paint.NET\Effects\Vandermotten.PaintDotNetEffects.dll, version=3.8.0.0
        C:\Program Files\Paint.NET\Effects\Vandermotten.PaintDotNetEffects.DropShadow.dll, version=3.8.0.0
        C:\Program Files\Paint.NET\Effects\Vandermotten.PaintDotNetEffects.Gradient.dll, version=3.8.0.0
        C:\Program Files\Paint.NET\Effects\Vandermotten.PaintDotNetEffects.ObjectAlign.dll, version=3.8.0.0
        C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Configuration\13bb14bb88e6c577c79001039d678bbd\System.Configuration.ni.dll, version=4.0.30319.18408 built by: FX451RTMGREL
        C:\Windows\Microsoft.NET\Framework64\v4.0.30319\diasymreader.dll, version=11.0.50938.18408 built by: FX451RTMGREL
        C:\Program Files\Paint.NET\FileTypes\AnimGIF.dll, version=2.2.0.0
        C:\Program Files\Paint.NET\FileTypes\BMP32 Paint.NET FileType.dll, version=2.6.0.0
        C:\Program Files\Paint.NET\FileTypes\IcoCur.dll, version=3.7.0.0
        C:\Program Files\Paint.NET\FileTypes\OptiPngFileType.dll, version=10.0.0
        C:\Program Files\Paint.NET\FileTypes\PhotoShop.dll, version=2.4.0.0
        C:\Windows\assembly\NativeImages_v4.0.30319_64\WindowsForm0b574481#\f60034b135067f2ba42eb767440fc7ce\WindowsFormsIntegration.ni.dll, version=4.0.30319.18408 built by: FX451RTMGREL
        C:\Windows\system32\rasapi32.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\rasman.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\rtutils.dll, version=6.1.7601.17514 (win7sp1_rtm.101119-1850)
        C:\Windows\system32\mswsock.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\System32\wshtcpip.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\System32\wship6.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\DNSAPI.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\rasadhlp.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\System32\fwpuclnt.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clrcompression.dll, version=4.0.30319.18408 built by: FX451RTMGREL
        C:\Windows\assembly\NativeImages_v4.0.30319_64\System.IO.Cb3b124c8#\1ba46246b5e4a98294907660fccda6a8\System.IO.Compression.ni.dll, version=4.0.30319.18408
        C:\Windows\System32\comdlg32.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\SETUPAPI.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\DEVOBJ.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\ntmarta.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\WLDAP32.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\apphelp.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Users\RaZgRiZ\AppData\Roaming\Dropbox\bin\DropboxExt64.24.dll, version=1.0.0.24
        C:\Windows\system32\dbghelp.dll, version=6.1.7601.17514 (win7sp1_rtm.101119-1850)
        C:\Windows\WinSxS\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_08e61857a83bc251\MSVCP90.dll, version=9.00.30729.6161
        C:\Windows\system32\EhStorShell.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\ntshrui.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\srvcli.dll, version=6.1.7601.17514 (win7sp1_rtm.101119-1850)
        C:\Windows\system32\cscapi.dll, version=6.1.7601.17514 (win7sp1_rtm.101119-1850)
        C:\Windows\system32\slc.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\msls31.dll, version=3.10.349.0
        C:\Program Files\Common Files\microsoft shared\ink\tiptsf.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\System32\StructuredQuery.dll, version=7.00.7601.17514 (win7sp1_rtm.101119-1850)
        C:\Windows\System32\Secur32.dll, version=6.1.7601.18443 (win7sp1_gdr.140411-1533)
        C:\Windows\system32\actxprxy.dll, version=6.1.7601.17514 (win7sp1_rtm.101119-1850)
        C:\Program Files\Internet Explorer\ieproxy.dll, version=11.00.9600.17207 (winblue_gdr_escrow.140618-1157)
        C:\Windows\system32\api-ms-win-downlevel-shlwapi-l1-1-0.dll, version=6.2.9200.16492 (win8_gdr_oobssr.130113-0015)
        C:\Windows\system32\api-ms-win-downlevel-shlwapi-l2-1-0.dll, version=6.2.9200.16492 (win8_gdr_oobssr.130113-0015)
        C:\Windows\system32\api-ms-win-downlevel-advapi32-l1-1-0.dll, version=6.2.9200.16492 (win8_gdr_oobssr.130113-0015)
        C:\Windows\system32\thumbcache.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\SHDOCVW.dll, version=6.1.7601.18222 (win7sp1_gdr.130725-1535)
        C:\Windows\system32\ieframe.DLL, version=11.00.9600.17041 (winblue_gdr.140305-1710)
        C:\Windows\system32\api-ms-win-downlevel-user32-l1-1-0.dll, version=6.2.9200.16492 (win8_gdr_oobssr.130113-0015)
        C:\Windows\system32\api-ms-win-downlevel-shell32-l1-1-0.dll, version=6.2.9200.16492 (win8_gdr_oobssr.130113-0015)
        C:\Windows\system32\api-ms-win-downlevel-version-l1-1-0.dll, version=6.2.9200.16492 (win8_gdr_oobssr.130113-0015)
        C:\Windows\system32\api-ms-win-downlevel-normaliz-l1-1-0.dll, version=6.2.9200.16492 (win8_gdr_oobssr.130113-0015)
        C:\Windows\system32\normaliz.DLL, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\iertutil.dll, version=11.00.9600.17207 (winblue_gdr_escrow.140618-1157)
        C:\Windows\system32\samcli.dll, version=6.1.7601.17514 (win7sp1_rtm.101119-1850)
        C:\Windows\system32\SAMLIB.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\netutils.dll, version=6.1.7601.17514 (win7sp1_rtm.101119-1850)
        C:\Windows\system32\oleacc.dll, version=7.0.0.0 (win7sp1_gdr.110826-1504)
        C:\Windows\System32\provsvc.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\MPR.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\System32\drprov.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\NetworkExplorer.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\System32\ntlanman.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\wkscli.dll, version=6.1.7601.17514 (win7sp1_rtm.101119-1850)
        C:\Windows\system32\PortableDeviceApi.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\EhStorAPI.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\SearchFolder.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\LINKINFO.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\IconCodecService.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\urlmon.dll, version=11.00.9600.17041 (winblue_gdr.140305-1710)
        C:\Windows\system32\api-ms-win-downlevel-ole32-l1-1-0.dll, version=6.2.9200.16492 (win8_gdr_oobssr.130113-0015)
        C:\Windows\system32\WININET.dll, version=11.00.9600.16428 (winblue_gdr.131013-1700)
        C:\Windows\system32\USERENV.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\ktmw32.dll, version=6.1.7600.16385 (win7_rtm.090713-1255)
        C:\Windows\system32\api-ms-win-downlevel-advapi32-l2-1-0.dll, version=6.2.9200.16492 (win8_gdr_oobssr.130113-0015)
    ------------------------------------------------------------------------------
  13. Well. Maybe some other feature then. When Paint.NET has a dialog open that is awaiting input, it does not accept opening new images through other applications or explorer. Now i know that is by design, but perhaps it could be done so they are added to the list as a background process?

  14. It may be important to other people, but can layer visibility NOT create history entries, or at least have an option to disable that? Also, it finalises any tools such as gradient and paintbucket so i if i want to remove a layer to test some color matches i have to undo twice afterwards because the tool was commited.

  15. I wanted to note that i was trying to make a selection when the option to update to this version occurred. After i selected to install the update when i exit the application, i was unable to complete or cancel my selection. Just wanted to let you know since this means that mouse focus is somehow lost or "stuck" in a pressed state.

  16. I have 2 small feature requests that i hope won't be much trouble.

     

    1) This one is simple: to avoid asking for confirmation on closing a modified image when the action performed on it was undone to the point of the last saved one. For example, if you open an image, perform an action, and then undo it, it still marks it as modified.

     

    2) This one is a bit more complex. I'd like the pixel grid to have a pixel scale. The default of 1 px is great when working with tiny images but when you want to align images properly on a larger scale like 64 px, it's just impossible, so its use is fairly limited currently.

     

    Thoughts?

     

     

    I will not be adding that.


     

    "Thanks for using paint.net?" Looks fine to me...

     

    nope, between the two sentences: ".. appreciation and support <?> future development by donating"

  17. Ok another small but fairly annoying issue i found is that when another application is in the foreground, if you try to restore paint.net to the foreground by selecting the currently focused image from the taskbar, it will hide itself again, but that doesn't happen if you select a different one. Might want to get that fixed if you haven't already :)

  18. Great to be able to test this alpha. As my first small complaint, i'd like to point out that this new version is a bit TOO fullscreen. If the option to hide the taskbar by default is ticked, paint.net doesn't respect that and doesn't allow it to pop back up when the cursor hits the bottom, like it should.
    I'd appreciate it if this didn't occur, i don't think i'm the only one using that setting, even on a desktop computer, to save vertical space :P
     
    I'll report anything else noteworthy that i may find over time, apologies in advance if any of those have been reported before :)
     
    EDIT: It appears that although the option to check for beta updates is ticked during the installer, in the actual options it isn't. There's also the slight chance i missed it, but i swear it was on by default when installing :P

     

    EDIT 2: Also this error was registered, for anyone interested.

     

    Flip.dll, version 2.0.0.0

    Name: Flip Horizontal
    Type: Flip.FlipHEffect
    Version: 2.0.0.0
    Author: BoltBait
    Copyright: Copyright 2008 BoltBait, All Rights Reserved.
    Website: http://www.boltbait.com/
    System.Reflection.TargetInvocationException: Δημιουργήθηκε εξαίρεση από τον προορισμό μιας κλήσης. ---> System.TypeLoadException: Δεν ήταν δυνατή η φόρτωση του τύπου 'PaintDotNet.PdnResources' από τη συγκρότηση 'PaintDotNet.Resources, Version=4.0.5034.2167, Culture=neutral, PublicKeyToken=null'.
    σε Flip.FlipHEffect..ctor()
    --- Τέλος ιχνηλάτησης στοίβας εσωτερικών εξαιρέσεων ---
    σε System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
    σε System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
    σε PaintDotNet.Menus.EffectMenuBase.AddEffectsToMenu() στο D:\src\pdn\paintdotnet\src\PaintDotNet\Menus\EffectMenuBase.cs:γραμμή 604

    Name: Flip Vertical
    Type: Flip.FlipVEffect
    Version: 2.0.0.0
    Author: BoltBait
    Copyright: Copyright 2008 BoltBait, All Rights Reserved.
    Website: http://www.boltbait.com/
    System.Reflection.TargetInvocationException: Δημιουργήθηκε εξαίρεση από τον προορισμό μιας κλήσης. ---> System.TypeLoadException: Δεν ήταν δυνατή η φόρτωση του τύπου 'PaintDotNet.PdnResources' από τη συγκρότηση 'PaintDotNet.Resources, Version=4.0.5034.2167, Culture=neutral, PublicKeyToken=null'.
    σε Flip.FlipVEffect..ctor()
    --- Τέλος ιχνηλάτησης στοίβας εσωτερικών εξαιρέσεων ---
    σε System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
    σε System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
    σε PaintDotNet.Menus.EffectMenuBase.AddEffectsToMenu() στο D:\src\pdn\paintdotnet\src\PaintDotNet\Menus\EffectMenuBase.cs:γραμμή 604

     

    EDIT 3: And a possible bug with the gear shape: https://www.dropbox.com/s/aqfy0i1090q1xwm/Screenshot%202013-10-23%2019.48.13.png

×
×
  • Create New...