Popularity
0.6
Growing
Activity
0.0
Stable
3
1
1
Programming language: JavaScript
Tags:
UI Components
Miscellaneous
captcha-image alternatives and similar libraries
Based on the "Miscellaneous" category.
Alternatively, view captcha-image alternatives based on common mentions on social networks and blogs.
-
react-pdf
Display PDFs in your React app as easily as if they were images. -
typography
A powerful toolkit for building websites with beautiful design -
react-resizable-and-movable
๐ฑ A resizable and draggable component for React. -
react-simple-chatbot
:speech_balloon: Easy way to create conversation chats -
react-resizable-box
๐ A resizable component for React. -
react-awesome-query-builder
User-friendly query builder for React -
react-json-tree
React JSON Viewer Component, Extracted from redux-devtools. -
react-facebook
Facebook components like a Login button, Like, Share, Chat, Comments, Page or Embedded Post -
react-avatar
Universal avatar makes it possible to fetch/generate an avatar based on the information you have about that user. -
react-blur
React component to blur image backgrounds using canvas. -
chessboardjsx
:black_square_button: Chessboard built for React -
react-images-uploader
React.js component for uploading images to the server -
react-darkreader
๐ A React Hook for adding a dark / night mode to your site. -
react-svg-buttons
React configurable animated svg buttons -
react-file-reader-input
React file input component for complete control over styling and abstraction from file reading. -
react-tabguard
Limit tabbing within specified area with an ease -
react-swipeable-list
Swipeable list component for React supporting several behaviours (e.g. iOS) -
react-apple-signin-auth
๏ฃฟ Apple signin for React using the official Apple JS SDK -
react-swipe-to-delete-ios
A simple React component to reproduce the way iOS deletes an item in a list -
react-avatar-generator
Generate fun kaleidoscope for user avatars. -
react-headings
โ Auto-increment your HTML headings (h1, h2, etc.) for improved accessibility and SEO. -
react-filter-control
The react UI component for building complex filter criteria -
react-advanced-news-ticker
A powerful, flexible, lightweight and animated vertical news ticker component for React. -
react-demo-tab
๐ React component to easily create demos of other components -
@restpace/schema-form
A React component package for generating forms based on (almost) the full power of JSON Schema -
react-searchbox-awesome
The coolest searchbox for React.js! -
react-pulse-text
React component that allows you to animate the text you want -
react-customizable-chat-bot
Customizable chat bot library using React and Typescript -
react-color-scroll
Blend through colors as you scroll down the page. -
react-mouse-select
A simple react library for selecting elements by moving the mouse -
react-cloud-letter
Wrap your letter in lovely cloud-like shape with React. -
react-pagespeed-score
A React component for display a dial-type chart of PageSpeed Insights.
Appwrite - The Open Source Firebase alternative introduces iOS support
Appwrite is an open source backend server that helps you build native iOS applications much faster with realtime APIs for authentication, databases, files storage, cloud functions and much more!
Promo
appwrite.io
Do you think we are missing an alternative of captcha-image or a related project?
README
Captcha Image Generator
A simple captcha image generator.
Install
npm install captcha-image
yarn add captcha-image
Example
Play with sandbox example here: Demo
Options
You can pass following parameters to Captcha instance in order to generate custom Captcha image
Attributes | Values |
---|---|
font / String | '35px Arial' |
align / String | 'center' |
baseline / String | 'middle |
width / Number | 300 |
height / Number | 150 |
bgColor / String | #eee |
color / String | #222 |
length / Number / Length of text | 7 |
Events
- createImage() method return HTML element parsed as String
Output
Final outcome looks like this:
<img src="..." data-key="..." />
Demo Usage
React
import Captcha from 'captcha-image';
const captchaImage = new Captcha(
'35px Arial',
'center',
'middle',
300,
150,
'#eee',
'#111',
6
).createImage();
function createMarkup(source) {
return { __html: source };
}
function MyCaptcha() {
return <div dangerouslySetInnerHTML={createMarkup(captchaImage)} />;
}
function App() {
return (
<div className='App'>
<MyCaptcha />
</div>
);
}
export default App;