azurithil Posted February 7, 2008 Share Posted February 7, 2008 Secret message inside it Quote Visit my DeviantArt Link to comment Share on other sites More sharing options...
The_Lionhearted Posted February 7, 2008 Share Posted February 7, 2008 Hey! Quit saying stuff about my mom! Quote My Gallery Link to comment Share on other sites More sharing options...
Kemaru Posted August 9, 2008 Share Posted August 9, 2008 Yay! To be honest, I'm not quite sure what this does. Downloading it. Quote Hatred does not cease by hatred, but only by love; this is the eternal rule. |fb(page)|portfolio|blog| Link to comment Share on other sites More sharing options...
AshleighVengeance Posted November 17, 2008 Share Posted November 17, 2008 tell me why I cant find any of the plug ins in my paint.net... I've installed them and everything. Quote Link to comment Share on other sites More sharing options...
Simon Brown Posted November 17, 2008 Share Posted November 17, 2008 Try the effects menu. Quote Link to comment Share on other sites More sharing options...
pyrochild Posted November 17, 2008 Share Posted November 17, 2008 Wow, Simon, aren't you just overflowing with helpfulness? Try this, AshleighVengeance: viewtopic.php?f=16&t=2023 Quote ambigram signature by Kemaru [i write plugins and stuff] If you like a post, upvote it! Link to comment Share on other sites More sharing options...
AshleighVengeance Posted November 18, 2008 Share Posted November 18, 2008 They don't come up. Quote Link to comment Share on other sites More sharing options...
david.atwell Posted November 18, 2008 Share Posted November 18, 2008 Do you have any Paint.NET DLL files in the plugin folder? Quote The Doctor: There was a goblin, or a trickster, or a warrior... A nameless, terrible thing, soaked in the blood of a billion galaxies. The most feared being in all the cosmos. And nothing could stop it, or hold it, or reason with it. One day it would just drop out of the sky and tear down your world.Amy: But how did it end up in there?The Doctor: You know fairy tales. A good wizard tricked it.River Song: I hate good wizards in fairy tales; they always turn out to be him. Link to comment Share on other sites More sharing options...
AshleighVengeance Posted November 19, 2008 Share Posted November 19, 2008 I figured it out but no one told me that I was supposed to put them in the effects folder. Quote Link to comment Share on other sites More sharing options...
AshleighVengeance Posted November 19, 2008 Share Posted November 19, 2008 I lied...I didnt see the part about putting it in there. Quote Link to comment Share on other sites More sharing options...
ssbmbeliever Posted December 18, 2008 Share Posted December 18, 2008 Take a look at my pic, color steganography. It says what I have to say about this plugin. Quote Link to comment Share on other sites More sharing options...
lemonsourkid Posted December 12, 2009 Share Posted December 12, 2009 I am having trouble with Boltbait's Steganography plugin. Whenever I try to reveal an image, color or black and white, I get the revealed image but with scan lines as seen in the picture below. I have tried this with pictures that I encoded myself meaning this is a problem with the reveal image part. This problem seemed to have started when I installed 3.5.1. I have downloaded the latest steganography plugin. Any help is appreciated. Edit: Actually I found the problem. I feel like a complete idiot. It was that I actually didn't have the latest version. However, the version you download here isn't the same as the one in his plugin pack. Hidden Content: Either that or I'm making an even more complete fool of myself. :? Quote Good things come from those who PM. Link to comment Share on other sites More sharing options...
BoltBait Posted July 9, 2014 Author Share Posted July 9, 2014 I have recompiled this plugin for Paint.NET 4.0. The algorithm is the same, only the UI has changed. Check the first post in this thread for download link. Install the normal way. (Yes, I've been cleaning up all my older plugins. I think this is the last one. ) Source code to the decoders: Hidden Content: // Title: BoltBait's Steganography B&W Decoder v2.0 // Name: B&W Decoder // Submenu: Steganography // URL: http://boltbait.com/pdn/ // Author: BoltBait // Keywords: Steganography|Decode|hidden|hide|secret|agent // Desc: Reveal a hidden color image #region UICode #endregion void Render(Surface dst, Surface src, Rectangle rect) { for (int y = rect.Top; y < rect.Bottom; y++) { if (IsCancelRequested) return; for (int x = rect.Left; x < rect.Right; x++) { ColorBgra HiddenPoint = src[x,y]; int GrayLevel = ((((int)HiddenPoint. & (int)1) * 4); GrayLevel += (((int)HiddenPoint.G) & (int)1) * 2; GrayLevel += (((int)HiddenPoint.R) & (int)1); HiddenPoint.R = (byte)(GrayLevel * 32); HiddenPoint.G = (byte)(GrayLevel * 32); HiddenPoint.B = (byte)(GrayLevel * 32); dst[x, y] = HiddenPoint; } } } Hidden Content: // Title: BoltBait's Steganography Color Decoder v2.0 // Name: Color Decoder // Submenu: Steganography // URL: http://boltbait.com/pdn/ // Author: BoltBait // Keywords: Steganography|decode|hidden|hide|secret|agent // Desc: Reveal a hidden color image #region UICode #endregion void Render(Surface dst, Surface src, Rectangle rect) { for (int y = rect.Top; y < rect.Bottom; y++) { if (IsCancelRequested) return; for (int x = rect.Left; x < rect.Right; x++) { ColorBgra HiddenPoint = src[x,y]; HiddenPoint.R = (byte)((((int)HiddenPoint.R) & (int)7) * 36); HiddenPoint.G = (byte)((((int)HiddenPoint.G) & (int)7) * 36); HiddenPoint.B = (byte)((((int)HiddenPoint. & (int)7) * 36); dst[x, y] = HiddenPoint; } } } Quote Click to play: Download: BoltBait's Plugin Pack | CodeLab | and how about a Computer Dominos Game Link to comment Share on other sites More sharing options...
BoltBait Posted July 13, 2014 Author Share Posted July 13, 2014 I just updated this plugin. Now, all hidden images are dithered before being hidden. This is the standard Floyd-Steinberg Dithering method. Dithering dramatically improves the quality of the hidden image. Algorithm for decoding remains the same. Quote Click to play: Download: BoltBait's Plugin Pack | CodeLab | and how about a Computer Dominos Game Link to comment Share on other sites More sharing options...
NitroN Posted November 7, 2017 Share Posted November 7, 2017 Hey, was just wondering wether this picture can be "decrypted" with other programs? If so, which ones? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.