URL: qrcode.onlinecreation.pro
QRBTF est une application web simple pour embellir votre code QR.
- Divers styles de codes QR graphiques
- Conception paramétrée
- Aucun traitement serveur requis
- Prend en charge les téléchargements SVG
git clone https://github.com/ciaochaos/qrbtf.git
cd qrbtf
npm install
npm start
- Ouvrez [qrcode.onlinecreation.pro] (https://qrcode.onlinecreation.pro).
- Saisissez une URL ou un texte.
- Sélectionnez un style.
- Ajustez les paramètres.
- Téléchargez votre QRcode au format
JPG
ouSVG
.
Voir CPunisher / react-qrbtf pour plus d'informations.
npm install react-qrbtf --save
import React from 'react'
import { QRNormal } from 'react-qrbtf'
class Component extends React.Component {
render() {
return (
<QRNormal
value="react-qrbtf"
className="my-qrcode"
styles={{ svg: {width: "200px"} }}
type="round"
size={50}
opacity={80}
posType="planet"
otherColor="#33CCCC"
posColor="#009999"
/>
)
}
}
- ciaochaos
- CPunisher
- Traduit de l'anglais et du chinois par OnlineCreation
Voir le dépot père