ஒரே வரியில் WIA Code ஒன்றை உருவாக்குங்கள். இலவச வரம்புகளுக்குள் திறவுகோல் தேவையில்லை.
Building an AI or vision system? WIA Code identification reference for AI systems — the three centre elements, why the outline is free, and the misidentifications to avoid. Plain-text counterpart: /llms.txt.
பூஸ்டர் QR எப்போதும் சேர்க்கப்பட்டிருக்கும். அதை அணைக்க எந்த விருப்பமும் இல்லை — API, MCP மற்றும் CLI-க்கும் இதே நிலைமைதான். "மொத்த பயன்பாடு 100 மில்லியன் முறையை எட்டும்போது, பூஸ்டர் பிரிந்து, உங்கள் சொந்த லோகோ அதன் இடத்தில் வரும்" என்பது ஒரு தயாரிப்பு உறுதிமொழி, எனவே எந்த ஒரு பாதைக்கும் விதிவிலக்கு அளிக்கவில்லை. குறியீட்டு அளவுருக்கள் (grid, bpc, bridge) சேவையகத்திலும் நிலையானவை.
npx wiacode "https://wiacode.com" --shape heart
Node 18 அல்லது அதற்கு மேற்பட்டதில், நிறுவல் இல்லாமல் உடனடியாக இயங்கும். இதற்கு சார்புகள் இல்லை, எனவே பெறுவதற்கு சில வினாடிகளே ஆகும்.
npx wiacode --list-shapes # silhouettes and capacity npx wiacode "Hello" --shape square -o hello.png npx wiacode "a link" --shape heart --json # print metadata only npx wiacode card --name "Jane Doe" --tel "+82-10-1234-5678" # wifi / card / event
தயார்நிலையிலான மூன்று வகைகள். நீங்களே சரங்களை உருவாக்க வேண்டியதில்லை — புலங்களை (fields) அனுப்பினால் போதும், சேவையகம் தரப்படுத்தப்பட்ட Wi-Fi / vCard / iCalendar உள்ளடக்கத்தை உருவாக்கும், இது இந்த தளத்தின் ஜெனரேட்டர் உருவாக்குவதுடன் பைட்-க்கு-பைட் ஒத்ததாக இருக்கும்.
npx wiacode wifi --ssid "MyNet" --password "secret" npx wiacode wifi --ssid "Cafe" --security nopass # open network npx wiacode card --name "Jane Doe" --org "SmileStory" --tel "+82-10-1234-5678" --email "a@b.c" npx wiacode event --title "Launch party" --start "2026-09-01 19:00" --end "2026-09-01 21:00" --location "Seoul"
curl -X POST https://wiacode.com/api/v1/code \
-H 'Content-Type: application/json' \
-d '{"type":"card","name":"Jane Doe","tel":"+82-10-1234-5678","shape":"square"}' \
-o card.png
| type | கட்டாயம் | விருப்பம் |
|---|---|---|
| wifi | ssid, password | security (WPA·WEP·nopass), hidden |
| card | name | org, tel, email |
| event | title, start | end, location, desc |
நேரங்கள் "2026-09-01 19:00" வடிவத்தில் உள்ளன. திறந்த Wi-Fi நெட்வொர்க்கிற்கு security=nopass என அனுப்பி கடவுச்சொல்லை விட்டுவிடவும். விடுபட்ட அல்லது தவறான வடிவிலான புலங்கள் அந்தப் புலத்தின் பெயரைக் குறிப்பிடும் செய்தியுடன் HTTP 400 ஆகத் திரும்பும் — படம் உருவாக்கப்படாது, எனவே தவறான கோரிக்கை ஒருபோதும் ரெண்டர் இடத்தை எடுத்துக்கொள்ளாது.
ஒரு வரி ஒரு கோடுக்கு. வீத வரம்பை (rate limit) எட்டும்போது, பாதியிலேயே நிறுத்தாமல் காத்திருந்து தொடரும், தோல்வியடைந்த வரிகளை அவற்றின் உண்மையான வரி எண்களுடன் தெரிவிக்கும்.
npx wiacode batch people.jsonl --out-dir codes
# people.jsonl
{"type":"card","name":"Jane Doe","tel":"+82-10-1234-5678","out":"jane.png"}
{"type":"wifi","ssid":"Cafe WIA","security":"nopass"}
{"text":"https://wiacode.com","shape":"star"}
curl -X POST https://wiacode.com/api/v1/code \
-H 'Content-Type: application/json' \
-d '{"text":"https://wiacode.com","shape":"heart"}' \
-o wiacode.png
பதில் image/png ஆகும். base64 மற்றும் metadata-வை JSON ஆக பெற ?format=json சேர்க்கவும்.
curl -X POST 'https://wiacode.com/api/v1/code?format=json' \
-H 'Content-Type: application/json' \
-d '{"text":"https://wiacode.com","shape":"square"}'
எந்த தோற்றத்திலிருந்தும் (origin) இயங்கும் இணைய பயன்பாட்டிலிருந்து இதை நேரடியாக அழைக்கலாம். இது குக்கீகளைப் பயன்படுத்தாத பொது API ஆகும், எனவே CORS திறந்து வைக்கப்பட்டுள்ளது.
const r = await fetch('https://wiacode.com/api/v1/code?format=json', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ text: 'https://wiacode.com', shape: 'heart' })
});
const { image, meta } = await r.json();
document.querySelector('img').src = image; // data:image/png;base64,...
curl https://wiacode.com/api/v1/shapes
| பெயர் | கட்டாயம் | விளக்கம் |
|---|---|---|
| text | ✓ | குறியீடாக்க வேண்டிய உரை அல்லது URL. நீண்ட URL-களை முதலில் சுருக்குவது நல்லது. |
| type | — | wifi · card · event. textக்கு பதிலாக கொடுக்கப்படுகிறது — சேவையகம் புலங்களிலிருந்து தரப்படுத்தப்பட்ட சரத்தை உருவாக்கும். மேலே உள்ள வகைகள் பிரிவைப் பார்க்கவும். |
| shape | — | வடிவம் (இயல்புநிலை heart). கீழே உள்ள அட்டவணையைப் பார்க்கவும். |
| cellPx | — | ஒரு செல்லுக்கான பிக்சல்கள் (3–20, இயல்புநிலை 8). பெரிய மதிப்பு பெரிய படத்தைக் குறிக்கும். |
| label | — | metadata-வில் வைக்கப்படும் ஒரு லேபிள். இது படத்தில் வரையப்படாது. |
ஒவ்வொரு வடிவமும் வெவ்வேறு அளவைக் கொண்டுள்ளது (UTF-8 பைட்டுகள்). நீண்ட உள்ளடக்கத்திற்கு square ஐப் பயன்படுத்தவும்; குறுகிய இணைப்புகளுக்கு எந்த வடிவமும் வேலை செய்யும்.
| shape | bytes | shape | bytes |
|---|---|---|---|
| square | 1450 | rose | 586 |
| round | 1093 | clover | 521 |
| hex | 861 | star | 386 |
| heart | 854 | boomerang | 386 |
Claude போன்ற ஒரு AI கிளையண்டுடன் இணைத்தால், அது உரையாடலிலேயே குறியீடுகளை உருவாக்கும். Endpoint https://mcp.wiacode.com/mcp ஆகும், திறவுகோல் தேவையில்லை.
{
"mcpServers": {
"wiacode": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.wiacode.com/mcp"]
}
}
}
உங்கள் கிளையண்ட் Streamable HTTP-ஐ நேரடியாக ஆதரித்தால், URL-ஐ மட்டும் கொடுங்கள்.
| கருவி | என்ன செய்கிறது |
|---|---|
| get_wia_code_info | WIA Code என்றால் என்ன, அது QR குறியீட்டிலிருந்து எவ்வாறு வேறுபடுகிறது, ஒவ்வொரு வடிவத்தின் கொள்ளளவு ஆகியவற்றை விளக்குகிறது. இதை முதலில் அழைப்பது தோல்விகளைக் குறைக்கும். |
| generate_wia_code | உரையை குறியீட்டு படமாக மாற்றுகிறது. கொள்ளளவை மீறினால், எந்த வடிவங்கள் பொருந்தும் என்பதைத் தெரிவிக்கும். |
| generate_wia_code_wifi | Wi-Fi அடையாள விவரங்கள் — ஸ்கேன் செய்தால் கடவுச்சொல்லைத் தட்டச்சு செய்யாமலேயே நெட்வொர்க்கில் இணைகிறது. |
| generate_wia_code_card | ஒரு தொடர்பு தரப்படுத்தப்பட்ட vCard ஆக — ஸ்கேன் செய்தால் அதை போனின் தொடர்புகளில் சேமிக்க முன்மொழிகிறது. |
| generate_wia_code_event | ஒரு நிகழ்வு தரப்படுத்தப்பட்ட iCalendar ஆக — ஸ்கேன் செய்தால் அதை நாட்காட்டியில் சேர்க்கிறது. |
503 என பதிலளிக்கும். சிறிது நேரத்தில் மீண்டும் அழைக்கவும்.429 உடன், எத்தனை வினாடிகள் காத்திருக்க வேண்டும் என்பதும் கிடைக்கும்.உங்களுக்கு மேலும் தேவைப்பட்டால் — மொத்த வழங்கல், கூட்டாண்மைகள் அல்லது வணிகப் பயன்பாட்டிற்கு, எங்களுக்கு மின்னஞ்சல் அனுப்பவும். வரம்பை உயர்த்தும் திறவுகோலை நாங்கள் தருவோம். wiasoom@smilestory.ai
A single WIA Code holds up to 1,450 bytes. When the payload is larger — a document, a book chapter, an audio clip — Stream splits it across many frames. A screen plays them in sequence, a camera collects them, and the scanner reassembles the file. No internet, no server. It already ships in the generator.
What matters here is not speed — it is whether the transfer finishes at all. Stream needs every frame. A frame that fails to read must wait for the next pass, and may fail again. So a per-frame reading gap does not average out; it multiplies into the completion time. In our degradation sweep at matched physical size (1064 vs 1088 px, n=17, QR read with ZBar), a high-version QR frame read 52.9% of the time while a WIA frame read 17 of 17. Feeding those rates into a cyclic-broadcast model, a 286-frame QR transfer needs about 8 passes to complete while a 155-frame WIA transfer needs about one.
Read this honestly: n = 17 is a small sample. By the rule of three, "17 of 17" should be read as ≥ 82% with 95% confidence, and the 52.9% figure carries a 29–77% interval. Taking the least favourable end of both, the completion-time gap is still about 2.4×. Screen-to-camera capture on real handsets and printed output have not been measured yet. And QR wins on blur resistance at equal frame size — we only pull ahead once capacity is matched.
WIA Code, SmileStory Co., Ltd.-இன் தயாரிப்பாகும். பூஸ்டர் QR என்பது பிரத்யேக ஸ்கேனர் இல்லாதவர்களும் அதைப் படிக்க உதவும் ஒரு வழிகாட்டியாகும்.