Kitty Soules Posted March 15, 2014 Posted March 15, 2014 I was wondering how to make text into a circle. I need to do it for a band logo. I want it like this: Help? Quote All in all, you're just another brick in the wall.
johnnysdream Posted March 15, 2014 Posted March 15, 2014 (edited) I was wondering how to make text into a circle. I need to do it for a band logo. I want it like this: http://forums.getpaint.net/index.php?/topic/16347-circle-text/?hl=%2Bcircle+%2Btext Edited March 15, 2014 by johnnysdream Quote
pdnnoob Posted March 15, 2014 Posted March 15, 2014 @jonnysdream Other than "circle" and "text" being in the title of the plugin, that's really nowhere near what the op is looking for... Your best bet for making something like that is to draw it manually. Make a circle on its own layer for reference, then use the line/curve tool to make the text and the paint bucket to fill it in. Quote No, Paint.NET is not spyware...but, installing it is an IQ test. ~BoltBait Blend modes are like the filling in your sandwich. It's the filling that can change your experience of the sandwich. ~Ego Eram Reputo
johnnysdream Posted March 15, 2014 Posted March 15, 2014 @jonnysdream Other than "circle" and "text" being in the title of the plugin, that's really nowhere near what the op is looking for... Your best bet for making something like that is to draw it manually. Make a circle on its own layer for reference, then use the line/curve tool to make the text and the paint bucket to fill it in. Oh crud,my fault.Ill shut up.I wasnt even close.I rushed it and didnt look properly at the question. Quote
Ego Eram Reputo Posted March 15, 2014 Posted March 15, 2014 I wondered if a plugin like Lens or the Bulge effect might help here? I'm not at a PC right now so can't check this idea out... Quote ebook: Mastering Paint.NET | resources: Plugin Index | Stereogram Tut | proud supporter of Codelab plugins: EER's Plugin Pack | Planetoid | StickMan | WhichSymbol+ | Dr Scott's Markup Renderer | CSV Filetype | dwarf horde plugins: Plugin Browser | ShapeMaker
pdnnoob Posted March 15, 2014 Posted March 15, 2014 I wondered if a plugin like Lens or the Bulge effect might help here? I'm not at a PC right now so can't check this idea out...It didn't work out too well when I tried it Quote No, Paint.NET is not spyware...but, installing it is an IQ test. ~BoltBait Blend modes are like the filling in your sandwich. It's the filling that can change your experience of the sandwich. ~Ego Eram Reputo
david.atwell Posted March 15, 2014 Posted March 15, 2014 What about the Gravity plug-in? Draw a circle, type in text, duplicate the text layer, select the circle, then run gravity "down" on one text layer and "up" on the other, and just delete the overlap. 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.
Kitty Soules Posted March 16, 2014 Author Posted March 16, 2014 What about the Gravity plug-in? Draw a circle, type in text, duplicate the text layer, select the circle, then run gravity "down" on one text layer and "up" on the other, and just delete the overlap. You're on the right track, but apparently Gravity is kind of bugging up. Can you show me step by step what you mean? Quote All in all, you're just another brick in the wall.
Kitty Soules Posted March 16, 2014 Author Posted March 16, 2014 (edited) Note: The band name is the Seventy 5, or the '75. Preferably a golden colored '75. The band logo will be a circular '75 on a tribal black circle. The circle: Edited March 16, 2014 by Kitty Soules Quote All in all, you're just another brick in the wall.
Kitty Soules Posted March 17, 2014 Author Posted March 17, 2014 This is an interesting problem ... Magnifier and then Bulge (clickable) Have you got a specific font in mind ? Well, yes, but just about any 60s psychedelic font would look very similar to the one we chose. Quote All in all, you're just another brick in the wall.
Kitty Soules Posted March 19, 2014 Author Posted March 19, 2014 (edited) One option is to make your text of choice fit inside the circle, then stretch it so part go outside the circle. Then delete the excess by clicking inside the circle >>> switch to the text layer >>> Invert selection >>> delete on keyboard. Shrink down a bit if desired Like this Well, I tried that method and kinda failed on my first try. I'm trying to make it look smooth, so I turned off soft edges. And that flopped. Edited March 19, 2014 by Kitty Soules Quote All in all, you're just another brick in the wall.
Kitty Soules Posted March 20, 2014 Author Posted March 20, 2014 I tried the thing again and I think I got better results. Just something about it seems off... probably the font! Quote All in all, you're just another brick in the wall.
TechnoRobbo Posted March 24, 2014 Posted March 24, 2014 (edited) Here's another possible solution - it's a simple square to circle mapping x' = x * sqrt( 1 - .5 * y2) takes this square image and makes this circle image Menu: Effects -> Distort Hidden Content: // Submenu: Distort // Name: TR's Drum Skin // Title: TR's Drum Skin - v1.0 // Author: TechnoRobbo // URL: http://www.technorobbo.com #region UICode double Amount1 = 0.5; // [0,1] Intensity #endregion void Render(Surface dst, Surface src, Rectangle rect) { Rectangle selection = EnvironmentParameters.GetSelection(src.Bounds).GetBoundsInt(); float CenterX = ((selection.Right - selection.Left) / 2)+selection.Left; float CenterY= ((selection.Bottom - selection.Top) / 2)+selection.Top; float offx=0,offy=0; ColorBgra CurrentPixel; for (float y = rect.Top; y < rect.Bottom; y++) { for (float x = rect.Left; x < rect.Right; x++) { float nx = (x - CenterX); float ny = (y - CenterY); nx /=CenterX; ny /=CenterY; offx = nx / (float)Math.Sqrt(1 - Amount1 * (ny * ny))* CenterX + CenterX; offy = ny / (float)Math.Sqrt(1 - Amount1 * (nx * nx))* CenterY + CenterY; CurrentPixel = src.GetBilinearSample((float)offx,(float)offy); dst[(int)x,(int)y]=CurrentPixel; } } } I Published it http://forums.getpai...-skin/?p=406795 Edited March 25, 2014 by TechnoRobbo Quote Go out there and be amazing. Have Fun, TRSome Pretty Pictures Some Cool Plugins
skullbonz Posted March 25, 2014 Posted March 25, 2014 (edited) Nice TR, I tried doing this with other plugins but the ends were not co-operating,this looks like it will do the job. I guess not it doesn't show up in 3,5.11 Edited March 25, 2014 by skullbonz Quote http://forums.getpaint.net/index.php?/topic/21233-skullbonz-art-gallery
TechnoRobbo Posted March 25, 2014 Posted March 25, 2014 (edited) Skull, Yup I compiled it on my 4.0 - I'll need to re do it in 3.5 Maybe I should publish it as a topic too. UPDATE: Version 3.5 uploaded on post #17 I Published it http://forums.getpaint.net/index.php?/topic/28103-trs-drum-skin/?p=406795 Edited March 25, 2014 by TechnoRobbo Quote Go out there and be amazing. Have Fun, TRSome Pretty Pictures Some Cool Plugins
Ego Eram Reputo Posted March 25, 2014 Posted March 25, 2014 .. it's a simple square to circle mapping Quote ebook: Mastering Paint.NET | resources: Plugin Index | Stereogram Tut | proud supporter of Codelab plugins: EER's Plugin Pack | Planetoid | StickMan | WhichSymbol+ | Dr Scott's Markup Renderer | CSV Filetype | dwarf horde plugins: Plugin Browser | ShapeMaker
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.