- Wandal#0001
- Katılım
- 22 Kas 2021
- Mesajlar
- 100
- Tepkime puanı
- 37
- Şehir
- İstanbul
Selamlarr bugün sizinle (youtber başlangıcı ehe ) bir kodu inceleyeceğiz
kod DJS V12 ile yapılmıştır | Beta Halidir
//resmi yazıya dönüştüren kod --- Discord Türkiye Forum
kod DJS V12 ile yapılmıştır | Beta Halidir
//resmi yazıya dönüştüren kod --- Discord Türkiye Forum
Çalışma Şekliconst Discord = require('discord.js');
const Tesseract= require('tesseract.js');
exports.run = async (client, message, args) => {
let resim = message.attachments.map(a => a.url).toString()
if(!resim) return message.reply('resim atmalısın')
Tesseract.recognize(
resim,
'tur',
{ logger: m => console.log(m) }
).then(({ data: { text } }) => {
message.channel.send(text)
})
}
exports.conf = {
enabled: true,
guildOnly: false,
aliases: ['resim'],
permLevel: 0
}
exports.help = {
name: 'resim',
description: "resimi yazıya çevirir.",
usage: 'resim'
}