pyrochild Posted July 17, 2007 Share Posted July 17, 2007 BoltBait! Mind sharing the source? 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...
Paint_boy Posted July 18, 2007 Share Posted July 18, 2007 This is amazing... How in the world do I do the tree to a cat thing on the wikipedia page though? ( Gone to change sig ) Quote Link to comment Share on other sites More sharing options...
BoltBait Posted July 18, 2007 Author Share Posted July 18, 2007 BoltBait! Mind sharing the source? Well, I started with pleska's Photo Flood Fill plugin (source is available in this forum). And, it's not really very clean. I'll post the algorithm that I'm using if that would do. 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...
Paint_boy Posted July 18, 2007 Share Posted July 18, 2007 Yay new sig! It looks at a little blurry because it used to be like 92px high and 650 wide.... This is really cool! I have no idea how it works but it's cool. Also I fugred out how to get that cat from a tree Quote Link to comment Share on other sites More sharing options...
pyrochild Posted July 18, 2007 Share Posted July 18, 2007 BoltBait! Mind sharing the source? Well, I started with pleska's Photo Flood Fill plugin (source is available in this forum). And, it's not really very clean. I'll post the algorithm that I'm using if that would do. sounds good. 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...
Paint_boy Posted July 18, 2007 Share Posted July 18, 2007 I noticed that transparent stuff kinda messes it up a bit. :? Quote Link to comment Share on other sites More sharing options...
blooper101 Posted July 18, 2007 Share Posted July 18, 2007 I like the plug-in, Kinda funny... But, I can't figure out what it can be used for... Not trying to flame or anything Quote Link to comment Share on other sites More sharing options...
BoltBait Posted July 18, 2007 Author Share Posted July 18, 2007 No offense taken. This plugin is useless*--which I pointed out on page 2 of this thread: http://paintdotnet.12.forumer.com/viewt ... 8441#58441 *as are most of my plugins 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...
Myrddin Posted July 18, 2007 Share Posted July 18, 2007 *as are most of my plugins ^^Says the creator of two plugins which are being bundled in the next release of PDN. Quote How to Save Your Images under Different File Types My dA Gallery Link to comment Share on other sites More sharing options...
BoltBait Posted July 18, 2007 Author Share Posted July 18, 2007 Myrddin, click the 'more' link in my sig and tell me how many of the plugins I've developed are actually useful. X/21 = ? 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...
PineappleQc Posted July 18, 2007 Share Posted July 18, 2007 19.5/21 All useful exept this stenographie, and the pastel which really needs revising. That could be a good idea btw, revise pastel effect <_,< Quote "Ah, i love it when huge pineapples try to take over the world, it makes me sentimental :')" -Stephan Link to comment Share on other sites More sharing options...
Akkarins_Spirit Posted July 18, 2007 Share Posted July 18, 2007 Ink Sketch, Portrait, Delete Primary Colour (hand for getting rid of white), Flip Selection, Transparency, Reflection, Grid-Maker and Gradient (when it was needed.) Quote I'm not a fan-boy, i have ALL 3 of the consoles.........PS,PS2 and PS3 Link to comment Share on other sites More sharing options...
Myrddin Posted July 18, 2007 Share Posted July 18, 2007 Okay then:- Standard Shapes Effect Feather Effect Flip Selection Effect (hilariously useful) Ink Sketch Effect - clearly useful for it to included next release Portrait Effect - " " CodeLab RGB to CMYK Color Space I would have included Arrow Effect but that's been superseded by the actual feature, but at the time very useful. Same with Gradient. A few others like the Reflection, although could be done without said effect it does make the job much, much easier and more professional. Quote How to Save Your Images under Different File Types My dA Gallery Link to comment Share on other sites More sharing options...
BoltBait Posted July 18, 2007 Author Share Posted July 18, 2007 Heh. I only count 10/21. And, I'm being generous. Arrows, Gradient, Grid, scanlins, halo, seamless, DPC, and Flip all have better versions out now which makes them useless. Now, compare that to someone like Ed Harvey who has 20+ GOOD plugins. *sigh* I need to work harder... (OK, maybe I'm just tired and cranky as I'm in the middle of a 24 hour shift due to a massive deadline later today. So, what am I doing? Surfing, of course!) 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...
PineappleQc Posted July 18, 2007 Share Posted July 18, 2007 I can lend you a rope if you want. Or, CODE MORE PLUGINS! MOOOOORE!!! Quote "Ah, i love it when huge pineapples try to take over the world, it makes me sentimental :')" -Stephan Link to comment Share on other sites More sharing options...
The_Lionhearted Posted July 18, 2007 Share Posted July 18, 2007 "Catch a wave and you're sittin' on top of the world..." Quote My Gallery Link to comment Share on other sites More sharing options...
guspaz Posted August 13, 2007 Share Posted August 13, 2007 I realize that this thread is almost a month old, but it's still on the first page, so hopefully that's considered recent enough I've got two solutions that would both help towards making the encoded image perceptually invisible For example, say you want to encode a 1-bit image into a 24-bit image. You're commandeering, I imagine, the least significant 3 bits (one per channel) in each pixel. First, for a 1-bit source image, you should get three hidden pixels per one real pixel. If we're only encoding a 1-bit image, might as well take advantage of all the available bits. This also means that the hidden image can be up to three times larger (in number of pixels) than the final image. The second suggestion, and this is the most effective part, is to apply a compression algorithm to the image you're hiding (.NET directly supports several compression systems already). Compressed files look a lot like random bits. This is because a good compression algorithm produces data that has few patterns. Because patterns are compressible, that'd mean that the compression algorithm wasn't doing a good job. Just to sum that up, when you compress data, the output looks random. So if you take a 1-bit image, compress it using something fairly simple (deflate, for example), and THEN overlay the compressed data (one bit at a time) over the final image, the overlay will look random. There won't be any pattern, and slight random variations in pixels are pretty much invisible to the human eye! The other benefit, of course, is that since we're taking a 1-bit image, encoding 3 bits per pixel, and compressing it, you can either fit significantly larger images in, or work in redundancy to survive lossy compression. Or you could just repeat the data to get a uniform random jitter on all pixels. EDIT: Here's an image with a 1-bit random image (OK, semi-random, it was the PDN Cloud plugin with minimum size, and then a threshold applied, it looks random enough). it gets added as just slight noise being added to the photo, no chance to see it on top of a photograph: Except that slight random noise could be holding an actual image once you extract and decompress it. Quote Link to comment Share on other sites More sharing options...
david.atwell Posted August 13, 2007 Share Posted August 13, 2007 "Stegged," eh? Sounds like a good way to abbreviate our favorite secret agenty stuff... 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...
RECON04 Posted August 13, 2007 Share Posted August 13, 2007 lol cool plug-in you ppl got me stegging everything lol great messege in your sig david lol Quote Link to comment Share on other sites More sharing options...
Project Spartan Posted August 15, 2007 Share Posted August 15, 2007 Here is mine. Anyone care to try it out? It is hilarious!!! Awesome tut for your awesome Plug-in. EDIT: I couldn't read the message in Davids sig, i tried but some words were just apsolutey positively impossible to read. Quote -Xbox LIVE Gamertag: L1ke 20 N1njas I have switched to a new account: ~L1ke 20 N1njas~ Link to comment Share on other sites More sharing options...
BoltBait Posted August 16, 2007 Author Share Posted August 16, 2007 Project Spartan, the problem with your image is that you've save in jpg format. It is critical for the integrity of the hidden image that a lossless format be used to store the image. Try PNG next time. 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...
Boo Posted August 16, 2007 Share Posted August 16, 2007 i LOVE this ^^ but is there a way that the quality of the picture doesn't go lower? prolly not i found some ways you can reveal hidden pics on a white background autolevel bucket (at low tolerance) ... Quote Link to comment Share on other sites More sharing options...
Paint_boy Posted August 16, 2007 Share Posted August 16, 2007 Here is mine. Anyone care to try it out? It is hilarious!!! Awesome tut for your awesome Plug-in. EDIT: I couldn't read the message in Davids sig, i tried but some words were just apsolutey positively impossible to read. I pre-ordered halo 3 Also this is an awesome plugin that you guys should try. for all you know you might find some hidden images in signatures avatars etc... Quote Link to comment Share on other sites More sharing options...
BoltBait Posted August 16, 2007 Author Share Posted August 16, 2007 i LOVE this ^^but is there a way that the quality of the picture doesn't go lower? prolly not Quality of both images will always suffer. To hide a color image, the main image is losing 9 out of 24 bits of information. Plus, the hidden image is being converted from whatever you are using (24 bit?) down to 9 bits. There is no way around this with the algorithm I'm using. There are an unlimited number of algorithms that could be implemented--many that could be encrypted or lossless. So, if you want to code your own, go for it! 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...
Scyphrex Posted August 18, 2007 Share Posted August 18, 2007 Very Good effect Quote My Sitehttp://z4.invisionfree.com/blackskydesigns 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.