GithubHelp home page GithubHelp logo

dustsignal / text2image Goto Github PK

View Code? Open in Web Editor NEW

This project forked from alterebro/text2image

0.0 0.0 0.0 122 KB

Text to Image Generator. Convert any String into a Gradient Image based on its MD5 hash value. JS / Canvas / PHP

Home Page: https://text2image.moro.es/

PHP 23.89% JavaScript 45.04% CSS 31.07%

text2image's Introduction

Text to Image Generator. text2image.moro.es

Convert any String to Gradient Image

Create beautiful gradient abstract images using your own string as seed. Insert your text and generate an image based on its MD5 hash value.

— Project URL : https://text2image.moro.es

text2image is a small Web Application which converts any string in an abstract gradient image having as a constructor the MD5 hash of the text input, so basically it could be also described as the MD5 visualization of a string.

The project is built on JavaScript + Canvas and it also has a fallback written on PHP + GD Library for those who don't have JavaScript enabled on their browsers.

This is an entry for the 10k Apart contest, the index file has been minified and gzipped, all the styles and scripts have been included within this file to avoid extra request and increase speed, the whole data transfered by the client is as low as 5.7KB.

How does it work

text2image takes the input string and generates the MD5 hash value of this string. A MD5 hash consists of 32 hexadecimal characters string, this string gets splitted in 6 chunks, the first 4 will be the ones used to create the radial gradients, the 5th will be the background color and the last one will set the opacity of the background color.

e.g. we are going to use the string 'Hello world'

  • We create the md5 of the string md5('Hello world')
  • Hash value is : 3e25960a79dbc69b674cd4ec67a72c62
  • Hash value chunks are then : 3e2596, 0a79db, c69b67, 4cd4ec, 67a72c, and 62
  • We use for the radial gradients chunks 1 to 4 as a base HTML hexadecimal color : #3e2596, #0a79db, #c69b67, #4cd4ec.
  • 5th block is the background color: #67a72c.
  • 6th block is the alpha opacity (hex): 62. This value converted in decimal is 98 (over 255) or 38 (over 100).
  • Finally we have the background which is #67a72c with a 0.38 opacity.

Now that we have all the colors we can create the image:

# Step Image
#01 We create an empty canvas. Step #01
#02 Background color #67a72c with a 38% alpha channel. Step #02
#03 First circle radial gradient from TOP LEFT with color #3e2596 to transparent. Step #03
#04 Second circle radial gradient from TOP RIGHT with color #0a79db to transparent. Step #04
#05 Third circle radial gradient from BOTTOM RIGHT with color #c69b67 to transparent. Step #05
#06 Fourth circle radial gradient from BOTTOM LEFT with color #4cd4ec to transparent. Step #06

Output Image for 'Hello world' :

text2image

Credits

text2image uses JavaScript-MD5, a MIT licensed JavaScript MD5 implementation made by Sebastian Tschan (@blueimp) and it was inspired by a Tim Pietrusky small project: Random string to CSS color which was built using as a source a stackoverflow answer derived from the question: Why does HTML think “chucknorris” is a color?

License

The MIT License (MIT)

Copyright © 2016 Jorge Moreno ( moro.es, @alterebro )

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


@alterebro

text2image's People

Contributors

alterebro avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.