|
-
Jan 4th, 2002, 01:25 AM
#1
How do you make ico graphics?
Does anyone know which programs I can use to do this?
-
Jan 4th, 2002, 01:35 AM
#2
PowerPoster
hi
U can use the free ImagEditor on ur VB CD or u can download freeware / shareware including MicroAngelo (i think ) lol
Regards
Stuart
-
Jan 4th, 2002, 01:36 AM
#3
Hyperactive Member
p|-|34|2 /\/\3 f0|2 | $p34k 1337 
My TSS quote of the day: "If your haveing a bad day, just press the restart button."
-
Jan 4th, 2002, 01:46 AM
#4
Hyperactive Member
You don't need to go through all of that trouble. you can edit icons using microsoft paint. just change it to all files when you are opening and select the one you want to edit, it should open it. if it doesn't try renaming it to a .bmp, they have the same file format anyway. Remember, icons are ALWAYS either 32x32 pixels or 16x16(rarely). if you want to create your own, make a 32x32 image and save it as a .bmp
-
Jan 4th, 2002, 01:50 AM
#5
Hyperactive Member
Originally posted by Knowledge_is_Et
You don't need to go through all of that trouble. you can edit icons using microsoft paint. just change it to all files when you are opening and select the one you want to edit, it should open it. if it doesn't try renaming it to a .bmp, they have the same file format anyway. Remember, icons are ALWAYS either 32x32 pixels or 16x16(rarely). if you want to create your own, make a 32x32 image and save it as a .bmp
sorry to brake your heart, Trivor, but it's easyer to use an icon editor then to use paint, cuz with an icon editer, you can chose from the size and make it into a .ico, plus, some icon editors also lets you make cursurs.
p|-|34|2 /\/\3 f0|2 | $p34k 1337 
My TSS quote of the day: "If your haveing a bad day, just press the restart button."
-
Jan 4th, 2002, 02:03 AM
#6
Hyperactive Member
I have used paint to make cursors, it's a .cur extension on a correctly sized .bmp file (not sure exactly, i think its 16x16) and that way you don't have to download programs, you can use what you have right there. it isn't much easier with those programs anyway
-
Jan 4th, 2002, 02:53 AM
#7
Hyperactive Member
Originally posted by Knowledge_is_Et
I have used paint to make cursors, it's a .cur extension on a correctly sized .bmp file (not sure exactly, i think its 16x16) and that way you don't have to download programs, you can use what you have right there. it isn't much easier with those programs anyway
but does it make it transpeant?? this programs makes it transpearnt
p|-|34|2 /\/\3 f0|2 | $p34k 1337 
My TSS quote of the day: "If your haveing a bad day, just press the restart button."
-
Jan 4th, 2002, 03:15 AM
#8
You can create an Icon through code.
Load a bitmap image (32x32 pixels) in an ImageList.
Add a PictureBox to a form and use code simular to this to create the icon (if you set the MaskColor property of the ImageList you'll get the transparency).
VB Code:
Picture1.Picture = ImageList1.ListImages(1).ExtractIcon
SavePicture Picture1.Picture, "c:\MyIcon.ico"
Best regards
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|