Есть ли общедоступная бесплатная веб-служба, которая генерирует облака тегов? Я ищу что-то вроде Google Chart - URL на входе, изображение на выходе.





Я очень в этом сомневаюсь. Веб-сервис для этого не имеет смысла.
Хотя существует масса библиотек:
CodeIgniter: http://codeigniter.com/forums/viewthread/64498/
Для меня это все еще имеет смысл, но я не смог найти ни одной такой услуги. Фактически, API может состоять из слов внутри, стилизованного текста или слов внутри, изображения снаружи. Я просто реализую то, что мне нужно, в SWT и продолжу.
Вы можете увидеть пример того, что я хотел бы создать, на http://www.wordle.net/gallery/wrdl/359579/JUnit_Tests. Это слова в названиях самопроверки JUnit.
Может быть, вы могли бы использовать это: http://www.wordle.net/
Лицензия Wordle запрещает встраивание и производные работы. В противном случае я бы с удовольствием его использовал. Такая красивая подача информации.
Поймите, что это старый пост, но я думаю, что tagcrowd.com может работать здесь, несмотря на отсутствие доступа к API. Коммерческая лицензия стоит 19,95 долларов.
12 лет спустя я решил построить этот World Cloud API. Вы отправляете ему свой текст, он отображает облако слов PNG или SVG с токенами слов, масштабируемыми по частоте.
Вот простой пример URL-адреса с использованием известной речи:
https://quickchart.io/wordcloud?text=Four score and seven years ago our fathers brought forth on this continent, a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal.Now we are engaged in a great civil war, testing whether that nation, or any nation so conceived and so dedicated, can long endure. We are met on a great battle-field of that war. We have come to dedicate a portion of that field, as a final resting place for those who here gave their lives that that nation might live. It is altogether fitting and proper that we should do this.But, in a larger sense, we can not dedicate—we can not consecrate—we can not hallow—this ground. The brave men, living and dead, who struggled here, have consecrated it, far above our poor power to add or detract. The world will little note, nor long remember what we say here, but it can never forget what they did here. It is for us the living, rather, to be dedicated here to the unfinished work which they who fought here have thus far so nobly advanced. It is rather for us to be here dedicated to the great task remaining before us—that from these honored dead we take increased devotion to that cause for which they gave the last full measure of devotion—that we here highly resolve that these dead shall not have died in vain—that this nation, under God, shall have a new birth of freedom—and that government of the people, by the people, for the people, shall not perish from the earth.
Обратите внимание, что запросы GET обычно требуют, чтобы URL-адрес закодировал текст, особенно если он содержит специальные символы.
Существует множество параметров, которые позволяют настраивать и масштабировать облако слов. Некоторые из них включают:
linear (по умолчанию), sqrt или log.true, чтобы удалить общие английские слова.Для более крупных текстов следует использовать запрос POST вместо кодирования его в URL-адресе. Вот пример использования в Python:
resp = requests.post('https://quickchart.io/wordcloud', json = {
'format': 'png',
'width': 1000,
'height': 1000,
'fontScale': 15,
'scale': 'linear',
'removeStopwords': True,
'minWordLength': 4,
'text': 'To be or not to be, that is the question...',
})
with open('shakespeare.png', 'wb') as f:
f.write(resp.content)
Я задокументировал все параметры API и несколько примеров облака слов здесь.
Надеюсь, кто-то сочтет это полезным!
Разве облако тегов - это не все ваши теги, размер которых зависит от частоты? Как в этом может помочь веб-сервис? Пожалуйста, извините за мое незнание, если я вас неправильно понял.