NOTHING IS A WASTE OF TIME IF WE USE THE EXPERIENCE WISELY

HTTP Module

We know web technology works on the server site and client site. We will not go deep through this fact but we will just see how this simply works with http module in node.js.                                                                 In this article, we will know What is HTTP Module?, How can HTTP module be used to create server?. Then

Advanced CSS

CSS is a complex language that packs quite a bit of power. We know that CSS, or Cascading Styles Sheets, is a way to style and present HTML. Whereas the HTML is the meaning or content, the style sheet is the presentation of that document. All styles cascade from the top of a style sheet

Basic HTML & CSS

HTML Basics HTML (Hypertext Markup Language) is the most basic building block of the Web. It defines the meaning and structure of web content.HTML are generally used to describe a web page’s appearance/presentation (CSS) or functionality/behavior (JavaScript). “Hypertext” refers to links that connect web pages to one another, either within a single website or between websites.

This blog is a pixel art editor implements. please read the previous blog. link: 1. http://enlightsolution.com/javascript/a-pixel-art-editor-how-to-create-a-canvas-draw-on-it/ 2. http://enlightsolution.com/javascript/drawing-tools-in-a-pixel-art-editor/ When we’ve drawn our masterpiece, we’ll want to save it for later. So that we use this picture.  We should add a button for downloading the current picture as an image file. How to work save button?

Drawing tools in a Pixel Art Editor

First we have to understand what Pixel Art is. A Pixel Art is a form of digital art, created through the use of software, where images are edited on the pixel level. To draw a picture in a pixel art editor we need a dynamic set of drawing tools and controls. The controls are the interface elements that

‘A pixel art editor’ application will be a pixel drawing program, where one can modify a picture pixel by pixel by manipulating a zoomed-in view of it, shown as a grid of colored squares. One can use the program to open image files, drawing on them with mouse or other pointer device, and save them.

TOP