Showing posts with label image editing. Show all posts
Showing posts with label image editing. Show all posts
Thursday, January 3, 2013
How to create .ICO fils
One of the hardest things about web development and CC in general is icon files: its hard to make them. In a simple Duck Duck Go search I found the easiest way ever: ConvertIco. I have used it many times, and lots of other people use it to. Well, basically, you select whether you want to convert a file from your computer or the web, and click "go."
Friday, October 26, 2012
images: HTML
Images are so easy. There are all sorts of things you can do with images in HTML. The basic code is:
<img src="image url">
The most popular code customizes what you see when the image can't load, or images are disabled in the browser. Here it is:
<img src="image url" alt="tag">
tag is the text that's displayed when the image doesn't load or images are disabled. Sometimes search engines use it to define image search.
Defining the width and hight
If you want to change the size of the image, you may tell the browser how to size it:
<img src="image URL" alt="tag" width="400" height="400">
Customizing the border
You can create a border around images with a simple code. This is not in HTML 5 so I'll post about images in CSS later.
<img src="image URL" alt="tag" border="5">
or you could use this code:
<img src="image URL" alt="tag" width="400" height="400" border="5">
lots of HTML image attributes are deprecated in HTML 5. Luckily, CSS provides these and so much more. In the future, use CSS for your image effects.
<img src="image url">
The most popular code customizes what you see when the image can't load, or images are disabled in the browser. Here it is:
<img src="image url" alt="tag">
tag is the text that's displayed when the image doesn't load or images are disabled. Sometimes search engines use it to define image search.
Defining the width and hight
If you want to change the size of the image, you may tell the browser how to size it:
<img src="image URL" alt="tag" width="400" height="400">
Customizing the border
You can create a border around images with a simple code. This is not in HTML 5 so I'll post about images in CSS later.
<img src="image URL" alt="tag" border="5">
or you could use this code:
<img src="image URL" alt="tag" width="400" height="400" border="5">
lots of HTML image attributes are deprecated in HTML 5. Luckily, CSS provides these and so much more. In the future, use CSS for your image effects.
Monday, September 24, 2012
How to creat a custom Ace Explorer theme
Ace Explorer is a free browser with lots of great functionalities. Unfortunately, for those who like to customize their browsers look and feel, there are no themes. In this tutorial we will do a simple hack so as to customize Ace a little. There is no coding involved.
Right click the ace Explorer icon and select "properties".
Launch Windows Explorer and navigate to "C:\Program Files (x86)\Ace Explorer"
Then open the "skins" folder. Select the skin you want to edit, say in this case "green."
You may edit the images, but DO NOT TOUCH THE OTHER FILES.
Mine looked like this in the end:
Right click the ace Explorer icon and select "properties".
Launch Windows Explorer and navigate to "C:\Program Files (x86)\Ace Explorer"
Then open the "skins" folder. Select the skin you want to edit, say in this case "green."
You may edit the images, but DO NOT TOUCH THE OTHER FILES.
Mine looked like this in the end:
Labels:
background image,
browser,
color,
icon,
image,
image editing
Subscribe to:
Posts (Atom)