bnm81002 said:can I use personal pics for a theme?

Dr. Clipper said:bnm81002 said:can I use personal pics for a theme?
With the new overlay wizard, you can use any image you like as the background and it will automatically get sized to a valid size for the loader (it especially works well with desktop background type images). You can then work out which overlay elements you want and save off an overlay which will darken things like the console so that it will look really good if you also set console_transparent=1.
Are your images in .png format? The images currently have to be in .png format, but I suppose I can remove that restriction in the overlay wizard. I'll go do that now. Should be easy.bnm81002 said:the problem is that it won't let me load any pics at all? when I try to load a pic, the Configurator doesn't display any of pics from my PC, can you help me out please? thanks
bnm81002 said:yes that was the problem my pics are in JPEG formats, so now I'm off to try to get my themes working lol, thanks for the update![]()
PS-how do I get the buttons displayed in my themes?
Dr. Clipper said:Right-click...Save Image:
![]()
And then just use the Load Buttons Image button in the overlay wizard.
Edit:I just fixed a bug that was making it not correctly test for .png images. Same upload link, so clear your cache before attempting redownload.
I don't really understand the problem. What text? You can resize the box for the console in the Overlay Wizard by clicking and dragging its edges around. Once you are done, you need to go into the Console Wizard and then choose where you want the actual console boundaries to appear (again by dragging or selecting the points manually), which determines the boundary limits of where the text will go. You can save your console positioning in the Console Wizard and then save your theme file in the main app and you will have everything you need. BTW, I strongly suggest using console_transparent=1.bnm81002 said:ok thanks, I did encounter a big problem, the console display blocks out most of my pic, is there a way to make it smaller without losing the entire text? when I made it smaller I can't see the top of the text, I only see it when I go down the text?
Dr. Clipper said:I don't really understand the problem. What text? You can resize the box for the console in the Overlay Wizard by clicking and dragging its edges around. Once you are done, you need to go into the Console Wizard and then choose where you want the actual console boundaries to appear (again by dragging or selecting the points manually), which determines the boundary limits of where the text will go. You can save your console positioning in the Console Wizard and then save your theme file in the main app and you will have everything you need. BTW, I strongly suggest using console_transparent=1.bnm81002 said:ok thanks, I did encounter a big problem, the console display blocks out most of my pic, is there a way to make it smaller without losing the entire text? when I made it smaller I can't see the top of the text, I only see it when I go down the text?
Can you please also remove the drop shadows? The buttons don't really need them when using the box behind them.milcoi said:Hi,
I see that this loader uses my button layer, therefor I made 2 versions:
buttons layer with white text
Buttons layer with black text
enjoy!
Milcoi
Thanks. I'll include the normal sized ones with and without shadows in my future distributions (you don't mind, right?). The small ones aren't that useful as you could just resize the image in the overlay wizard for the same effect.milcoi said:No prob.
I also made a smaller version.
buttons-layer-black-no-shadow
buttons-layer-black-no-shadow-small
buttons-layer-white-no-shadow
buttons-layer-white-no-shadow-small
have fun...
public bool ResizeImage(string fileName, string imgFileName,ÂÂÂÂ
ImageFormat format, int percent)
{ÂÂÂÂ
tryÂÂÂÂ
{ÂÂÂÂÂÂÂÂ
using (Image img = Image.FromFile(fileName))ÂÂÂÂÂÂÂÂ
{ÂÂÂÂÂÂÂÂÂÂÂÂ
int width = img.Width * (percent * .01);ÂÂÂÂÂÂÂÂÂÂÂÂ
int height = img.Height * (percent * .01);ÂÂÂÂÂÂÂÂÂÂÂÂ
Image thumbNail = new Bitmap(width, height, img.PixelFormat);ÂÂÂÂÂÂÂÂÂÂÂÂ
Graphics g = Graphics.FromImage(thumbNail);ÂÂÂÂÂÂÂÂÂÂÂÂ
g.CompositingQuality = CompositingQuality.HighQuality;ÂÂÂÂÂÂÂÂÂÂÂÂ
g.SmoothingMode = SmoothingMode.HighQuality;ÂÂÂÂÂÂÂÂÂÂÂÂ
g.InterpolationMode = InterpolationMode.HighQualityBicubic;ÂÂÂÂÂÂÂÂÂÂÂÂ
Rectangle rect = new Rectangle(0, 0, width, height);ÂÂÂÂÂÂÂÂÂÂÂÂ
g.DrawImage(img, rect);ÂÂÂÂÂÂÂÂÂÂÂÂ
thumbNail.Save(imgFileName, format);ÂÂÂÂÂÂÂÂ
}ÂÂÂÂÂÂÂÂ
return true;ÂÂÂÂ
}ÂÂÂÂ
catch (Exception)ÂÂÂÂ
{ÂÂÂÂÂÂÂÂ
return false;ÂÂÂÂ
}}}
Yeah, I was just thinking about adding that when I was writing the previous post, actually. I'll also put a link to your smaller images post in the first post of the thread for easy access of theme creators.milcoi said:Will there be a option to keep the (Constrain proportions) of a image when you resize it.
Like holding the Shift key in most drawing programs. Would be very helpfull! A round button will be difficult to make perfect round after you resize it now.

