Compare commits

..

15 Commits

Author SHA1 Message Date
3942d7f147 build webassembly succeed. 2023-04-07 05:57:05 +08:00
shouchih_chen 陳守志
fc8bb70f56 1. save file succeed 2023-03-31 16:17:51 +08:00
shouchih_chen 陳守志
24639c50b0 web assemble testing 2023-03-31 14:40:23 +08:00
d9d110ce04 1. add new five picture 2. add x64 env 2022-12-28 22:16:02 +08:00
83fde65fae 調整位置 2022-03-26 10:16:17 +08:00
56ea07365d Merge branch 'birthday' of https://gitlab.com/portfolio91/namecreater into birthday
# Conflicts:
#	NameCreater/main.cpp
2022-03-26 07:10:19 +08:00
6009f56287 add number sample 2022-03-26 06:55:59 +08:00
shouchih_chen
dd69403ee6 修正一些錯誤 2022-03-25 22:53:47 +08:00
shouchih_chen
3ce254f16d Merge branch 'birthday' of https://gitlab.com/portfolio91/namecreater into birthday 2022-03-25 22:36:50 +08:00
shouchih_chen
1216358657 commit build setting 2022-03-25 22:36:28 +08:00
793446dcd2 1. add two word template
2. add new background
2022-03-25 22:30:29 +08:00
4fa3d9dc1c fix bg type string '/r/n' 2022-02-20 11:07:11 +08:00
shouchih_chen
27a4eb5c8b marco mac/windows handle /r/n string 2022-02-20 07:53:55 +08:00
6025cc2913 finish birthday namecreater 2022-02-20 07:27:25 +08:00
615fa0e283 finish layout adjustment. 2022-02-19 08:44:26 +08:00
127 changed files with 898 additions and 5844 deletions

19
.gitignore vendored
View File

@ -1,11 +1,8 @@
*Debug/ *Debug/
*Release/ *Release/
/.vs/ /.vs/
/*.opendb /*.opendb
/*.db /*.db
/_bin /_bin
/web_build /web_build
/buildwed /buildwed
/NameCreater/*.aps
/buildweb/
/NameCreater/build/*

View File

@ -1,308 +0,0 @@
#include "BirthdayCreater.h"
#include <QTextCodec>
#include <QTextStream>
#include <QDebug>
#include <QMessageBox>
#include <QDateTime>
#define LABEL_HIGHT_LIMIT 350.0
#define LABEL_POS_X_OFFSET 323.0
#define NAME_TWO_WORD_OFFSET 170.0
#define NAME_THREE_WORD_OFFSET 145.0
#define MAX_LABEL_IN_PAPER 10
#define FONT_PIXEL_SIZE 120
static QPoint LABEL_POS_START = QPoint(163, 70);
static QPoint NAME_OFFSET_START = QPoint(82, 712);
static QPoint NAME_OFFSET_REVERSE_START = QPoint(214, 1745);
BirthdayCreater::BirthdayCreater() :INameCreater()
{
label_bg_map["b"] = ":/NameCreater/resource/b.jpg";
label_bg_map["g"] = ":/NameCreater/resource/g.jpg";
label_bg_map["m"] = ":/NameCreater/resource/m.jpg";
label_bg_map["p"] = ":/NameCreater/resource/p.jpg";
label_bg_map["r"] = ":/NameCreater/resource/r.jpg";
label_bg_map["w"] = ":/NameCreater/resource/w.jpg";
label_bg_map["y"] = ":/NameCreater/resource/y.jpg";
label_bg_map["co"] = ":/NameCreater/resource/co.jpg";
label_bg_map["ol"] = ":/NameCreater/resource/ol.jpg";
label_bg_map["sn"] = ":/NameCreater/resource/sn.jpg";
label_bg_map["st"] = ":/NameCreater/resource/st.jpg";
label_bg_map["a"] = ":/NameCreater/resource/a.jpg";
label_bg_map["pg"] = ":/NameCreater/resource/pg.jpg";
}
BirthdayCreater::~BirthdayCreater()
{
}
QList<NameInfo_t> BirthdayCreater::getNameByFileContent(Name_Type_e type, const QByteArray& conetent)
{
QList<NameInfo_t> nameList;
QTextCodec* tc = QTextCodec::codecForName("Big5");
QString codec = tc->toUnicode(conetent.data());
QTextStream stream(&codec);
int row = 0;
while (!stream.atEnd())
{
NameInfo_t info;
QString line = stream.readLine();
QString name_tc = line;
QStringList csvList = name_tc.split(',');
QString name, eng_name, bg_type;
switch (type) {
case Name_zh:
name = csvList.at(0);
bg_type = csvList.at(1);
break;
case Name_zh_eng:
name = csvList.at(0);
eng_name = csvList.at(1);
bg_type = csvList.at(2);
break;
case Name_eng:
eng_name = csvList.at(0);
bg_type = csvList.at(1);
default:
break;
}
qDebug() << "row :" << row << " " << name <<", eng: "<< eng_name << ", bg_type: " << bg_type;
if (name.compare("name") == 0 || eng_name.compare("eng_name")==0) {
//pass first line
continue;
}
info.name1 = name;
info.name_eng = eng_name;
info.name2 = bg_type;
nameList.append(info);
row++;
}
return nameList;
}
void BirthdayCreater::generaImageFromCSV(Name_Type_e type, const QString& filename, const QByteArray& filecontent, const QFont& font, const QColor& font_color)
{
int export_times = 0;
QList<NameInfo_t> nameList = getNameByFileContent(type, filecontent);
if (nameList.isEmpty()) {
QMessageBox msgBox;
msgBox.setText(QString("Name is empty ! ").append(filename));
msgBox.exec();
}
QGraphicsScene scene;
scene.setBackgroundBrush(QBrush(QColor(255, 255, 255)));
QGraphicsView view(&scene);
switch (type)
{
case Name_zh:
for (int idx = 0; idx < nameList.length(); idx++) {
if ((idx % MAX_LABEL_IN_PAPER) == 0) {
QGraphicsRectItem* bg_item = new QGraphicsRectItem(0, 0, BG_WIDTH, BG_HEIGHT);
bg_item->setBrush(QBrush(QColor(255, 255, 255)));
//QGraphicsPixmapItem* bg_item = QGraphicsPixmapItem(QPixmap(BG_SMAPLE_PATH));
scene.addItem(bg_item);
}
NameInfo_t name_info = nameList.at(idx);
int col_index = idx % MAX_LABEL_IN_PAPER;
QString label_rel_path = label_bg_map[name_info.name2];
QGraphicsPixmapItem* label_item = new QGraphicsPixmapItem(QPixmap(label_rel_path));
label_item->setPos(int(LABEL_POS_START.x() + LABEL_POS_X_OFFSET * col_index), int(LABEL_POS_START.y()));
label_item->setOpacity(1);
scene.addItem(label_item);
int chrismas_y_offset = 0;
if (name_info.name2.compare("co") == 0 || name_info.name2.compare("ol") == 0 ||
/*name_info.name2.compare("st") == 0 ||*/ name_info.name2.compare("sn") == 0) {
chrismas_y_offset = 30;
}
for (int i = 0; i < 2; i++) {
int name_word_len = name_info.name1.length();
qreal two_word_y = (name_word_len == 2) ? NAME_TWO_WORD_OFFSET / 2 : 0;
qreal offset_y = (name_word_len == 2) ? NAME_TWO_WORD_OFFSET : NAME_THREE_WORD_OFFSET;
for (int w = 0; w < name_word_len; w++) {
QGraphicsTextItem* word_item = new QGraphicsTextItem(name_info.name1.at(w));
word_item->setFont(font);
word_item->setDefaultTextColor(font_color);
if (i == 0) {
word_item->setPos(label_item->x() + NAME_OFFSET_START.x(), label_item->y() + NAME_OFFSET_START.y() + two_word_y + chrismas_y_offset + offset_y * w);
}
else {
word_item->setTransform(QTransform().fromScale(-1, -1));
word_item->setPos(label_item->x() + NAME_OFFSET_REVERSE_START.x(), label_item->y() + NAME_OFFSET_REVERSE_START.y() - two_word_y - chrismas_y_offset - offset_y * w);
}
scene.addItem(word_item);
}
}
if ((idx % MAX_LABEL_IN_PAPER) == (MAX_LABEL_IN_PAPER - 1) || idx == nameList.count() - 1) {
QString date_str = QDateTime::currentDateTime().toString("MMddhhmm");
QString file_name = QString("Birthday_%2_%1.jpg").arg(QString::number(export_times + 1), date_str);
saveToImage(file_name, &scene);
export_times++;
scene.clear();
}
}
break;
case Name_eng:
for (int idx = 0; idx < nameList.length(); idx++) {
if ((idx % MAX_LABEL_IN_PAPER) == 0) {
QGraphicsRectItem* bg_item = new QGraphicsRectItem(0, 0, BG_WIDTH, BG_HEIGHT);
bg_item->setBrush(QBrush(QColor(255, 255, 255)));
//QGraphicsPixmapItem* bg_item = QGraphicsPixmapItem(QPixmap(BG_SMAPLE_PATH));
scene.addItem(bg_item);
}
NameInfo_t name_info = nameList.at(idx);
int col_index = idx % MAX_LABEL_IN_PAPER;
QString label_rel_path = label_bg_map[name_info.name2];
QGraphicsPixmapItem* label_item = new QGraphicsPixmapItem(QPixmap(label_rel_path));
label_item->setPos(int(LABEL_POS_START.x() + LABEL_POS_X_OFFSET * col_index), int(LABEL_POS_START.y()));
label_item->setOpacity(1);
scene.addItem(label_item);
int chrismas_y_offset = 0;
if (name_info.name2.compare("co") == 0 || name_info.name2.compare("ol") == 0 ||
/*name_info.name2.compare("st") == 0 ||*/ name_info.name2.compare("sn") == 0) {
chrismas_y_offset = 30;
}
QFont _new_font = QFont(EnglisthFont());
_new_font.setWeight(QFont::ExtraLight);
int _new_size = getFontSizebyStr(_new_font, 120, 480, name_info.name_eng);
_new_font.setPixelSize(_new_size);
for(int i = 0; i < 2; i++){
qreal dir = (i == 0) ? -1.0:1.0;
qreal x_offset = (i == 0) ? 280.0 : 170.0;
qreal y_offset = (i == 0) ? 890.0 : 1550.0;
int sp_y_offset = (i == 0)? 1.0*chrismas_y_offset:-1.0*chrismas_y_offset;
//add English world
QGraphicsTextItem* eng_word_item = new QGraphicsTextItem(name_info.name_eng,label_item);
eng_word_item->setFont(_new_font);
QRectF rect = eng_word_item->boundingRect();
eng_word_item->setDefaultTextColor(font_color);
eng_word_item->setRotation(i == 0 ? 90 : -90);
eng_word_item->setPos(x_offset - rect.height()/2.0, y_offset + sp_y_offset + (rect.width()/2*dir));
//scene.addItem(eng_word_item);
}
if ((idx % MAX_LABEL_IN_PAPER) == (MAX_LABEL_IN_PAPER - 1) || idx == nameList.count() - 1) {
QString date_str = QDateTime::currentDateTime().toString("MMddhhmm");
QString file_name = QString("Birthday_%2_%1.jpg").arg(QString::number(export_times + 1), date_str);
saveToImage(file_name, &scene);
export_times++;
scene.clear();
}
}
break;
case Name_zh_eng:
for (int idx = 0; idx < nameList.length(); idx++) {
if ((idx % MAX_LABEL_IN_PAPER) == 0) {
QGraphicsRectItem* bg_item = new QGraphicsRectItem(0, 0, BG_WIDTH, BG_HEIGHT);
bg_item->setBrush(QBrush(QColor(255, 255, 255)));
//QGraphicsPixmapItem* bg_item = QGraphicsPixmapItem(QPixmap(BG_SMAPLE_PATH));
scene.addItem(bg_item);
}
NameInfo_t name_info = nameList.at(idx);
int col_index = idx % MAX_LABEL_IN_PAPER;
QString label_rel_path = label_bg_map[name_info.name2];
QGraphicsPixmapItem* label_item = new QGraphicsPixmapItem(QPixmap(label_rel_path));
label_item->setPos(int(LABEL_POS_START.x() + LABEL_POS_X_OFFSET * col_index), int(LABEL_POS_START.y()));
label_item->setOpacity(1);
scene.addItem(label_item);
int chrismas_y_offset = 0;
if (name_info.name2.compare("co") == 0 || name_info.name2.compare("ol") == 0 ||
/*name_info.name2.compare("st") == 0 ||*/ name_info.name2.compare("sn") == 0) {
chrismas_y_offset = 30;
}
// add ZH word
int name_word_len = name_info.name1.length();
qreal two_word_y = (name_word_len == 2) ? NAME_TWO_WORD_OFFSET / 2 : 0;
qreal offset_y = (name_word_len == 2) ? NAME_TWO_WORD_OFFSET : NAME_THREE_WORD_OFFSET;
for (int w = 0; w < name_word_len; w++) {
QGraphicsTextItem* word_item = new QGraphicsTextItem(name_info.name1.at(w));
word_item->setFont(font);
word_item->setDefaultTextColor(font_color);
word_item->setPos(label_item->x() + NAME_OFFSET_START.x(), label_item->y() + NAME_OFFSET_START.y() + two_word_y + chrismas_y_offset + offset_y * w);
scene.addItem(word_item);
}
//TODO: add English world
QGraphicsTextItem* eng_word_item = new QGraphicsTextItem(name_info.name_eng);
QFont _new_font = QFont(EnglisthFont());
_new_font.setWeight(QFont::ExtraLight);
int _new_size = getFontSizebyStr(_new_font, 120, 480, name_info.name_eng);
_new_font.setPixelSize(_new_size);
eng_word_item->setFont(_new_font);
QRectF rect = eng_word_item->boundingRect();
eng_word_item->setDefaultTextColor(font_color);
eng_word_item->setRotation(-90);
eng_word_item->setPos(label_item->x() + 170.0 - rect.height()/2.0, label_item->y() + 1580 - chrismas_y_offset + rect.width()/2);
scene.addItem(eng_word_item);
if ((idx % MAX_LABEL_IN_PAPER) == (MAX_LABEL_IN_PAPER - 1) || idx == nameList.count() - 1) {
QString date_str = QDateTime::currentDateTime().toString("MMddhhmm");
QString file_name = QString("Birthday_%2_%1.jpg").arg(QString::number(export_times + 1), date_str);
saveToImage(file_name, &scene);
export_times++;
scene.clear();
}
}
break;
default:
break;
}
QMessageBox msgBox;
msgBox.setText(QString().asprintf("Export Finshed. Count:%d", export_times));
msgBox.exec();
}

View File

@ -1,19 +0,0 @@
#pragma once
#include "INameCreater.h"
#include <QMap>
class BirthdayCreater : public INameCreater
{
public:
BirthdayCreater();
~BirthdayCreater();
protected:
QList<NameInfo_t> getNameByFileContent(Name_Type_e type, const QByteArray& conetent);
public:
virtual void generaImageFromCSV(Name_Type_e type, const QString& filename, const QByteArray& filecontent, const QFont& font, const QColor& font_color);
private:
QMap<QString, QString> label_bg_map;
};

View File

@ -1,369 +0,0 @@
#include "FiveToSingle.h"
#include <QMessageBox>
#include <QDateTime>
#include <QTextCodec>
#include <QTextStream>
#include <QDebug>
#define BG_PATH_FORMAT ":/NameCreater/resource/background_%1.jpg"
static QPointF BG_POS[] = {
QPointF(159, 61), QPointF(482, 61), QPointF(802, 61),
QPointF(1122, 61), QPointF(1449, 61), QPointF(1772, 61),
QPointF(2095, 61), QPointF(2414, 61), QPointF(2738, 61),
QPointF(3060, 61), QPointF(900, 2094), QPointF(900, 2420),
};
static int BG_POS_COUNT = sizeof(BG_POS) / sizeof(BG_POS[0]);
static QPointF NAME_POS[] = {
QPointF(240, 430), QPointF(372, 1402),
QPointF(564, 430), QPointF(694, 1402),
QPointF(883, 430), QPointF(1014, 1402),
QPointF(1205, 430), QPointF(1337, 1402),
QPointF(1532, 430), QPointF(1663, 1402),
QPointF(1854, 430), QPointF(1987, 1402),
QPointF(2176, 430), QPointF(2309, 1402),
QPointF(2498, 430), QPointF(2629, 1402),
QPointF(2821, 430), QPointF(2952, 1402),
QPointF(3145, 430), QPointF(3276, 1402),
QPointF(1268, 2012), QPointF(2240, 1880),
QPointF(1268, 2334), QPointF(2240, 2202),
};
static QPointF NAME_POS_NUMBER[] = {
QPointF(240, 370), QPointF(372, 1442),
QPointF(564, 370), QPointF(694, 1442),
QPointF(883, 370), QPointF(1014, 1442),
QPointF(1205, 370), QPointF(1337, 1442),
QPointF(1532, 370), QPointF(1663, 1442),
QPointF(1854, 370), QPointF(1987, 1442),
QPointF(2176, 370), QPointF(2309, 1442),
QPointF(2498, 370), QPointF(2629, 1442),
QPointF(2821, 370), QPointF(2952, 1442),
QPointF(3145, 370), QPointF(3276, 1442),
QPointF(1228, 2012), QPointF(2280, 1880),
QPointF(1228, 2334), QPointF(2280, 2202),
};
static QPointF NEW_POS = QPoint(81, 320);
//static int NAME_POS_COUNT = sizeof(NAME_POS) / sizeof(NAME_POS[0]);
FiveToSingle::FiveToSingle() :INameCreater()
{
}
FiveToSingle::~FiveToSingle()
{
}
QList<NameInfo_t> FiveToSingle::getNameByFileContent(Name_Type_e type, const QByteArray& conetent)
{
QList<NameInfo_t> nameList;
QTextCodec* tc = QTextCodec::codecForName("Big5");
QString codec = tc->toUnicode(conetent.data());
QTextStream stream(&codec);
int row = 0;
while (!stream.atEnd())
{
NameInfo_t info;
QString line = stream.readLine();
QString name_tc = line;
QStringList csvList = name_tc.split(',');
QString name, eng_name, bg_type;
switch (type) {
case Name_zh:
name = csvList.at(0);
bg_type = csvList.at(1);
break;
case Name_zh_eng:
name = csvList.at(0);
eng_name = csvList.at(1);
bg_type = csvList.at(2);
break;
case Name_eng:
eng_name = csvList.at(0);
bg_type = csvList.at(1);
default:
break;
}
qDebug() << "row :" << row << " " << name << ", eng: " << eng_name << ", bg_type: " << bg_type;
if (name.compare("name_1") == 0 || eng_name.compare("eng_name") == 0) {
//pass first line
continue;
}
info.name1 = name;
info.name_eng = eng_name;
info.name2 = QString(BG_PATH_FORMAT).arg(bg_type);
nameList.append(info);
row++;
}
return nameList;
}
void FiveToSingle::generaImageFromCSV(Name_Type_e type, const QString& filename, const QByteArray& filecontent, const QFont& font, const QColor& font_color)
{
int export_times = 0;
QList<NameInfo_t> nameList = getNameByFileContent(type, filecontent);
if (nameList.isEmpty()) {
QMessageBox msgBox;
msgBox.setText(QString("Name is empty ! ").append(filename));
msgBox.exec();
}
QGraphicsScene scene;
scene.setBackgroundBrush(QBrush(QColor(255, 255, 255)));
QGraphicsView view(&scene);
/*QImage image(BG_SAMPLE_PATH);
QGraphicsPixmapItem* bgItem = new QGraphicsPixmapItem(QPixmap::fromImage(image));
scene.addItem(bgItem);*/
switch (type) {
case Name_zh:
{
for (int n = 0; n < nameList.length(); n++) {
int idx = n % BG_POS_COUNT;
NameInfo_t name_info = nameList.at(n);
QImage name_image(name_info.name2);
if (idx == 0) {
QGraphicsRectItem* bg_item = new QGraphicsRectItem(0, 0, BG_WIDTH, BG_HEIGHT);
bg_item->setBrush(QBrush(QColor(255, 255, 255)));
scene.addItem(bg_item);
}
QGraphicsPixmapItem* name_bgItem = new QGraphicsPixmapItem(QPixmap::fromImage(name_image));
bool rot = (idx == 10 || idx == 11);
name_bgItem->setRotation(rot ? -90 : 0);
name_bgItem->setPos(BG_POS[idx]);
scene.addItem(name_bgItem);
if (name_info.name1.isEmpty()) {
QMessageBox msgBox;
msgBox.setText(QString().asprintf("Name is Empty at %d", export_times + 1));
msgBox.exec();
}
QString name = name_info.name1;
int name_len = name.length();
for (int j = 0; j < 2; j++) {
int pos_idx = idx * 2 + j;
qreal xscale, yscale;
xscale = yscale = (j == 1) ? -1 : 1;
QPointF pos = name_info.is_number_bg ? NAME_POS_NUMBER[pos_idx] : NAME_POS_NUMBER[pos_idx];
qreal y_offset[2] = { 0 };
if (name_len == 2) {
if (!rot) {
pos.setY(pos.y() + 82.0 * xscale);
}
else {
pos.setX(pos.x() + 82.0 * xscale);
}
y_offset[0] = 25;
}
QGraphicsTextItem* textItem1 = new QGraphicsTextItem(name.mid(0, 1));
textItem1->setFont(font);
textItem1->setDefaultTextColor(font_color);
if (!rot) {
textItem1->setPos(pos);
textItem1->setTransform(QTransform::fromScale(xscale, yscale));
}
else {
textItem1->setPos(pos);
textItem1->setRotation(-90);
textItem1->setTransform(QTransform::fromScale(xscale, yscale));
}
scene.addItem(textItem1);
QGraphicsTextItem* textItem2 = new QGraphicsTextItem(name.mid(1, 1));
textItem2->setFont(font);
textItem2->setDefaultTextColor(font_color);
if (!rot) {
textItem2->setPos(pos.x(), pos.y() + (145 + y_offset[0]) * xscale);
textItem2->setTransform(QTransform::fromScale(xscale, yscale));
}
else {
textItem2->setPos(pos.x() + (145 + y_offset[0]) * xscale, pos.y());
textItem2->setRotation(-90);
textItem2->setTransform(QTransform::fromScale(xscale, yscale));
}
scene.addItem(textItem2);
if (name_len > 2) {
QGraphicsTextItem* textItem3 = new QGraphicsTextItem(name.mid(2, 1));
textItem3->setFont(font);
textItem3->setDefaultTextColor(font_color);
if (!rot) {
textItem3->setPos(pos.x(), pos.y() + 290 * xscale);
textItem3->setTransform(QTransform::fromScale(xscale, yscale));
}
else {
textItem3->setPos(pos.x() + 290 * xscale, pos.y());
textItem3->setRotation(-90);
textItem3->setTransform(QTransform::fromScale(xscale, yscale));
}
scene.addItem(textItem3);
}
}
bool is_export_page = ((idx + 1) % BG_POS_COUNT == 0);
if (is_export_page || n == nameList.count() - 1) {
QString date_str = QDateTime::currentDateTime().toString("MMddhhmm");
QString file_name = QString("Signal_%2_%1.jpg").arg(QString::number(export_times + 1), date_str);
saveToImage(file_name, &scene);
export_times++;
scene.clear();
}
}
}
break;
case Name_zh_eng:
{
QFont _new_font = QFont(this->EnglisthFont());
_new_font.setWeight(QFont::ExtraLight);
for (int n = 0; n < nameList.length(); n++) {
int idx = n % BG_POS_COUNT;
NameInfo_t name_info = nameList.at(n);
QImage name_image(name_info.name2);
if (idx == 0) {
QGraphicsRectItem* bg_item = new QGraphicsRectItem(0, 0, BG_WIDTH, BG_HEIGHT);
bg_item->setBrush(QBrush(QColor(255, 255, 255)));
scene.addItem(bg_item);
}
QGraphicsPixmapItem* name_bgItem = new QGraphicsPixmapItem(QPixmap::fromImage(name_image));
bool rot = (idx == 10 || idx == 11);
name_bgItem->setRotation(rot ? -90 : 0);
name_bgItem->setPos(BG_POS[idx]);
scene.addItem(name_bgItem);
if (name_info.name1.isEmpty()) {
QMessageBox msgBox;
msgBox.setText(QString().asprintf("Name is Empty at %d", export_times + 1));
msgBox.exec();
}
QString name = name_info.name1;
int name_len = name.length();
for (int j = 0; j < 2; j++) {
int pos_idx = idx * 2 + j;
QPointF pos = NEW_POS;
if (j == 0) {
qreal xscale, yscale;
xscale = yscale = 1;
qreal y_offset[2] = { 0 };
if (name_len == 2) {
pos.setY(pos.y() + 82.0 * xscale);
y_offset[0] = 25;
}
QGraphicsTextItem* textItem1 = new QGraphicsTextItem(name.mid(0, 1), name_bgItem);
textItem1->setFont(font);
textItem1->setDefaultTextColor(font_color);
textItem1->setPos(pos);
textItem1->setTransform(QTransform::fromScale(xscale, yscale));
//scene.addItem(textItem1);
QGraphicsTextItem* textItem2 = new QGraphicsTextItem(name.mid(1, 1), name_bgItem);
textItem2->setFont(font);
textItem2->setDefaultTextColor(font_color);
textItem2->setPos(pos.x(), pos.y() + (145 + y_offset[0]) * xscale);
textItem2->setTransform(QTransform::fromScale(xscale, yscale));
if (name_len > 2) {
QGraphicsTextItem* textItem3 = new QGraphicsTextItem(name.mid(2, 1), name_bgItem);
textItem3->setFont(font);
textItem3->setDefaultTextColor(font_color);
textItem3->setPos(pos.x(), pos.y() + 290 * xscale);
textItem3->setTransform(QTransform::fromScale(xscale, yscale));
}
}
else if (j == 1) {
//TODO: add English world
QGraphicsTextItem* eng_word_item = new QGraphicsTextItem(name_info.name_eng, name_bgItem);
int _new_size = getFontSizebyStr(_new_font, 120, 480, name_info.name_eng);
_new_font.setPixelSize(_new_size);
eng_word_item->setFont(_new_font);
eng_word_item->adjustSize();
QRectF rect = eng_word_item->boundingRect();
eng_word_item->setDefaultTextColor(font_color);
eng_word_item->setRotation(-90);
// the position export from web is different.
eng_word_item->setPos((name_bgItem->boundingRect().width()/2 - rect.height()/2)+20, 1230 + rect.width() / 2);
}
}
bool is_export_page = ((idx + 1) % BG_POS_COUNT == 0);
if (is_export_page || n == nameList.count() - 1) {
QString date_str = QDateTime::currentDateTime().toString("MMddhhmm");
QString file_name = QString("Signal_%2_%1.jpg").arg(QString::number(export_times + 1), date_str);
saveToImage(file_name, &scene);
export_times++;
scene.clear();
}
}
}
break;
default:
break;
}
QMessageBox msgBox;
msgBox.setText(QString().asprintf("Export Finshed. Count:%d", export_times));
msgBox.exec();
}

View File

@ -1,15 +0,0 @@
#pragma once
#include "INameCreater.h"
class FiveToSingle : public INameCreater
{
public:
FiveToSingle();
~FiveToSingle();
protected:
QList<NameInfo_t> getNameByFileContent(Name_Type_e type, const QByteArray& conetent);
public:
virtual void generaImageFromCSV(Name_Type_e type, const QString& filename, const QByteArray& filecontent, const QFont& font, const QColor& font_color);
};

View File

@ -1,313 +0,0 @@
#include "HKHolderCreater.h"
#include <QTextCodec>
#include <QTextStream>
#include <QDebug>
#include <QMessageBox>
#include <QDateTime>
#include <QGraphicsPixmapItem>
#define HK_BG_WIDTH 2482
#define HK_BG_HEIGH 3509
#define MAX_COL_IN_ROW 7
#define MAX_LABEL_IN_PAPER 14
#define NAME_TWO_WORD_OFFSET 90.0
#define NAME_THREE_WORD_OFFSET 82.0
#define NAME_TWO_EXT_Y 20.0
#define NAME_TWO_EXT_REV_Y 23.0
static qreal row_x_offset = 132;
static qreal row_x_gap = 320;
static qreal row_y_offset[] = { 105 , 1615 };
static QPoint NAME_OFFSET_START = QPoint(92, 413);
static QPoint NAME_OFFSET_REVERSE_START = QPoint(179, 1030);
HKHolderCreater::HKHolderCreater() : INameCreater()
{
label_bg_map["a"] = ":/NameCreater/resource/hk_holder/a.jpg";
label_bg_map["b"] = ":/NameCreater/resource/hk_holder/b.jpg";
label_bg_map["m"] = ":/NameCreater/resource/hk_holder/m.jpg";
label_bg_map["g"] = ":/NameCreater/resource/hk_holder/g.jpg";
label_bg_map["st"] = ":/NameCreater/resource/hk_holder/st.jpg";
label_bg_map["w"] = ":/NameCreater/resource/hk_holder/w.jpg";
label_bg_map["p"] = ":/NameCreater/resource/hk_holder/p.jpg";
label_bg_map["pg"] = ":/NameCreater/resource/hk_holder/pg.jpg";
label_bg_map["r"] = ":/NameCreater/resource/hk_holder/r.jpg";
label_bg_map["y"] = ":/NameCreater/resource/hk_holder/y.jpg";
}
HKHolderCreater::~HKHolderCreater()
{
}
QList<NameInfo_t> HKHolderCreater::getNameByFileContent(Name_Type_e type, const QByteArray& conetent)
{
QList<NameInfo_t> nameList;
QTextCodec* tc = QTextCodec::codecForName("Big5");
QString codec = tc->toUnicode(conetent.data());
QTextStream stream(&codec);
int row = 0;
while (!stream.atEnd())
{
NameInfo_t info;
QString line = stream.readLine();
QString name_tc = line;
QStringList csvList = name_tc.split(',');
QString name, eng_name, bg_type;
switch (type) {
case Name_zh:
name = csvList.at(0);
bg_type = csvList.at(1);
break;
case Name_zh_eng:
/*name = csvList.at(0);
eng_name = csvList.at(1);
bg_type = csvList.at(2);*/
break;
case Name_eng:
//eng_name = csvList.at(0);
//bg_type = csvList.at(1);
default:
break;
}
qDebug() << "row :" << row << " " << name << ", eng: " << eng_name << ", bg_type: " << bg_type;
if (name.compare("name") == 0 || eng_name.compare("eng_name") == 0) {
//pass first line
continue;
}
info.name1 = name;
info.name_eng = eng_name;
info.name2 = bg_type;
nameList.append(info);
row++;
}
return nameList;
}
void HKHolderCreater::generaImageFromCSV(Name_Type_e type, const QString& filename, const QByteArray& filecontent, const QFont& font, const QColor& font_color)
{
int export_times = 0;
QList<NameInfo_t> nameList = getNameByFileContent(type, filecontent);
if (nameList.isEmpty()) {
QMessageBox msgBox;
msgBox.setText(QString("Name is empty ! ").append(filename));
msgBox.exec();
}
QGraphicsScene scene;
scene.setBackgroundBrush(QBrush(QColor(255, 255, 255)));
QGraphicsView view(&scene);
switch (type)
{
case Name_zh:
for (int idx = 0; idx < nameList.length(); idx++) {
if ((idx % MAX_LABEL_IN_PAPER) == 0) {
QGraphicsRectItem* bg_item = new QGraphicsRectItem(0, 0, HK_BG_WIDTH, HK_BG_HEIGH);
bg_item->setBrush(QBrush(QColor(255, 255, 255)));
//QGraphicsPixmapItem* bg_item = new QGraphicsPixmapItem(QPixmap(":/NameCreater/resource/hk_holder/sample.jpg"));
scene.addItem(bg_item);
}
int re_idx, row_idx, col_idx;
re_idx = idx % MAX_LABEL_IN_PAPER;
row_idx = re_idx / MAX_COL_IN_ROW;
col_idx = re_idx % MAX_COL_IN_ROW;
NameInfo_t name_info = nameList.at(idx);
QString label_rel_path = label_bg_map[name_info.name2];
QGraphicsPixmapItem* label_item = new QGraphicsPixmapItem(QPixmap(label_rel_path));
label_item->setPos(qreal(row_x_offset + col_idx* row_x_gap), row_y_offset[row_idx]);
//label_item->setOpacity(0.5);
scene.addItem(label_item);
for (int i = 0; i < 2; i++) {
int name_word_len = name_info.name1.length();
qreal two_word_y = (name_word_len == 2) ? NAME_TWO_EXT_Y : 0;
qreal two_word_rev_y = (name_word_len == 2) ? NAME_TWO_EXT_REV_Y : 0;
qreal offset_y = (name_word_len == 2) ? NAME_TWO_WORD_OFFSET : NAME_THREE_WORD_OFFSET;
for (int w = 0; w < name_word_len; w++) {
QGraphicsTextItem* word_item = new QGraphicsTextItem(name_info.name1.at(w));
word_item->setFont(font);
word_item->setDefaultTextColor(font_color);
if (i == 0) {
word_item->setPos(label_item->x() + NAME_OFFSET_START.x(), label_item->y() + NAME_OFFSET_START.y() + two_word_y + offset_y * w);
}
else {
word_item->setTransform(QTransform().fromScale(-1, -1));
word_item->setPos(label_item->x() + NAME_OFFSET_REVERSE_START.x(), label_item->y() + NAME_OFFSET_REVERSE_START.y() - two_word_rev_y - offset_y * w);
}
scene.addItem(word_item);
}
}
if ((idx % MAX_LABEL_IN_PAPER) == (MAX_LABEL_IN_PAPER - 1) || idx == nameList.count() - 1) {
QString date_str = QDateTime::currentDateTime().toString("MMddhhmm");
QString file_name = QString("HK_%2_%1.jpg").arg(QString::number(export_times + 1), date_str);
saveToImage(file_name, &scene);
export_times++;
scene.clear();
}
}
break;
/*
case Name_eng:
for (int idx = 0; idx < nameList.length(); idx++) {
if ((idx % MAX_LABEL_IN_PAPER) == 0) {
QGraphicsRectItem* bg_item = new QGraphicsRectItem(0, 0, BG_WIDTH, BG_HEIGHT);
bg_item->setBrush(QBrush(QColor(255, 255, 255)));
//QGraphicsPixmapItem* bg_item = QGraphicsPixmapItem(QPixmap(BG_SMAPLE_PATH));
scene.addItem(bg_item);
}
NameInfo_t name_info = nameList.at(idx);
int col_index = idx % MAX_LABEL_IN_PAPER;
QString label_rel_path = label_bg_map[name_info.name2];
QGraphicsPixmapItem* label_item = new QGraphicsPixmapItem(QPixmap(label_rel_path));
label_item->setPos(int(LABEL_POS_START.x() + LABEL_POS_X_OFFSET * col_index), int(LABEL_POS_START.y()));
label_item->setOpacity(1);
scene.addItem(label_item);
int chrismas_y_offset = 0;
if (name_info.name2.compare("co") == 0 || name_info.name2.compare("ol") == 0 ||
name_info.name2.compare("st") == 0 || name_info.name2.compare("sn") == 0) {
chrismas_y_offset = 30;
}
QFont _new_font = QFont(EnglisthFont());
_new_font.setWeight(QFont::ExtraLight);
int _new_size = getFontSizebyStr(_new_font, 120, 480, name_info.name_eng);
_new_font.setPixelSize(_new_size);
for (int i = 0; i < 2; i++) {
qreal dir = (i == 0) ? -1.0 : 1.0;
qreal x_offset = (i == 0) ? 290.0 : 170.0;
qreal y_offset = (i == 0) ? 780.0 : 1580.0;
chrismas_y_offset = (i == 0) ? 1.0 * chrismas_y_offset : -1.0 * chrismas_y_offset;
//add English world
QGraphicsTextItem* eng_word_item = new QGraphicsTextItem(name_info.name_eng);
eng_word_item->setFont(_new_font);
QRectF rect = eng_word_item->boundingRect();
eng_word_item->setDefaultTextColor(font_color);
eng_word_item->setRotation(i == 0 ? 90 : -90);
eng_word_item->setPos(label_item->x() + x_offset - rect.height() / 2.0, label_item->y() + y_offset + chrismas_y_offset + (rect.width() / 2 * dir));
scene.addItem(eng_word_item);
}
if ((idx % MAX_LABEL_IN_PAPER) == (MAX_LABEL_IN_PAPER - 1) || idx == nameList.count() - 1) {
QString date_str = QDateTime::currentDateTime().toString("MMddhhmm");
QString file_name = QString("Birthday_%2_%1.jpg").arg(QString::number(export_times + 1), date_str);
saveToImage(file_name, &scene);
export_times++;
scene.clear();
}
}
break;
case Name_zh_eng:
for (int idx = 0; idx < nameList.length(); idx++) {
if ((idx % MAX_LABEL_IN_PAPER) == 0) {
QGraphicsRectItem* bg_item = new QGraphicsRectItem(0, 0, BG_WIDTH, BG_HEIGHT);
bg_item->setBrush(QBrush(QColor(255, 255, 255)));
//QGraphicsPixmapItem* bg_item = QGraphicsPixmapItem(QPixmap(BG_SMAPLE_PATH));
scene.addItem(bg_item);
}
NameInfo_t name_info = nameList.at(idx);
int col_index = idx % MAX_LABEL_IN_PAPER;
QString label_rel_path = label_bg_map[name_info.name2];
QGraphicsPixmapItem* label_item = new QGraphicsPixmapItem(QPixmap(label_rel_path));
label_item->setPos(int(LABEL_POS_START.x() + LABEL_POS_X_OFFSET * col_index), int(LABEL_POS_START.y()));
label_item->setOpacity(1);
scene.addItem(label_item);
int chrismas_y_offset = 0;
if (name_info.name2.compare("co") == 0 || name_info.name2.compare("ol") == 0 ||
name_info.name2.compare("st") == 0 || name_info.name2.compare("sn") == 0) {
chrismas_y_offset = 30;
}
// add ZH word
int name_word_len = name_info.name1.length();
qreal two_word_y = (name_word_len == 2) ? NAME_TWO_WORD_OFFSET / 2 : 0;
qreal offset_y = (name_word_len == 2) ? NAME_TWO_WORD_OFFSET : NAME_THREE_WORD_OFFSET;
for (int w = 0; w < name_word_len; w++) {
QGraphicsTextItem* word_item = new QGraphicsTextItem(name_info.name1.at(w));
word_item->setFont(font);
word_item->setDefaultTextColor(font_color);
word_item->setPos(label_item->x() + NAME_OFFSET_START.x(), label_item->y() + NAME_OFFSET_START.y() + two_word_y + chrismas_y_offset + offset_y * w);
scene.addItem(word_item);
}
//TODO: add English world
QGraphicsTextItem* eng_word_item = new QGraphicsTextItem(name_info.name_eng);
QFont _new_font = QFont(EnglisthFont());
_new_font.setWeight(QFont::ExtraLight);
int _new_size = getFontSizebyStr(_new_font, 120, 480, name_info.name_eng);
_new_font.setPixelSize(_new_size);
eng_word_item->setFont(_new_font);
QRectF rect = eng_word_item->boundingRect();
eng_word_item->setDefaultTextColor(font_color);
eng_word_item->setRotation(-90);
eng_word_item->setPos(label_item->x() + 170.0 - rect.height() / 2.0, label_item->y() + 1580 - chrismas_y_offset + rect.width() / 2);
scene.addItem(eng_word_item);
if ((idx % MAX_LABEL_IN_PAPER) == (MAX_LABEL_IN_PAPER - 1) || idx == nameList.count() - 1) {
QString date_str = QDateTime::currentDateTime().toString("MMddhhmm");
QString file_name = QString("Birthday_%2_%1.jpg").arg(QString::number(export_times + 1), date_str);
saveToImage(file_name, &scene);
export_times++;
scene.clear();
}
}
break;
*/
default:
break;
}
QMessageBox msgBox;
msgBox.setText(QString().asprintf("Export Finshed. Count:%d", export_times));
msgBox.exec();
}

View File

@ -1,20 +0,0 @@
#pragma once
#include "INameCreater.h"
#include <QMap>
class HKHolderCreater :
public INameCreater
{
public:
HKHolderCreater();
~HKHolderCreater();
protected:
QList<NameInfo_t> getNameByFileContent(Name_Type_e type, const QByteArray& conetent);
public:
virtual void generaImageFromCSV(Name_Type_e type, const QString& filename, const QByteArray& filecontent, const QFont& font, const QColor& font_color);
private:
QMap<QString, QString> label_bg_map;
};

View File

@ -1,181 +0,0 @@
#include "INameCreater.h"
#include <QDebug>
#include <QApplication>
#include <QPainter>
#include <QDateTime>
#include <QBuffer>
#include <QFileDialog>
#include <QTextCodec>
#include <QTextStream>
#include <QMessageBox>
#include <QRegularExpression>
#define BG_PATH_FORMAT ":/NameCreater/resource/background_%1.jpg"
INameCreater::INameCreater()
{
}
INameCreater::~INameCreater()
{
}
void INameCreater::saveToImage(const QString& filename, QGraphicsScene* scene)
{
scene->clearSelection(); // Selections would also render to the file
scene->setSceneRect(scene->itemsBoundingRect()); // Re-shrink the scene to it's bounding contents
QImage image(scene->sceneRect().size().toSize(), QImage::Format_ARGB32); // Create the image with the exact size of the shrunk scene
image.fill(Qt::transparent); // Start all pixels transparent
int dpm = 300 / 0.0254; // ~300 DPI
image.setDotsPerMeterX(dpm);
image.setDotsPerMeterY(dpm);
QPainter painter(&image);
scene->render(&painter);
#ifdef Q_OS_MAC
QString folder_name = QCoreApplication::applicationDirPath() + "/../../../export_" + QDateTime::currentDateTime().toString("yyyyMMdd");
qDebug() << "app director path" <<QCoreApplication::applicationDirPath();
#else
QString folder_name = "./";//QCoreApplication::applicationDirPath() + "/export_" + QDateTime::currentDateTime().toString("yyyyMMdd");
#endif
QString savePath = folder_name.append(filename);
#ifdef Q_OS_WASM
QByteArray imageData;
QBuffer buffer(&imageData);
buffer.open(QIODevice::WriteOnly);
QPixmap pixmap = QPixmap::fromImage(image);
pixmap.save(&buffer, "JPEG", 100); // You can also use other formats like "JPEG" or "BMP"
QFileDialog::saveFileContent(imageData, savePath);
#else
qDebug()<<"image save path:" << savePath;
image.save(savePath, "JPEG");
#endif
}
QList<NameInfo_t> INameCreater::getNameByFile(Name_Type_e type, const QString& filename)
{
QList<NameInfo_t> nameList;
#ifdef Q_OS_MAC
QString root_path = QCoreApplication::applicationDirPath() + "/../../../";
#else
QString root_path = "";//QCoreApplication::applicationDirPath() + "/";
#endif
QFile file(filename);
if (!file.open(QIODevice::ReadOnly)) {
QMessageBox msgBox;
msgBox.setText(QString("Load file failed!").append(filename));
msgBox.exec();
file.close();
return nameList;
}
int row = 0;
QTextCodec* tc = QTextCodec::codecForName("Big5");
while (!file.atEnd())
{
NameInfo_t info;
QByteArray line = file.readLine();
QString name_tc = tc->toUnicode(line);
QStringList csvList = name_tc.split(',');
QString name1 = csvList.at(0);
QString type_str = csvList.last();//QString::fromLocal8Bit(csvList.last());
qDebug() << "row :" << row << " " << name1;
type_str = type_str.remove(QRegularExpression("\r"));
type_str = type_str.remove(QRegularExpression("\n"));
if (name1.compare("name_1") == 0) {
continue;
}
info.name1 = name1;
info.bg_path = QString(BG_PATH_FORMAT).arg(type_str);
info.is_number_bg = type_str[0].isDigit();
nameList.append(info);
row++;
}
file.close();
return nameList;
}
QList<NameInfo_t> INameCreater::getNameByFileContent(Name_Type_e type, const QByteArray& conetent)
{
(void)type;
QList<NameInfo_t> nameList;
QTextCodec* tc = QTextCodec::codecForName("Big5");
QString codec = tc->toUnicode(conetent.data());
QTextStream stream(&codec);
int row = 0;
while (!stream.atEnd())
{
NameInfo_t info;
QString line = stream.readLine();
QString name_tc = line;
QStringList csvList = name_tc.split(',');
QString name1 = csvList.at(0);
QString type_str = csvList.last();//QString::fromLocal8Bit(csvList.last());
qDebug() << "row :" << row << " " << name1;
type_str = type_str.remove(QRegularExpression("\r"));
type_str = type_str.remove(QRegularExpression("\n"));
if (name1.compare("name_1") == 0) {
continue;
}
info.name1 = name1;
info.bg_path = QString(BG_PATH_FORMAT).arg(type_str);
info.is_number_bg = type_str[0].isDigit();
nameList.append(info);
row++;
}
return nameList;
}
void INameCreater::generaImageFromCSV(Name_Type_e type, const QString& filename, const QByteArray& filecontent, const QFont& font, const QColor& font_color)
{
}
int INameCreater::getFontSizebyStr(const QFont& font, int max_font_size,int max_label_width, const QString& str)
{
QFont _font(font);
int font_size = max_font_size;
while (font_size > 10) {
_font.setPixelSize(font_size);
QFontMetrics fm(_font);
if (fm.horizontalAdvance(str) <= max_label_width) return font_size;
font_size--;
}
return font_size;
}

View File

@ -1,52 +0,0 @@
#pragma once
#include <QObject>
#include <QGraphicsScene>
#include <QGraphicsView>
#include <QGraphicsRectItem>
#include <QCoreApplication>
#define BG_WIDTH 3508
#define BG_HEIGHT 2481
struct NameInfo_t {
QString name1;
QString name2;
QString name_eng;
QString bg_path;
bool is_number_bg;
int bg_type;
};
enum Name_Type_e {
Name_zh = 0,
Name_eng,
Name_zh_eng
};
class INameCreater : public QObject {
public:
INameCreater();
~INameCreater();
void setEnglishFont(const QFont& font) {
eng_Font = QFont(font);
}
QFont EnglisthFont() const {
return eng_Font;
}
void saveToImage(const QString& filename, QGraphicsScene* scene);
protected:
QList<NameInfo_t> getNameByFile(Name_Type_e type, const QString& filename);
QList<NameInfo_t> getNameByFileContent(Name_Type_e type, const QByteArray& conetent);
virtual void generaImageFromCSV(Name_Type_e type, const QString& filename, const QByteArray& filecontent, const QFont& font, const QColor& font_color);
int getFontSizebyStr(const QFont& font, int max_font_size, int max_label_width, const QString& str);
private:
QFont eng_Font;
};

View File

@ -1,322 +1,406 @@
#include "def.h" #include "NameCreater.h"
#include "NameCreater.h" #include <QDebug>
#include <QDebug> #include <QFileDialog>
#include <QFileDialog> #include <QMessageBox>
#include <QMessageBox> #include <QFontDatabase>
#include <QFontDatabase> #include <QTextCodec>
#include <QTextCodec> #include <QGraphicsScene>
#include <QGraphicsScene> #include <QGraphicsView>
#include <QGraphicsView> #include <QGraphicsPixmapItem>
#include <QGraphicsPixmapItem> #include <QDateTime>
#include <QDateTime> #include <QBuffer>
#include <QBuffer>
#include <QRegularExpression>
#include <QJsonDocument> //#define BG_SAMPLE_PATH ":/NameCreater/resource/background_sample.jpg"
#include <QJsonObject> #define BG_SAMPLE_PATH ":/NameCreater/resource/background_number_smaple.jpg"
#include <QJsonArray> #define BG_PATH_FORMAT ":/NameCreater/resource/background_%1.jpg"
#include <QComboBox> #define FONT_NAME "DFYuanStd-W8.otf"
#define FONT_PATH ":/NameCreater/_exp/DFYuanStd-W8.otf"
#define FONT_SIZE 120
#include "FiveToSingle.h" //#define FONT_SIZE 74
#include "BirthdayCreater.h"
#include "TowelCreater.h" #define BG_MIX_TYPE_STR "mix"
#include "NewFiveCreater.h" #define BG_BOY_TYPE_STR "boy"
#include "HKHolderCreater.h" #define BG_GIRL_TYPE_STR "girl"
#include "customlogo.h"
#include "customlogo2.h" #define VERSION "v1.2.0"
struct NameInfo_t {
#define TOWEL_FONT_PATH ":/NameCreater/_exp/W1.ttc" QString name1;
#define ENGLISH_FONT_PATH ":/NameCreater/_exp/FontsFree-Net-Acumin-Pro-Semibold.ttf" QString name2;
QString bg_path;
#define FONT_SIZE 120 bool is_number_bg;
};
//#define FONT_CHT_URL "https://bazaar1688.ddns.net/font/TaiwanPearl-SemiBold.ttf"
static QPointF BG_POS[] = {
#define FONT_JSON_URL "https://namecreater.bazaar1688.duckdns.org/font/fonts.json" QPointF(159, 61), QPointF(482, 61), QPointF(802, 61),
QPointF(1122, 61), QPointF(1449, 61), QPointF(1772, 61),
//#define FONT_CHT_URL "http://45.32.51.135/font/TaiwanPearl-SemiBold.ttf" QPointF(2095, 61), QPointF(2414, 61), QPointF(2738, 61),
QPointF(3060, 61), QPointF(900, 2094), QPointF(900, 2420),
static CustomLogo* s_custom_logo_widget = nullptr; };
NameCreater::NameCreater(QWidget* parent) static int BG_POS_COUNT = sizeof(BG_POS) / sizeof(BG_POS[0]);
: QMainWindow(parent)
{
ui.setupUi(this); static QPointF NAME_POS[] = {
QPointF(240, 430), QPointF(372, 1402),
QPointF(564, 430), QPointF(694, 1402),
ui.scrollAreaWidgetContents->setMinimumSize(ui.frame->size()); QPointF(883, 430), QPointF(1014, 1402),
QPointF(1205, 430), QPointF(1337, 1402),
connect(ui.fivesingle_btn, &QPushButton::released, this, &NameCreater::OnClickedReadBtn); QPointF(1532, 430), QPointF(1663, 1402),
//connect(ui.fiveold_btn, &QPushButton::released, this, &NameCreater::OnClickedReadBtn); QPointF(1854, 430), QPointF(1987, 1402),
connect(ui.birthday_btn, &QPushButton::released, this, &NameCreater::OnClickedReadBtn); QPointF(2176, 430), QPointF(2309, 1402),
connect(ui.towel_btn, &QPushButton::released, this, &NameCreater::OnClickedReadBtn); QPointF(2498, 430), QPointF(2629, 1402),
connect(ui.fivenew_btn, &QPushButton::released, this, &NameCreater::OnClickedReadBtn); QPointF(2821, 430), QPointF(2952, 1402),
connect(ui.birthday_zh_eng_btn, &QPushButton::released, this, &NameCreater::OnClickedReadBtn); QPointF(3145, 430), QPointF(3276, 1402),
connect(ui.birthday_eng_eng_btn, &QPushButton::released, this, &NameCreater::OnClickedReadBtn); QPointF(1268, 2012), QPointF(2240, 1880),
connect(ui.handkerchief_btn, &QPushButton::released, this, &NameCreater::OnClickedReadBtn); QPointF(1268, 2334), QPointF(2240, 2202),
connect(ui.fivesingle_zh_eng_btn, &QPushButton::released, this, &NameCreater::OnClickedReadBtn); };
connect(ui.customlogo_btn, &QPushButton::released, this, &NameCreater::OnClickedCustomLogoBtn);
connect(ui.customlogo2_btn, &QPushButton::released, this, &NameCreater::OnClickedCustomLogo2Btn); static QPointF NAME_POS_NUMBER[] = {
QPointF(240, 370), QPointF(372, 1442),
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) QPointF(564, 370), QPointF(694, 1442),
connect(ui.font_comboBox, &QComboBox::currentTextChanged, this, &NameCreater::OnFontComboBoxTextChanged); QPointF(883, 370), QPointF(1014, 1442),
#else QPointF(1205, 370), QPointF(1337, 1442),
connect(ui.font_comboBox, &QComboBox::currentIndexChanged, this, &NameCreater::OnFontComboBoxIndexChanged); QPointF(1532, 370), QPointF(1663, 1442),
#endif QPointF(1854, 370), QPointF(1987, 1442),
//qDebug()<<"QSslSocket="<<QSslSocket::sslLibraryBuildVersionString(); QPointF(2176, 370), QPointF(2309, 1442),
QPointF(2498, 370), QPointF(2629, 1442),
connect(&network_mgr, &QNetworkAccessManager::finished, this, &NameCreater::onFontDownloadFinished); QPointF(2821, 370), QPointF(2952, 1442),
QPointF(3145, 370), QPointF(3276, 1442),
query_type = 10; QPointF(1228, 2012), QPointF(2280, 1880),
query(QUrl(FONT_JSON_URL), 10); QPointF(1228, 2334), QPointF(2280, 2202),
};
}
static int NAME_POS_COUNT = sizeof(NAME_POS) / sizeof(NAME_POS[0]);
NameCreater::~NameCreater()
{
}
void saveToImage(const QString& filename, QGraphicsScene* scene) {
void NameCreater::parseFontJson(const QByteArray& data)
{ scene->clearSelection(); // Selections would also render to the file
QJsonDocument jsonDoc = QJsonDocument::fromJson(data); scene->setSceneRect(scene->itemsBoundingRect()); // Re-shrink the scene to it's bounding contents
QImage image(scene->sceneRect().size().toSize(), QImage::Format_ARGB32); // Create the image with the exact size of the shrunk scene
if (jsonDoc.isNull()) { image.fill(Qt::transparent); // Start all pixels transparent
qDebug() << "Failed to create JSON doc."; int dpm = 300 / 0.0254; // ~300 DPI
return; image.setDotsPerMeterX(dpm);
} image.setDotsPerMeterY(dpm);
if (jsonDoc.isObject()) {
QJsonObject jsonObj = jsonDoc.object(); QPainter painter(&image);
// Process the JSON object scene->render(&painter);
qDebug() << "JSON Object:" << jsonObj;
} #ifdef Q_OS_MAC
else if (jsonDoc.isArray()) { QString folder_name = QCoreApplication::applicationDirPath() + "/../../../export_" + QDateTime::currentDateTime().toString("yyyyMMdd");
ui.font_comboBox->clear(); #else
QJsonArray jsonArray = jsonDoc.array(); QString folder_name = QCoreApplication::applicationDirPath() + "/export_" + QDateTime::currentDateTime().toString("yyyyMMdd");
#endif
foreach(auto val, jsonArray) {
auto obj = val.toObject(); /*qDebug() << "folder_name :" << folder_name;
QString n = obj["font_name"].toString(); if (!QDir(folder_name).exists()) {
QString u = obj["font_url"].toString(); QDir().mkdir(folder_name);
ui.font_comboBox->addItem(n, u); }
}
image.save(QString(folder_name).append("/").append(filename), "JPG", 100);*/
// Process the JSON array
qDebug() << "JSON Array:" << jsonArray; ; // obtained from e.g. QImage::save()
QByteArray imageData;
} QBuffer buffer(&imageData);
buffer.open(QIODevice::WriteOnly);
QPixmap pixmap = QPixmap::fromImage(image);
} pixmap.save(&buffer, "JPEG",100); // You can also use other formats like "JPEG" or "BMP"
void NameCreater::query(const QUrl& url, int type) QFileDialog::saveFileContent(imageData, filename);
{
QNetworkRequest req(url);
req.setAttribute(QNetworkRequest::User, QVariant(type)); }
network_mgr.get(req);
}
QList<NameInfo_t> getNameByFile(const QString& filename) {
void NameCreater::loadFont(const QByteArray& fontdata) { QList<NameInfo_t> nameList;
int id = QFontDatabase::addApplicationFontFromData(fontdata); #ifdef Q_OS_MAC
QStringList family_list = QFontDatabase::applicationFontFamilies(id); QString root_path = QCoreApplication::applicationDirPath() + "/../../../";
qDebug() << "font family list:" << family_list; #else
QString cht_fontname = family_list.at(0); QString root_path = "";//QCoreApplication::applicationDirPath() + "/";
#endif
font = QFont(cht_fontname);
font.setPixelSize(FONT_SIZE);
QFile file(filename);
QString font_path = QString(TOWEL_FONT_PATH);
QFile font_res_towel(font_path); if (!file.open(QIODevice::ReadOnly)) {
if (!font_res_towel.open(QIODevice::ReadOnly)) { QMessageBox msgBox;
QMessageBox msgBox; msgBox.setText(QString("Load file failed!").append(filename));
msgBox.setText("Can not load font file!" + font_path); msgBox.exec();
msgBox.exec(); file.close();
font_res_towel.close(); return nameList;
} }
id = QFontDatabase::addApplicationFontFromData(font_res_towel.readAll()); int row = 0;
font_towel = QFont(QFontDatabase::applicationFontFamilies(id).at(0)); QTextCodec* tc = QTextCodec::codecForName("Big5");
font_towel.setPixelSize(240); while (!file.atEnd())
font_towel.setLetterSpacing(QFont::PercentageSpacing, 42); {
NameInfo_t info;
QByteArray line = file.readLine();
font_path = QString(ENGLISH_FONT_PATH);
QFile font_res_eng(font_path); QString name_tc = tc->toUnicode(line);
if (!font_res_eng.open(QIODevice::ReadOnly)) { QStringList csvList = name_tc.split(',');
QMessageBox msgBox;
msgBox.setText("Can not load font file!" + font_path);
msgBox.exec(); QString name1 = csvList.at(0);
font_res_eng.close(); QString type_str = csvList.last();//QString::fromLocal8Bit(csvList.last());
} qDebug() << "row :" << row << " " << name1;
id = QFontDatabase::addApplicationFontFromData(font_res_eng.readAll()); type_str = type_str.remove(QRegExp("\r"));
font_english = QFont(QFontDatabase::applicationFontFamilies(id).at(0)); type_str = type_str.remove(QRegExp("\n"));
font_color = QColor(0, 0, 0);
if (name1.compare("name_1") == 0) {
QFont tital_font = QFont(font); continue;
tital_font.setPixelSize(20); }
QFont version_font = QFont(font); info.name1 = name1;
version_font.setPixelSize(12); info.bg_path = QString(BG_PATH_FORMAT).arg(type_str);
info.is_number_bg = type_str[0].isDigit();
//ui.tital_label->setFont(tital_font);
nameList.append(info);
char c_font_name[64] = { 0 };
sprintf(c_font_name, "%s", cht_fontname.toStdString().c_str()); row++;
ui.font_name_label->setFont(version_font); }
ui.font_name_label->setText(QString::fromLocal8Bit(c_font_name)); file.close();
return nameList;
ui.version_label->setFont(version_font); }
ui.version_label->setText(VERSION);
ui.font_comboBox->setFont(version_font); QList<NameInfo_t> getNameByFileContent(const QByteArray& conetent) {
QList<NameInfo_t> nameList;
QList<QLabel*> titals = findChildren<QLabel*>(QRegularExpression("tital_label")); QTextCodec* tc = QTextCodec::codecForName("Big5");
foreach(auto tital, titals) { QString codec = tc->toUnicode(conetent.data());
tital->setFont(tital_font); QTextStream stream(&codec);
}
qDebug() << "Load Font Succeed!"; int row = 0;
while (!stream.atEnd())
} {
NameInfo_t info;
QString line = stream.readLine();
void NameCreater::OnClickedReadBtn() { QString name_tc = line;
auto sender = (QPushButton*)QObject::sender(); QStringList csvList = name_tc.split(',');
#ifdef Q_OS_WASM QString name1 = csvList.at(0);
QString type_str = csvList.last();//QString::fromLocal8Bit(csvList.last());
auto fileContentReady = [this, sender](const QString& fileName, const QByteArray& fileContent) { qDebug() << "row :" << row << " " << name1;
if (!fileName.isEmpty()) {
this->execCreater(sender, fileName, fileContent); type_str = type_str.remove(QRegExp("\r"));
} type_str = type_str.remove(QRegExp("\n"));
};
QFileDialog::getOpenFileContent("CSV (*.csv)", fileContentReady);
if (name1.compare("name_1") == 0) {
#else continue;
QString filename = QFileDialog::getOpenFileName(nullptr, "Open Name File", QDir::currentPath(), "CSV file(*.csv)"); }
if (!filename.isEmpty()) {
QFile _f(filename); info.name1 = name1;
if (_f.open(QIODevice::ReadOnly)) { info.bg_path = QString(BG_PATH_FORMAT).arg(type_str);
execCreater(sender, filename, _f.readAll()); info.is_number_bg = type_str[0].isDigit();
}
} nameList.append(info);
#endif
} row++;
}
void NameCreater::execCreater(QObject* sender, const QString& fileName, const QByteArray& fileContent) { return nameList;
}
// Use fileName and fileContent
if (sender == ui.fivesingle_btn) FiveToSingle().generaImageFromCSV(Name_Type_e::Name_zh, fileName, fileContent, this->font, this->font_color);
void processCSV(const QString& filename, const QByteArray& filecontent, const QFont& font, const QColor& font_color) {
if (sender == ui.birthday_btn) BirthdayCreater().generaImageFromCSV(Name_Type_e::Name_zh, fileName, fileContent, this->font, this->font_color); int export_times = 0;
if (sender == ui.fivenew_btn) NewFiveCreater().generaImageFromCSV(Name_Type_e::Name_zh, fileName, fileContent, this->font, this->font_color); //QList<NameInfo_t> nameList = getNameByFile(filename);
if (sender == ui.towel_btn) TowelCreater().generaImageFromCSV(Name_Type_e::Name_zh, fileName, fileContent, this->font_towel, this->font_color);
if (sender == ui.birthday_zh_eng_btn) { QList<NameInfo_t> nameList = getNameByFileContent(filecontent);
BirthdayCreater creater; if (nameList.isEmpty()) {
creater.setEnglishFont(font_english); QMessageBox msgBox;
creater.generaImageFromCSV(Name_Type_e::Name_zh_eng, fileName, fileContent, this->font, this->font_color); msgBox.setText(QString("Name is empty ! ").append(filename));
} msgBox.exec();
if (sender == ui.birthday_eng_eng_btn) { }
BirthdayCreater b;
b.setEnglishFont(font_english); QGraphicsScene scene;
b.generaImageFromCSV(Name_Type_e::Name_eng, fileName, fileContent, this->font, this->font_color); scene.setBackgroundBrush(QBrush(QColor(255, 255, 255)));
} QGraphicsView view(&scene);
if (sender == ui.handkerchief_btn) {
QFont newFont(font);
newFont.setPixelSize(78);
QColor newColor(0, 0, 0); /*QImage image(BG_SAMPLE_PATH);
HKHolderCreater().generaImageFromCSV(Name_Type_e::Name_zh, fileName, fileContent, newFont, newColor); QGraphicsPixmapItem* bgItem = new QGraphicsPixmapItem(QPixmap::fromImage(image));
} scene.addItem(bgItem);*/
if (sender == ui.fivesingle_zh_eng_btn) {
FiveToSingle f;
f.setEnglishFont(this->font_english); for (int n = 0; n < nameList.length(); n++) {
f.generaImageFromCSV(Name_Type_e::Name_zh_eng, fileName, fileContent, this->font, this->font_color); int idx = n % BG_POS_COUNT;
return; NameInfo_t name_info = nameList.at(n);
} QImage name_image(name_info.bg_path);
if (idx == 0) {
} QGraphicsRectItem* bg_item = new QGraphicsRectItem(0, 0, 3508, 2482);
bg_item->setBrush(QBrush(QColor(255, 255, 255)));
scene.addItem(bg_item);
}
void NameCreater::OnClickedCustomLogoBtn() {
//QEventLoop loop;
if (s_custom_logo_widget == nullptr) { QGraphicsPixmapItem* name_bgItem = new QGraphicsPixmapItem(QPixmap::fromImage(name_image));
s_custom_logo_widget = new CustomLogo(&this->font); bool rot = (idx == 10 || idx == 11);
} name_bgItem->setRotation(rot ? -90 : 0);
s_custom_logo_widget->show(); name_bgItem->setPos(BG_POS[idx]);
scene.addItem(name_bgItem);
//connect(&widget, &CustomLogo::finished, &loop, &QEventLoop::quit);
//loop.exec();
if (name_info.name1.isEmpty()) {
} QMessageBox msgBox;
msgBox.setText(QString().asprintf("Name is Empty at %d", export_times + 1));
void NameCreater::OnClickedCustomLogo2Btn() { msgBox.exec();
QEventLoop loop; }
customlogo2 widget(&this->font); QString name = name_info.name1;
connect(&widget, &CustomLogo::finished, &loop, &QEventLoop::quit); int name_len = name.length();
widget.show(); for (int j = 0; j < 2; j++) {
loop.exec(); int pos_idx = idx * 2 + j;
} int xscale, yscale;
void NameCreater::onFontDownloadFinished(QNetworkReply* reply) { xscale = yscale = (j == 1) ? -1 : 1;
QPointF pos = name_info.is_number_bg ? NAME_POS_NUMBER[pos_idx] : NAME_POS[pos_idx];
if (reply->error() == QNetworkReply::NoError) { int y_offset[2] = { 0 };
QString url = reply->request().url().toString(); if (name_len == 2) {
int attri = reply->request().attribute(QNetworkRequest::User).toInt(); if (!rot) {
pos.setY(pos.y() + 82 * xscale);
qDebug() << "req url:" << url << "attribi:" << QString::number(attri); }
else {
if (url.contains("fonts.json") || attri == 10 || query_type == 10) { pos.setX(pos.x() + 82 * xscale);
qDebug() << "query fonts json succeed";
parseFontJson(reply->readAll()); }
}else if (url.contains(".ttf") || url.contains(".otf") || attri == 20 || query_type == 20) { y_offset[0] = 25;
qDebug() << "query font family succeed"; }
loadFont(reply->readAll());
} QGraphicsTextItem* textItem1 = new QGraphicsTextItem(name.mid(0, 1));
textItem1->setFont(font);
} textItem1->setDefaultTextColor(font_color);
else { if (!rot) {
textItem1->setPos(pos);
QMessageBox msgBox; textItem1->setTransform(QTransform::fromScale(xscale, yscale));
msgBox.setText("Can not load font file!" + reply->errorString()); }
msgBox.exec(); else {
reply->deleteLater(); textItem1->setPos(pos);
textItem1->setRotation(-90);
textItem1->setTransform(QTransform::fromScale(xscale, yscale));
return; }
}
} scene.addItem(textItem1);
void NameCreater::OnFontComboBoxTextChanged(const QString& str) QGraphicsTextItem* textItem2 = new QGraphicsTextItem(name.mid(1, 1));
{ textItem2->setFont(font);
QComboBox* sender = (QComboBox*)QObject::sender(); textItem2->setDefaultTextColor(font_color);
QString u = sender->currentData().toString(); if (!rot) {
query_type = 20;
query(QUrl(u),20); textItem2->setPos(pos.x(), pos.y() + (145 + y_offset[0]) * xscale);
} textItem2->setTransform(QTransform::fromScale(xscale, yscale));
}
void NameCreater::OnFontComboBoxIndexChanged(int idx) else {
{ textItem2->setPos(pos.x() + (145 + y_offset[0]) * xscale, pos.y());
QComboBox* sender = (QComboBox*)QObject::sender(); textItem2->setRotation(-90);
QString u = sender->currentData().toString(); textItem2->setTransform(QTransform::fromScale(xscale, yscale));
query_type = 20; }
query(QUrl(u),20);
} scene.addItem(textItem2);
if (name_len > 2) {
QGraphicsTextItem* textItem3 = new QGraphicsTextItem(name.mid(2, 1));
textItem3->setFont(font);
textItem3->setDefaultTextColor(font_color);
if (!rot) {
textItem3->setPos(pos.x(), pos.y() + 290 * xscale);
textItem3->setTransform(QTransform::fromScale(xscale, yscale));
}
else {
textItem3->setPos(pos.x() + 290 * xscale, pos.y());
textItem3->setRotation(-90);
textItem3->setTransform(QTransform::fromScale(xscale, yscale));
}
scene.addItem(textItem3);
}
}
bool is_export_page = ((idx + 1) % BG_POS_COUNT == 0);
if (is_export_page || n == nameList.count() - 1) {
QString file_name = QString("%1_.jpg").arg(QString::number(export_times + 1));
saveToImage(file_name, &scene);
export_times++;
scene.clear();
}
}
QMessageBox msgBox;
msgBox.setText(QString().asprintf("Export Finshed. Count:%d", export_times));
msgBox.exec();
}
NameCreater::NameCreater(QWidget *parent)
: QMainWindow(parent)
{
ui.setupUi(this);
connect(ui.openfile_btn, &QPushButton::released, this, &NameCreater::OnClickedReadBtn);
QString font_path = FONT_PATH; //root_path.append(FONT_NAME);
QFile font_res(font_path);
if (!font_res.open(QIODevice::ReadOnly)) {
QMessageBox msgBox;
msgBox.setText("Can not load font file!" + font_path);
msgBox.exec();
font_res.close();
}
int id = QFontDatabase::addApplicationFontFromData(font_res.readAll());
QStringList family_list = QFontDatabase::applicationFontFamilies(id);
font = QFont(family_list.at(0));
font.setPixelSize(FONT_SIZE);
font_color = QColor(0, 0, 0);
QFont tital_font = QFont(font);
tital_font.setPixelSize(20);
QFont version_font = QFont(font);
version_font.setPixelSize(12);
ui.tital_label->setFont(tital_font);
ui.version_label->setFont(version_font);
ui.version_label->setText(VERSION);
font_res.close();
qDebug() << ui.label->font().family();
}
void NameCreater::OnClickedReadBtn() {
auto fileContentReady = [this](const QString &fileName, const QByteArray &fileContent) {
if (fileName.isEmpty()) {
// No file was selected
}
else {
// Use fileName and fileContent
processCSV(fileName, fileContent, this->font, this->font_color);
}
};
QFileDialog::getOpenFileContent("CSV (*.csv)", fileContentReady);
}

View File

@ -1,49 +1,21 @@
#pragma once #pragma once
#include <QtWidgets/QMainWindow> #include <QtWidgets/QMainWindow>
#include "ui_NameCreater.h" #include "ui_NameCreater.h"
#include <QNetworkAccessManager> class NameCreater : public QMainWindow
#include <QNetworkRequest> {
#include <QNetworkReply> Q_OBJECT
public:
NameCreater(QWidget *parent = Q_NULLPTR);
private:
class NameCreater : public QMainWindow Ui::NameCreaterClass ui;
{ QFont font;
Q_OBJECT QColor font_color;
public:
NameCreater(QWidget *parent = Q_NULLPTR); private Q_SLOTS:
~NameCreater(); void OnClickedReadBtn();
};
private:
Ui::NameCreaterClass ui;
QFont font, font_towel, font_english;
QColor font_color;
QNetworkAccessManager network_mgr;
int query_type;
void query(const QUrl& url, int type = -1);
void loadFont(const QByteArray& fontdata);
void execCreater(QObject*sender, const QString&fileName, const QByteArray &fileContent);
void parseFontJson(const QByteArray& data);
private Q_SLOTS:
void OnClickedReadBtn();
void OnClickedCustomLogoBtn();
void OnClickedCustomLogo2Btn();
void onFontDownloadFinished(QNetworkReply *reply);
void OnFontComboBoxTextChanged(const QString& str);
void OnFontComboBoxIndexChanged(int idx);
};

View File

@ -1,37 +1,14 @@
# ---------------------------------------------------- # ----------------------------------------------------
# This file is generated by the Qt Visual Studio Tools. # This file is generated by the Qt Visual Studio Tools.
# ------------------------------------------------------ # ------------------------------------------------------
# This is a reminder that you are using a generated .pro file. # This is a reminder that you are using a generated .pro file.
# Remove it when you are finished editing this file. # Remove it when you are finished editing this file.
message("You are running qmake on a generated .pro file. This may not work!") message("You are running qmake on a generated .pro file. This may not work!")
HEADERS += ./resource.h \ HEADERS += ./NameCreater.h
$$PWD/def.h \ SOURCES += ./NameCreater.cpp \
./NameCreater.h \ ./main.cpp
./BirthdayCreater.h \ FORMS += ./NameCreater.ui
./FiveToSingle.h \ RESOURCES += NameCreater.qrc
./INameCreater.h \
./OldFiveCreater.h \
./TowelCreater.h \
./NewFiveCreater.h \
./HKHolderCreater.h \
./customlogo.h \
./customlogo2.h
SOURCES += ./NameCreater.cpp \
./main.cpp \
./BirthdayCreater.cpp \
./OldFiveCreater.cpp \
./FiveToSingle.cpp \
./INameCreater.cpp \
./TowelCreater.cpp \
./NewFiveCreater.cpp \
./HKHolderCreater.cpp \
./customlogo.cpp \
./customlogo2.cpp
FORMS += ./NameCreater.ui \
./customlogo.ui \
./customlogo2.ui
RESOURCES += NameCreater.qrc

View File

@ -1,27 +1,21 @@
QT += core gui QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets network greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
greaterThan(QT_MAJOR_VERSION, 5): QT += core5compat
CONFIG += c++11 resources_big
CONFIG += c++11 resources_big
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
# You can make your code fail to compile if it uses deprecated APIs. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 include(NameCreater.pri)
include(NameCreater.pri)
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
# Default rules for deployment. else: unix:!android: target.path = /opt/$${TARGET}/bin
qnx: target.path = /tmp/$${TARGET}/bin !isEmpty(target.path): INSTALLS += target
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
wasm-emscripten{
QMAKE_LFLAGS+= -s TOTAL_MEMORY=67108864
QMAKE_LFLAGS += -s ALLOW_MEMORY_GROWTH=1
}

File diff suppressed because it is too large Load Diff

View File

@ -1,107 +1,32 @@
<RCC> <RCC>
<qresource prefix="/NameCreater"> <qresource prefix="/NameCreater">
<file>resource/custom_logo/bg_1.jpg</file> <file>_exp/DFYuanStd-W8.otf</file>
<file>resource/background_sample.jpg</file> <file>resource/background_sample.jpg</file>
<file>resource/background_b.jpg</file> <file>resource/background_b.jpg</file>
<file>resource/background_g.jpg</file> <file>resource/background_g.jpg</file>
<file>resource/background_r.jpg</file> <file>resource/background_r.jpg</file>
<file>resource/background_y.jpg</file> <file>resource/background_y.jpg</file>
<file>resource/two_word_sample.jpg</file> <file>resource/two_word_sample.jpg</file>
<file>resource/background_1.jpg</file> <file>resource/background_1.jpg</file>
<file>resource/background_2.jpg</file> <file>resource/background_2.jpg</file>
<file>resource/background_3.jpg</file> <file>resource/background_3.jpg</file>
<file>resource/background_4.jpg</file> <file>resource/background_4.jpg</file>
<file>resource/background_5.jpg</file> <file>resource/background_5.jpg</file>
<file>resource/background_6.jpg</file> <file>resource/background_6.jpg</file>
<file>resource/background_7.jpg</file> <file>resource/background_7.jpg</file>
<file>resource/background_8.jpg</file> <file>resource/background_8.jpg</file>
<file>resource/background_9.jpg</file> <file>resource/background_9.jpg</file>
<file>resource/background_10.jpg</file> <file>resource/background_10.jpg</file>
<file>resource/background_number_smaple.jpg</file> <file>resource/background_number_smaple.jpg</file>
<file>resource/background_11.jpg</file> <file>resource/background_11.jpg</file>
<file>resource/background_12.jpg</file> <file>resource/background_12.jpg</file>
<file>resource/background_13.jpg</file> <file>resource/background_13.jpg</file>
<file>resource/background_14.jpg</file> <file>resource/background_14.jpg</file>
<file>resource/background_15.jpg</file> <file>resource/background_15.jpg</file>
<file>resource/background_16.jpg</file> <file>resource/background_16.jpg</file>
<file>resource/background_17.jpg</file> <file>resource/background_17.jpg</file>
<file>resource/background_18.jpg</file> <file>resource/background_18.jpg</file>
<file>resource/background_19.jpg</file> <file>resource/background_19.jpg</file>
<file>resource/background_20.jpg</file> <file>resource/background_20.jpg</file>
<file>resource/background.jpg</file> </qresource>
<file>resource/background_boy.jpg</file>
<file>resource/background_girl.jpg</file>
<file>resource/b.jpg</file>
<file>resource/boy_bg.jpg</file>
<file>resource/co.jpg</file>
<file>resource/g.jpg</file>
<file>resource/girl_bg.jpg</file>
<file>resource/m.jpg</file>
<file>resource/ol.jpg</file>
<file>resource/p.jpg</file>
<file>resource/r.jpg</file>
<file>resource/sn.jpg</file>
<file>resource/st.jpg</file>
<file>resource/w.jpg</file>
<file>resource/y.jpg</file>
<file>_exp/W1.ttc</file>
<file>resource/five/b_1.jpg</file>
<file>resource/five/b_2.jpg</file>
<file>resource/five/b_3.jpg</file>
<file>resource/five/b_4.jpg</file>
<file>resource/five/b_5.jpg</file>
<file>resource/five/g_1.jpg</file>
<file>resource/five/g_2.jpg</file>
<file>resource/five/g_3.jpg</file>
<file>resource/five/g_4.jpg</file>
<file>resource/five/g_5.jpg</file>
<file>resource/five/nb_1.jpg</file>
<file>resource/five/nb_2.jpg</file>
<file>resource/five/nb_3.jpg</file>
<file>resource/five/nb_4.jpg</file>
<file>resource/five/nb_5.jpg</file>
<file>resource/five/new_bg_sample.jpg</file>
<file>resource/five/ng_1.jpg</file>
<file>resource/five/ng_2.jpg</file>
<file>resource/five/ng_3.jpg</file>
<file>resource/five/ng_4.jpg</file>
<file>resource/five/ng_5.jpg</file>
<file>_exp/FontsFree-Net-Acumin-Pro-Semibold.ttf</file>
<file>resource/hk_holder/b.jpg</file>
<file>resource/hk_holder/g.jpg</file>
<file>resource/hk_holder/p.jpg</file>
<file>resource/hk_holder/r.jpg</file>
<file>resource/hk_holder/sample.jpg</file>
<file>resource/hk_holder/y.jpg</file>
<file>resource/hk_holder/m.jpg</file>
<file>resource/hk_holder/st.jpg</file>
<file>resource/hk_holder/w.jpg</file>
<file>resource/hk_holder/a.jpg</file>
<file>resource/hk_holder/pg.jpg</file>
<file>resource/a.jpg</file>
<file>resource/pg.jpg</file>
<file>resource/background_21.jpg</file>
<file>resource/background_22.jpg</file>
<file>resource/background_23.jpg</file>
<file>resource/background_24.jpg</file>
<file>resource/background_25.jpg</file>
<file>resource/background_26.jpg</file>
<file>resource/background_27.jpg</file>
<file>resource/background_28.jpg</file>
<file>resource/background_29.jpg</file>
<file>resource/background_30.jpg</file>
<file>resource/five/kb_1.jpg</file>
<file>resource/five/kb_2.jpg</file>
<file>resource/five/kb_3.jpg</file>
<file>resource/five/kb_4.jpg</file>
<file>resource/five/kb_5.jpg</file>
<file>resource/five/kg_1.jpg</file>
<file>resource/five/kg_2.jpg</file>
<file>resource/five/kg_3.jpg</file>
<file>resource/five/kg_4.jpg</file>
<file>resource/five/kg_5.jpg</file>
<file>resource/custom_logo/demo_2.jpg</file>
<file>_exp/Ubuntu-Medium.ttf</file>
<file>resource/custom_logo/bg_2.jpg</file>
</qresource>
</RCC> </RCC>

View File

@ -1,60 +0,0 @@
// Microsoft Visual C++ generated resource script.
//
#include "resource.h"
#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 2 resource.
//
#include "winres.h"
/////////////////////////////////////////////////////////////////////////////
#undef APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
// ­^¤å (¬ü°ê) resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
LANGUAGE 4, 1
#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//
1 TEXTINCLUDE
BEGIN
"resource.h\0"
END
2 TEXTINCLUDE
BEGIN
"#include ""winres.h""\r\n"
"\0"
END
3 TEXTINCLUDE
BEGIN
"\r\n"
"\0"
END
#endif // APSTUDIO_INVOKED
#endif // ­^¤å (¬ü°ê) resources
/////////////////////////////////////////////////////////////////////////////
#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 3 resource.
//
/////////////////////////////////////////////////////////////////////////////
#endif // not APSTUDIO_INVOKED

View File

@ -1,550 +1,149 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>NameCreaterClass</class> <class>NameCreaterClass</class>
<widget class="QMainWindow" name="NameCreaterClass"> <widget class="QMainWindow" name="NameCreaterClass">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>902</width> <width>532</width>
<height>780</height> <height>458</height>
</rect> </rect>
</property> </property>
<property name="font"> <property name="font">
<font/> <font/>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
<string>NameCreater</string> <string>NameCreater</string>
</property> </property>
<property name="styleSheet"> <property name="styleSheet">
<string notr="true"/> <string notr="true">color: rgb(0, 0, 0);</string>
</property> </property>
<widget class="QWidget" name="centralWidget"> <widget class="QWidget" name="centralWidget">
<property name="styleSheet"> <property name="styleSheet">
<string notr="true">QWidget#centralWidget{ <string notr="true">QWidget#centralWidget{
background-color: rgb(0, 0, 0); background-color: rgb(0, 0, 0);
}</string> }</string>
</property> </property>
<layout class="QVBoxLayout" name="verticalLayout"> <widget class="QLabel" name="label">
<item> <property name="geometry">
<layout class="QHBoxLayout" name="horizontalLayout" stretch="0,0,0,10"> <rect>
<property name="spacing"> <x>470</x>
<number>100</number> <y>40</y>
</property> <width>441</width>
<property name="sizeConstraint"> <height>261</height>
<enum>QLayout::SetDefaultConstraint</enum> </rect>
</property> </property>
<property name="leftMargin"> <property name="styleSheet">
<number>0</number> <string notr="true">font: 26pt &quot;華康圓體 Std W8&quot;;</string>
</property> </property>
<item> <property name="text">
<widget class="QLabel" name="version_label"> <string/>
<property name="font"> </property>
<font> <property name="pixmap">
<family>Yu Gothic UI</family> <pixmap>:/NameCreater/resource/background.jpg</pixmap>
<pointsize>10</pointsize> </property>
<weight>50</weight> </widget>
<italic>false</italic> <widget class="QPushButton" name="openfile_btn">
<bold>false</bold> <property name="geometry">
</font> <rect>
</property> <x>80</x>
<property name="styleSheet"> <y>100</y>
<string notr="true">color: rgb(255, 255, 255); <width>181</width>
</string> <height>161</height>
</property> </rect>
<property name="text"> </property>
<string>v1.0.0</string> <property name="text">
</property> <string>Open File</string>
<property name="alignment"> </property>
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set> </widget>
</property> <widget class="QLabel" name="tital_label">
</widget> <property name="geometry">
</item> <rect>
<item> <x>50</x>
<widget class="QLabel" name="font_name_label"> <y>20</y>
<property name="font"> <width>261</width>
<font> <height>71</height>
<family>Yu Gothic UI</family> </rect>
<pointsize>10</pointsize> </property>
<weight>50</weight> <property name="font">
<italic>false</italic> <font>
<bold>false</bold> <family>Yu Gothic UI</family>
</font> <pointsize>20</pointsize>
</property> <weight>50</weight>
<property name="styleSheet"> <italic>false</italic>
<string notr="true">color: rgb(255, 255, 255); <bold>false</bold>
</string> </font>
</property> </property>
<property name="text"> <property name="styleSheet">
<string>font_name</string> <string notr="true">color: rgb(255, 255, 255);
</property> </string>
<property name="alignment"> </property>
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set> <property name="text">
</property> <string>五入組拆成單入產生器</string>
</widget> </property>
</item> <property name="alignment">
<item> <set>Qt::AlignCenter</set>
<widget class="QComboBox" name="font_comboBox"> </property>
<property name="minimumSize"> </widget>
<size> <widget class="QLabel" name="version_label">
<width>200</width> <property name="geometry">
<height>0</height> <rect>
</size> <x>50</x>
</property> <y>60</y>
</widget> <width>261</width>
</item> <height>41</height>
<item> </rect>
<spacer name="horizontalSpacer"> </property>
<property name="orientation"> <property name="font">
<enum>Qt::Horizontal</enum> <font>
</property> <family>Yu Gothic UI</family>
<property name="sizeHint" stdset="0"> <pointsize>10</pointsize>
<size> <weight>50</weight>
<width>40</width> <italic>false</italic>
<height>20</height> <bold>false</bold>
</size> </font>
</property> </property>
</spacer> <property name="styleSheet">
</item> <string notr="true">color: rgb(255, 255, 255);
</layout> </string>
</item> </property>
<item> <property name="text">
<widget class="QScrollArea" name="scrollArea"> <string>五入組拆成單入產生器</string>
<property name="styleSheet"> </property>
<string notr="true"/> <property name="alignment">
</property> <set>Qt::AlignCenter</set>
<property name="frameShape"> </property>
<enum>QFrame::NoFrame</enum> </widget>
</property> </widget>
<property name="sizeAdjustPolicy"> <widget class="QMenuBar" name="menuBar">
<enum>QAbstractScrollArea::AdjustToContents</enum> <property name="geometry">
</property> <rect>
<property name="widgetResizable"> <x>0</x>
<bool>true</bool> <y>0</y>
</property> <width>532</width>
<widget class="QWidget" name="scrollAreaWidgetContents"> <height>21</height>
<property name="geometry"> </rect>
<rect> </property>
<x>0</x> </widget>
<y>0</y> <widget class="QToolBar" name="mainToolBar">
<width>884</width> <attribute name="toolBarArea">
<height>734</height> <enum>TopToolBarArea</enum>
</rect> </attribute>
</property> <attribute name="toolBarBreak">
<property name="minimumSize"> <bool>false</bool>
<size> </attribute>
<width>0</width> </widget>
<height>0</height> <widget class="QStatusBar" name="statusBar"/>
</size> <action name="actionOpen_File">
</property> <property name="text">
<property name="styleSheet"> <string>Open File</string>
<string notr="true">QWidget#scrollAreaWidgetContents{ </property>
background-color: rgb(0, 0, 0); </action>
}</string> </widget>
</property> <layoutdefault spacing="6" margin="11"/>
<widget class="QFrame" name="frame"> <resources>
<property name="geometry"> <include location="NameCreater.qrc"/>
<rect> </resources>
<x>0</x> <connections/>
<y>0</y> </ui>
<width>861</width>
<height>681</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">QFrame#frame{
border: 3px solid #FFFFFF;
border-color: rgb(255, 255, 255);
}</string>
</property>
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="7" column="0">
<widget class="QLabel" name="tital_label_7">
<property name="font">
<font>
<family>Yu Gothic UI</family>
<pointsize>20</pointsize>
<weight>50</weight>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">
color: rgb(255, 255, 255);
</string>
</property>
<property name="text">
<string>生日禮產生器(英/英)</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="6" column="0">
<widget class="QPushButton" name="birthday_zh_eng_btn">
<property name="minimumSize">
<size>
<width>0</width>
<height>76</height>
</size>
</property>
<property name="text">
<string>Open File</string>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="tital_label_4">
<property name="font">
<font>
<family>Yu Gothic UI</family>
<pointsize>20</pointsize>
<weight>50</weight>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">
color: rgb(255, 255, 255);
</string>
</property>
<property name="text">
<string>生日禮產生器</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="4" column="1">
<widget class="QPushButton" name="fivesingle_zh_eng_btn">
<property name="minimumSize">
<size>
<width>0</width>
<height>76</height>
</size>
</property>
<property name="text">
<string>Open File</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="tital_label_3">
<property name="font">
<font>
<family>Yu Gothic UI</family>
<pointsize>20</pointsize>
<weight>50</weight>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(255, 255, 255);
</string>
</property>
<property name="text">
<string>五入組產生器</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="9" column="0">
<widget class="QLabel" name="tital_label_9">
<property name="font">
<font>
<family>Yu Gothic UI</family>
<pointsize>20</pointsize>
<weight>50</weight>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">
color: rgb(255, 255, 255);
</string>
</property>
<property name="text">
<string>客製底圖產生器</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="8" column="0">
<widget class="QPushButton" name="birthday_eng_eng_btn">
<property name="minimumSize">
<size>
<width>0</width>
<height>76</height>
</size>
</property>
<property name="text">
<string>Open File</string>
</property>
</widget>
</item>
<item row="5" column="1">
<widget class="QLabel" name="tital_label_5">
<property name="font">
<font>
<family>Yu Gothic UI</family>
<pointsize>20</pointsize>
<weight>50</weight>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(255, 255, 255);
</string>
</property>
<property name="text">
<string>小方巾產生器</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="5" column="0">
<widget class="QLabel" name="tital_label_6">
<property name="font">
<font>
<family>Yu Gothic UI</family>
<pointsize>20</pointsize>
<weight>50</weight>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">
color: rgb(255, 255, 255);
</string>
</property>
<property name="text">
<string>生日禮產生器(中/英)</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QPushButton" name="birthday_btn">
<property name="minimumSize">
<size>
<width>0</width>
<height>76</height>
</size>
</property>
<property name="text">
<string>Open File</string>
</property>
</widget>
</item>
<item row="8" column="1">
<widget class="QPushButton" name="handkerchief_btn">
<property name="minimumSize">
<size>
<width>0</width>
<height>76</height>
</size>
</property>
<property name="text">
<string>Open File</string>
</property>
</widget>
</item>
<item row="6" column="1">
<widget class="QPushButton" name="towel_btn">
<property name="minimumSize">
<size>
<width>0</width>
<height>76</height>
</size>
</property>
<property name="text">
<string>Open File</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QPushButton" name="fivesingle_btn">
<property name="minimumSize">
<size>
<width>0</width>
<height>76</height>
</size>
</property>
<property name="text">
<string>Open File</string>
</property>
</widget>
</item>
<item row="10" column="0">
<widget class="QPushButton" name="customlogo_btn">
<property name="minimumSize">
<size>
<width>0</width>
<height>76</height>
</size>
</property>
<property name="text">
<string>Open Dialog</string>
</property>
</widget>
</item>
<item row="10" column="1">
<widget class="QPushButton" name="customlogo2_btn">
<property name="minimumSize">
<size>
<width>0</width>
<height>76</height>
</size>
</property>
<property name="text">
<string>Open Dialog</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QLabel" name="tital_label">
<property name="font">
<font>
<family>Yu Gothic UI</family>
<pointsize>20</pointsize>
<weight>50</weight>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(255, 255, 255);
</string>
</property>
<property name="text">
<string>五入組拆成單入產生器</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QPushButton" name="fivenew_btn">
<property name="minimumSize">
<size>
<width>0</width>
<height>76</height>
</size>
</property>
<property name="text">
<string>Open File</string>
</property>
</widget>
</item>
<item row="9" column="1">
<widget class="QLabel" name="tital_label_10">
<property name="font">
<font>
<family>Yu Gothic UI</family>
<pointsize>20</pointsize>
<weight>50</weight>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">
color: rgb(255, 255, 255);
</string>
</property>
<property name="text">
<string>扶輪社</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QLabel" name="tital_label_2">
<property name="font">
<font>
<family>Yu Gothic UI</family>
<pointsize>20</pointsize>
<weight>50</weight>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(255, 255, 255);
</string>
</property>
<property name="text">
<string>五入組拆成單入產生器(中/英)</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="7" column="1">
<widget class="QLabel" name="tital_label_8">
<property name="font">
<font>
<family>Yu Gothic UI</family>
<pointsize>20</pointsize>
<weight>50</weight>
<italic>false</italic>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">
color: rgb(250, 250, 250);
</string>
</property>
<property name="text">
<string>手帕夾產生器</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
</widget>
</item>
</layout>
</widget>
<action name="actionOpen_File">
<property name="text">
<string>Open File</string>
</property>
</action>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources/>
<connections/>
</ui>

View File

@ -1,228 +1,190 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="16.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project DefaultTargets="Build" ToolsVersion="16.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations"> <ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32"> <ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration> <Configuration>Debug</Configuration>
<Platform>Win32</Platform> <Platform>Win32</Platform>
</ProjectConfiguration> </ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64"> <ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration> <Configuration>Debug</Configuration>
<Platform>x64</Platform> <Platform>x64</Platform>
</ProjectConfiguration> </ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32"> <ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration> <Configuration>Release</Configuration>
<Platform>Win32</Platform> <Platform>Win32</Platform>
</ProjectConfiguration> </ProjectConfiguration>
<ProjectConfiguration Include="Release|x64"> <ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration> <Configuration>Release</Configuration>
<Platform>x64</Platform> <Platform>x64</Platform>
</ProjectConfiguration> </ProjectConfiguration>
</ItemGroup> </ItemGroup>
<PropertyGroup Label="Globals"> <PropertyGroup Label="Globals">
<ProjectGuid>{B66B108B-6DA8-408D-936D-988FF8B6B722}</ProjectGuid> <ProjectGuid>{B66B108B-6DA8-408D-936D-988FF8B6B722}</ProjectGuid>
<Keyword>QtVS_v304</Keyword> <Keyword>QtVS_v304</Keyword>
<WindowsTargetPlatformVersion Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'">10.0</WindowsTargetPlatformVersion> <WindowsTargetPlatformVersion Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'">10.0.16299.0</WindowsTargetPlatformVersion>
<WindowsTargetPlatformVersion Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">10.0</WindowsTargetPlatformVersion> <WindowsTargetPlatformVersion Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">10.0.19041.0</WindowsTargetPlatformVersion>
<WindowsTargetPlatformVersion Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'">10.0.16299.0</WindowsTargetPlatformVersion> <WindowsTargetPlatformVersion Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'">10.0.16299.0</WindowsTargetPlatformVersion>
<WindowsTargetPlatformVersion Condition="'$(Configuration)|$(Platform)'=='Release|x64'">10.0</WindowsTargetPlatformVersion> <WindowsTargetPlatformVersion Condition="'$(Configuration)|$(Platform)'=='Release|x64'">10.0.19041.0</WindowsTargetPlatformVersion>
<QtMsBuild Condition="'$(QtMsBuild)'=='' OR !Exists('$(QtMsBuild)\qt.targets')">$(MSBuildProjectDirectory)\QtMsBuild</QtMsBuild> <QtMsBuild Condition="'$(QtMsBuild)'=='' OR !Exists('$(QtMsBuild)\qt.targets')">$(MSBuildProjectDirectory)\QtMsBuild</QtMsBuild>
</PropertyGroup> </PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'" Label="Configuration"> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType> <ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v143</PlatformToolset> <PlatformToolset>v140</PlatformToolset>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType> <ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v143</PlatformToolset> <PlatformToolset>v142</PlatformToolset>
<CharacterSet>NotSet</CharacterSet> </PropertyGroup>
</PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'" Label="Configuration">
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'" Label="Configuration"> <ConfigurationType>Application</ConfigurationType>
<ConfigurationType>Application</ConfigurationType> <PlatformToolset>v140</PlatformToolset>
<PlatformToolset>v143</PlatformToolset> </PropertyGroup>
</PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> <ConfigurationType>Application</ConfigurationType>
<ConfigurationType>Application</ConfigurationType> <PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset> </PropertyGroup>
<CharacterSet>NotSet</CharacterSet> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
</PropertyGroup> <ImportGroup Condition="Exists('$(QtMsBuild)\qt_defaults.props')">
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <Import Project="$(QtMsBuild)\qt_defaults.props" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt_defaults.props')"> </ImportGroup>
<Import Project="$(QtMsBuild)\qt_defaults.props" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'" Label="QtSettings">
</ImportGroup> <QtInstall>5.8_msvc2015</QtInstall>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'" Label="QtSettings"> <QtModules>core;gui;widgets</QtModules>
<QtInstall>5.15.2_msvc2019_64</QtInstall> <QtBuildConfig>debug</QtBuildConfig>
<QtModules>core;gui;widgets;network</QtModules> </PropertyGroup>
<QtBuildConfig>debug</QtBuildConfig> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="QtSettings">
</PropertyGroup> <QtInstall>$(DefaultQtVersion)</QtInstall>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="QtSettings"> <QtModules>core;gui;widgets</QtModules>
<QtInstall>$(DefaultQtVersion)</QtInstall> <QtBuildConfig>debug</QtBuildConfig>
<QtModules>core;gui;widgets;network</QtModules> </PropertyGroup>
<QtBuildConfig>debug</QtBuildConfig> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'" Label="QtSettings">
</PropertyGroup> <QtInstall>$(DefaultQtVersion)</QtInstall>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'" Label="QtSettings"> <QtModules>core;gui;widgets</QtModules>
<QtInstall>$(DefaultQtVersion)</QtInstall> <QtBuildConfig>release</QtBuildConfig>
<QtModules>core;gui;widgets</QtModules> </PropertyGroup>
<QtBuildConfig>release</QtBuildConfig> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="QtSettings">
</PropertyGroup> <QtInstall>$(DefaultQtVersion)</QtInstall>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="QtSettings"> <QtModules>core;gui;widgets</QtModules>
<QtInstall>$(DefaultQtVersion)</QtInstall> <QtBuildConfig>release</QtBuildConfig>
<QtModules>core;gui;widgets;network;core5compat</QtModules> </PropertyGroup>
<QtBuildConfig>release</QtBuildConfig> <Target Name="QtMsBuildNotFound" BeforeTargets="CustomBuild;ClCompile" Condition="!Exists('$(QtMsBuild)\qt.targets') or !Exists('$(QtMsBuild)\qt.props')">
</PropertyGroup> <Message Importance="High" Text="QtMsBuild: could not locate qt.targets, qt.props; project may not build correctly." />
<Target Name="QtMsBuildNotFound" BeforeTargets="CustomBuild;ClCompile" Condition="!Exists('$(QtMsBuild)\qt.targets') or !Exists('$(QtMsBuild)\qt.props')"> </Target>
<Message Importance="High" Text="QtMsBuild: could not locate qt.targets, qt.props; project may not build correctly." /> <ImportGroup Label="ExtensionSettings" />
</Target> <ImportGroup Label="Shared" />
<ImportGroup Label="ExtensionSettings" /> <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'">
<ImportGroup Label="Shared" /> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'"> <Import Project="$(QtMsBuild)\Qt.props" />
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup>
<Import Project="$(QtMsBuild)\Qt.props" /> <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
</ImportGroup> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> <Import Project="$(QtMsBuild)\Qt.props" />
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup>
<Import Project="$(QtMsBuild)\Qt.props" /> <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'">
</ImportGroup> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'"> <Import Project="$(QtMsBuild)\Qt.props" />
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup>
<Import Project="$(QtMsBuild)\Qt.props" /> <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
</ImportGroup> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> <Import Project="$(QtMsBuild)\Qt.props" />
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup>
<Import Project="$(QtMsBuild)\Qt.props" /> <PropertyGroup Label="UserMacros" />
</ImportGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'">
<PropertyGroup Label="UserMacros" /> <OutDir>$(SolutionDir)_bin\</OutDir>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'"> <IntDir>$(Configuration)\</IntDir>
<OutDir>$(SolutionDir)_bin\</OutDir> </PropertyGroup>
<IntDir>$(Configuration)\</IntDir> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
</PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> <OutDir>$(SolutionDir)_bin\</OutDir>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'"> <IntDir>$(Configuration)\</IntDir>
<OutDir>$(SolutionDir)_bin\</OutDir> </PropertyGroup>
<IntDir>$(Configuration)\</IntDir> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
</PropertyGroup> <PreBuildEvent>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <Command>xcopy /y "$(ProjectDir)_exp\*" "$(TargetDir)"</Command>
<PreBuildEvent> </PreBuildEvent>
<Command>xcopy /y "$(ProjectDir)_exp\*" "$(TargetDir)"</Command> <ClCompile>
</PreBuildEvent> <AdditionalOptions>/Zm1000</AdditionalOptions>
<ClCompile> </ClCompile>
<AdditionalOptions>/Zm1000</AdditionalOptions> </ItemDefinitionGroup>
</ClCompile> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
</ItemDefinitionGroup> <PreBuildEvent>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <Command>xcopy /y "$(ProjectDir)_exp\*" "$(TargetDir)"</Command>
<PreBuildEvent> </PreBuildEvent>
<Command>xcopy /y "$(ProjectDir)_exp\*" "$(TargetDir)"</Command> </ItemDefinitionGroup>
</PreBuildEvent> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile> <PreBuildEvent>
<AdditionalOptions>/Zm1000</AdditionalOptions> <Command>xcopy /y "$(ProjectDir)_exp\*" "$(TargetDir)"</Command>
</ClCompile> </PreBuildEvent>
<Link> </ItemDefinitionGroup>
<HeapCommitSize> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
</HeapCommitSize> <PreBuildEvent>
<HeapReserveSize> <Command>xcopy /y "$(ProjectDir)_exp\*" "$(TargetDir)"</Command>
</HeapReserveSize> </PreBuildEvent>
</Link> </ItemDefinitionGroup>
</ItemDefinitionGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'" Label="Configuration">
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <ClCompile>
<PreBuildEvent> <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
<Command>xcopy /y "$(ProjectDir)_exp\*" "$(TargetDir)"</Command> <MultiProcessorCompilation>true</MultiProcessorCompilation>
</PreBuildEvent> <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
</ItemDefinitionGroup> <Optimization>Disabled</Optimization>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PreBuildEvent> </ClCompile>
<Command>xcopy /y "$(ProjectDir)_exp\*" "$(TargetDir)"</Command> <Link>
</PreBuildEvent> <SubSystem>Windows</SubSystem>
</ItemDefinitionGroup> <GenerateDebugInformation>true</GenerateDebugInformation>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'" Label="Configuration"> </Link>
<ClCompile> </ItemDefinitionGroup>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<MultiProcessorCompilation>true</MultiProcessorCompilation> <ClCompile>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat> <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
<Optimization>Disabled</Optimization> <MultiProcessorCompilation>true</MultiProcessorCompilation>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
</ClCompile> <Optimization>Disabled</Optimization>
<Link> <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<SubSystem>Windows</SubSystem> </ClCompile>
<GenerateDebugInformation>true</GenerateDebugInformation> <Link>
</Link> <SubSystem>Windows</SubSystem>
</ItemDefinitionGroup> <GenerateDebugInformation>true</GenerateDebugInformation>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> </Link>
<ClCompile> </ItemDefinitionGroup>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'" Label="Configuration">
<MultiProcessorCompilation>true</MultiProcessorCompilation> <ClCompile>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat> <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
<Optimization>Disabled</Optimization> <MultiProcessorCompilation>true</MultiProcessorCompilation>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> <DebugInformationFormat>None</DebugInformationFormat>
</ClCompile> <Optimization>MaxSpeed</Optimization>
<Link> <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<SubSystem>Windows</SubSystem> </ClCompile>
<GenerateDebugInformation>true</GenerateDebugInformation> <Link>
</Link> <SubSystem>Windows</SubSystem>
</ItemDefinitionGroup> <GenerateDebugInformation>false</GenerateDebugInformation>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'" Label="Configuration"> </Link>
<ClCompile> </ItemDefinitionGroup>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<MultiProcessorCompilation>true</MultiProcessorCompilation> <ClCompile>
<DebugInformationFormat>None</DebugInformationFormat> <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
<Optimization>MaxSpeed</Optimization> <MultiProcessorCompilation>true</MultiProcessorCompilation>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> <DebugInformationFormat>None</DebugInformationFormat>
</ClCompile> <Optimization>MaxSpeed</Optimization>
<Link> <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<SubSystem>Windows</SubSystem> </ClCompile>
<GenerateDebugInformation>false</GenerateDebugInformation> <Link>
</Link> <SubSystem>Windows</SubSystem>
</ItemDefinitionGroup> <GenerateDebugInformation>false</GenerateDebugInformation>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> </Link>
<ClCompile> </ItemDefinitionGroup>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> <ItemGroup>
<MultiProcessorCompilation>true</MultiProcessorCompilation> <QtRcc Include="NameCreater.qrc" />
<DebugInformationFormat>None</DebugInformationFormat> <QtUic Include="NameCreater.ui" />
<Optimization>MaxSpeed</Optimization> <QtMoc Include="NameCreater.h" />
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> <ClCompile Include="NameCreater.cpp" />
</ClCompile> <ClCompile Include="main.cpp" />
<Link> </ItemGroup>
<SubSystem>Windows</SubSystem> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<GenerateDebugInformation>false</GenerateDebugInformation> <ImportGroup Condition="Exists('$(QtMsBuild)\qt.targets')">
</Link> <Import Project="$(QtMsBuild)\qt.targets" />
</ItemDefinitionGroup> </ImportGroup>
<ItemGroup> <ImportGroup Label="ExtensionTargets">
<ClCompile Include="BirthdayCreater.cpp" /> </ImportGroup>
<ClCompile Include="customlogo.cpp" />
<ClCompile Include="customlogo2.cpp" />
<ClCompile Include="HKHolderCreater.cpp" />
<ClCompile Include="NewFiveCreater.cpp" />
<ClCompile Include="OldFiveCreater.cpp" />
<ClCompile Include="TowelCreater.cpp" />
<QtRcc Include="NameCreater.qrc" />
<QtUic Include="customlogo.ui" />
<QtUic Include="customlogo2.ui" />
<QtUic Include="NameCreater.ui" />
<QtMoc Include="NameCreater.h" />
<ClCompile Include="FiveToSingle.cpp" />
<ClCompile Include="INameCreater.cpp" />
<ClCompile Include="NameCreater.cpp" />
<ClCompile Include="main.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="BirthdayCreater.h" />
<QtMoc Include="customlogo.h" />
<QtMoc Include="customlogo2.h" />
<ClInclude Include="def.h" />
<ClInclude Include="FiveToSingle.h" />
<ClInclude Include="HKHolderCreater.h" />
<ClInclude Include="INameCreater.h" />
<ClInclude Include="NewFiveCreater.h" />
<ClInclude Include="OldFiveCreater.h" />
<ClInclude Include="resource.h" />
<ClInclude Include="TowelCreater.h" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="NameCreater.rc" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.targets')">
<Import Project="$(QtMsBuild)\qt.targets" />
</ImportGroup>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project> </Project>

View File

@ -21,9 +21,6 @@
<UniqueIdentifier>{639EADAA-A684-42e4-A9AD-28FC9BCB8F7C}</UniqueIdentifier> <UniqueIdentifier>{639EADAA-A684-42e4-A9AD-28FC9BCB8F7C}</UniqueIdentifier>
<Extensions>ts</Extensions> <Extensions>ts</Extensions>
</Filter> </Filter>
<Filter Include="Creaters">
<UniqueIdentifier>{c0b8778b-3058-44d2-9adc-b902360289e6}</UniqueIdentifier>
</Filter>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<QtRcc Include="NameCreater.qrc"> <QtRcc Include="NameCreater.qrc">
@ -35,90 +32,13 @@
<QtMoc Include="NameCreater.h"> <QtMoc Include="NameCreater.h">
<Filter>Header Files</Filter> <Filter>Header Files</Filter>
</QtMoc> </QtMoc>
<ClCompile Include="NameCreater.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClCompile Include="main.cpp"> <ClCompile Include="main.cpp">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="FiveToSingle.cpp">
<Filter>Creaters</Filter>
</ClCompile>
<ClCompile Include="INameCreater.cpp">
<Filter>Creaters</Filter>
</ClCompile>
<ClCompile Include="OldFiveCreater.cpp">
<Filter>Creaters</Filter>
</ClCompile>
<ClCompile Include="NameCreater.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="BirthdayCreater.cpp">
<Filter>Creaters</Filter>
</ClCompile>
<ClCompile Include="TowelCreater.cpp">
<Filter>Creaters</Filter>
</ClCompile>
<ClCompile Include="NewFiveCreater.cpp">
<Filter>Creaters</Filter>
</ClCompile>
<ClCompile Include="HKHolderCreater.cpp">
<Filter>Creaters</Filter>
</ClCompile>
<ClCompile Include="customlogo.cpp">
<Filter>Creaters</Filter>
</ClCompile>
<ClCompile Include="customlogo2.cpp">
<Filter>Creaters</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="resource.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="FiveToSingle.h">
<Filter>Creaters</Filter>
</ClInclude>
<ClInclude Include="INameCreater.h">
<Filter>Creaters</Filter>
</ClInclude>
<ClInclude Include="OldFiveCreater.h">
<Filter>Creaters</Filter>
</ClInclude>
<ClInclude Include="BirthdayCreater.h">
<Filter>Creaters</Filter>
</ClInclude>
<ClInclude Include="TowelCreater.h">
<Filter>Creaters</Filter>
</ClInclude>
<ClInclude Include="NewFiveCreater.h">
<Filter>Creaters</Filter>
</ClInclude>
<ClInclude Include="HKHolderCreater.h">
<Filter>Creaters</Filter>
</ClInclude>
<ClInclude Include="def.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="NameCreater.rc">
<Filter>Resource Files</Filter>
</ResourceCompile>
</ItemGroup>
<ItemGroup>
<QtUic Include="customlogo.ui">
<Filter>Form Files</Filter>
</QtUic>
<QtUic Include="customlogo2.ui">
<Filter>Form Files</Filter>
</QtUic>
</ItemGroup>
<ItemGroup>
<QtMoc Include="customlogo.h">
<Filter>Creaters</Filter>
</QtMoc>
<QtMoc Include="customlogo2.h">
<Filter>Creaters</Filter>
</QtMoc>
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -1,39 +1,31 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LocalDebuggerWorkingDirectory>$(TargetDir)</LocalDebuggerWorkingDirectory> <LocalDebuggerWorkingDirectory>$(TargetDir)</LocalDebuggerWorkingDirectory>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LocalDebuggerWorkingDirectory>$(TargetDir)</LocalDebuggerWorkingDirectory> <LocalDebuggerWorkingDirectory>$(TargetDir)</LocalDebuggerWorkingDirectory>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LocalDebuggerWorkingDirectory>$(TargetDir)</LocalDebuggerWorkingDirectory> <LocalDebuggerWorkingDirectory>$(TargetDir)</LocalDebuggerWorkingDirectory>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LocalDebuggerWorkingDirectory>$(TargetDir)</LocalDebuggerWorkingDirectory> <LocalDebuggerWorkingDirectory>$(TargetDir)</LocalDebuggerWorkingDirectory>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtLastBackgroundBuild>2024-05-14T07:08:49.3700216Z</QtLastBackgroundBuild> <QtLastBackgroundBuild>2023-02-07T09:42:35.8095077Z</QtLastBackgroundBuild>
<QtTouchProperty> </PropertyGroup>
</QtTouchProperty> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="QtSettings">
</PropertyGroup> <QtLastBackgroundBuild>2022-02-09T21:34:52.5655210Z</QtLastBackgroundBuild>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="QtSettings"> </PropertyGroup>
<QtLastBackgroundBuild>2024-05-14T07:08:49.6936159Z</QtLastBackgroundBuild> <PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtTouchProperty> <QtLastBackgroundBuild>2022-02-09T21:34:53.9897137Z</QtLastBackgroundBuild>
</QtTouchProperty> </PropertyGroup>
</PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="QtSettings">
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <QtLastBackgroundBuild>2022-02-09T21:34:53.9897137Z</QtLastBackgroundBuild>
<QtLastBackgroundBuild>2024-05-14T07:08:49.8356144Z</QtLastBackgroundBuild> </PropertyGroup>
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="QtSettings">
<QtLastBackgroundBuild>2024-05-14T07:08:49.9726151Z</QtLastBackgroundBuild>
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
</Project> </Project>

View File

@ -1,144 +0,0 @@
#include "NewFiveCreater.h"
#include <QTextCodec>
#include <QTextStream>
#include <QDebug>
#include <QMessageBox>
#include <QDateTime>
static QString BG_SMAPLE_PATH = ":/NameCreater/resource/five/new_bg_sample.jpg";
static QString LABEL_BG_PATH_FORMAT = ":/NameCreater/resource/five/%1_%2.jpg";
static int LABEL_HIGHT_LIMIT = 350;
static QPoint LABEL_POS_START = QPoint(145, 55);
static int LABEL_POS_X_OFFSET = 323;
static QPoint NAME_OFFSET_START = QPoint(90, 335);
static QPoint NAME_OFFSET_REVERSE_START = QPoint(216, 1398);
static qreal NAME_TWO_WORD_OFFSET = 170;
static qreal NAME_THREE_WORD_OFFSET = 145;
static int MAX_LABEL_IN_PAPER = 10;
static int FONT_PIXEL_SIZE = 120;
NewFiveCreater::NewFiveCreater() : INameCreater()
{
}
NewFiveCreater::~NewFiveCreater()
{
}
QList<NameInfo_t> NewFiveCreater::getNameByFileContent(Name_Type_e type, const QByteArray& conetent)
{
QList<NameInfo_t> nameList;
QTextCodec* tc = QTextCodec::codecForName("Big5");
QString codec = tc->toUnicode(conetent.data());
QTextStream stream(&codec);
int row = 0;
while (!stream.atEnd())
{
NameInfo_t info;
QString line = stream.readLine();
QString name_tc = line;
QStringList csvList = name_tc.split(',');
QString name = csvList.at(0); //QString::fromLocal8Bit(csvList.at(0));
QString bg_type = csvList.at(1);//QString::fromLocal8Bit(csvList.at(1));
qDebug() << "row :" << row << " " << name << ", bg_type: " << bg_type;
if (name.compare("name") == 0) {
//pass first line
continue;
}
info.name1 = name;
info.bg_path = bg_type;
nameList.append(info);
row++;
}
return nameList;
}
void NewFiveCreater::generaImageFromCSV(Name_Type_e type, const QString& filename, const QByteArray& filecontent, const QFont& font, const QColor& font_color)
{
int export_times = 0;
QList<NameInfo_t> nameList = getNameByFileContent(type, filecontent);
if (nameList.isEmpty()) {
QMessageBox msgBox;
msgBox.setText(QString("Name is empty ! ").append(filename));
msgBox.exec();
}
QGraphicsScene scene;
scene.setBackgroundBrush(QBrush(QColor(255, 255, 255)));
QGraphicsView view(&scene);
int idx = 0;
foreach(auto name, nameList) {
if ((idx % MAX_LABEL_IN_PAPER) == 0) {
QGraphicsRectItem* bg_item = new QGraphicsRectItem(0, 0, BG_WIDTH, BG_HEIGHT);
bg_item->setBrush(QBrush(QColor(255, 255, 255)));
//QGraphicsPixmapItem* bg_item = QGraphicsPixmapItem(QPixmap(BG_SMAPLE_PATH));
scene.addItem(bg_item);
}
for (int l = 0; l < 5; l++) {
int col_index = idx % MAX_LABEL_IN_PAPER;
QString label_rel_path = LABEL_BG_PATH_FORMAT.arg(name.bg_path, QString::number(l + 1));
auto label_item = new QGraphicsPixmapItem(QPixmap(label_rel_path));
label_item->setPos(LABEL_POS_START.x() + LABEL_POS_X_OFFSET * col_index, LABEL_POS_START.y());
label_item->setOpacity(1);
scene.addItem(label_item);
for (int i = 0; i < 2; i++) {
int name_word_len = name.name1.count();
qreal two_word_y = (name_word_len == 2) ? NAME_TWO_WORD_OFFSET / 2.0 : 0;
qreal offset_y = (name_word_len == 2) ? NAME_TWO_WORD_OFFSET : NAME_THREE_WORD_OFFSET;
for (int w = 0; w < name_word_len; w++) {
QGraphicsTextItem* word_item = new QGraphicsTextItem(name.name1.at(w));
word_item->setFont(font);
word_item->setDefaultTextColor(font_color);
qreal _x = (i == 0) ? label_item->x() + NAME_OFFSET_START.x() : label_item->x() + NAME_OFFSET_REVERSE_START.x();
qreal _y = (i == 0) ? (label_item->y() + NAME_OFFSET_START.y() + two_word_y + offset_y * w) : (label_item->y() + NAME_OFFSET_REVERSE_START.y() - two_word_y - offset_y * w);
if (i == 1) word_item->setTransform(QTransform::fromScale(-1, -1));
word_item->setPos(_x, _y);
scene.addItem(word_item);
}
}
if ((idx % MAX_LABEL_IN_PAPER == MAX_LABEL_IN_PAPER - 1) || idx == nameList.count() * 5 - 1) {
QString date_str = QDateTime::currentDateTime().toString("MMddhhmm");
QString file_name = QString("Five_%2_%1.jpg").arg(QString::number(export_times + 1), date_str);
saveToImage(file_name, &scene);
export_times++;
scene.clear();
}
idx++;
}
}
QMessageBox msgBox;
msgBox.setText(QString().asprintf("Export Finshed. Count:%d", export_times));
msgBox.exec();
}

View File

@ -1,16 +0,0 @@
#pragma once
#include "INameCreater.h"
class NewFiveCreater :
public INameCreater
{
public:
NewFiveCreater();
~NewFiveCreater();
protected:
QList<NameInfo_t> getNameByFileContent(Name_Type_e type, const QByteArray& conetent);
public:
virtual void generaImageFromCSV(Name_Type_e type, const QString& filename, const QByteArray& filecontent, const QFont& font, const QColor& font_color);
};

View File

@ -1,152 +0,0 @@
#include "OldFiveCreater.h"
#include <QMessageBox>
#include <QTextCodec>
#include <QTextStream>
#include <QDebug>
#include <QRegularExpression>
#define BG_MIX_PATH ":/NameCreater/resource/background.jpg"
#define BG_BOY_PATH ":/NameCreater/resource/background_boy.jpg"
#define BG_GIRL_PATH ":/NameCreater/resource/background_girl.jpg"
static QPointF BOY_POS[] = {
QPointF(235, 387), QPointF(366, 1433),
QPointF(555, 387), QPointF(692, 1433),
QPointF(878, 387), QPointF(1014, 1433),
QPointF(1200, 387), QPointF(1337, 1433),
QPointF(1527, 387), QPointF(1663, 1433),
};
static int BOY_POS_COUNT = sizeof(BOY_POS) / sizeof(BOY_POS[0]);
static QPointF GIRL_POS[] = {
QPointF(1854, 387), QPointF(1987, 1433),
QPointF(2176, 387), QPointF(2314, 1433),
QPointF(2498, 387), QPointF(2635, 1433),
QPointF(2821, 387), QPointF(2958, 1433),
QPointF(3147, 387), QPointF(3285, 1433),
};
static int GIRL_POS_COUNT = sizeof(GIRL_POS) / sizeof(GIRL_POS[0]);
OldFiveCreater::OldFiveCreater():INameCreater()
{
}
OldFiveCreater::~OldFiveCreater()
{
}
QList<NameInfo_t> OldFiveCreater::getNameByFileContent(Name_Type_e type, const QByteArray& conetent)
{
QList<NameInfo_t> nameList;
QTextCodec* tc = QTextCodec::codecForName("Big5");
QString codec = tc->toUnicode(conetent.data());
QTextStream stream(&codec);
int row = 0;
while (!stream.atEnd())
{
NameInfo_t info;
QString line = stream.readLine();
QString name_tc = line;
QStringList csvList = name_tc.split(',');
QString name1 = csvList.at(0); //QString::fromLocal8Bit(csvList.at(0));
QString name2 = csvList.at(1);//QString::fromLocal8Bit(csvList.at(1));
QString type_str = csvList.last();//QString::fromLocal8Bit(csvList.last());
qDebug() << "row :" << row << " " << name1 << " " << name2;
if (name1.compare("name_1") == 0 || name2.compare("name_2") == 0) {
continue;
}
info.name1 = name1;
info.name2 = name2;
info.bg_type = type_str.contains(QRegularExpression("boy")) ? 1 : (type_str.contains(QRegularExpression("girl"))) ? 2 : 0;
nameList.append(info);
row++;
}
return nameList;
}
void OldFiveCreater::generaImageFromCSV(Name_Type_e type, const QString& filename, const QByteArray& filecontent, const QFont& font, const QColor& font_color)
{
int export_times = 0;
QList<NameInfo_t> nameList = getNameByFileContent(type, filecontent);
if (nameList.isEmpty()) {
QMessageBox msgBox;
msgBox.setText(QString("Name is empty ! ").append(filename));
msgBox.exec();
}
QGraphicsScene scene;
QGraphicsView view(&scene);
for (int n = 0; n < nameList.length(); n++) {
//msgBox.setText(QString().sprintf("Export: %d / %d", export_times, nameList.length()));
NameInfo_t name_info = nameList.at(n);
scene.clear();
QImage image((name_info.bg_type == 1) ? BG_BOY_PATH : (name_info.bg_type == 2) ? BG_GIRL_PATH : BG_MIX_PATH);
QGraphicsPixmapItem* bgItem = new QGraphicsPixmapItem(QPixmap::fromImage(image));
scene.addItem(bgItem);
for (int j = 0; j < 2; j++) {
int flag = j % 2;
QString name = (flag == 0) ? name_info.name1 : name_info.name2;
for (int i = 0; i < BOY_POS_COUNT; i++) {
qreal xscale, yscale;
xscale = yscale = (i % 2 == 1) ? -1 : 1;
QPointF pos = (flag == 0) ? BOY_POS[i] : GIRL_POS[i];
QGraphicsTextItem* textItem1 = new QGraphicsTextItem(name.mid(0, 1));
textItem1->setFont(font);
textItem1->setDefaultTextColor(font_color);
textItem1->setPos(pos);
textItem1->setTransform(QTransform::fromScale(xscale, yscale));
scene.addItem(textItem1);
QGraphicsTextItem* textItem2 = new QGraphicsTextItem(name.mid(1, 1));
textItem2->setFont(font);
textItem2->setDefaultTextColor(font_color);
textItem2->setPos(pos.x(), pos.y() + 148.0 * xscale);
textItem2->setTransform(QTransform::fromScale(xscale, yscale));
scene.addItem(textItem2);
QGraphicsTextItem* textItem3 = new QGraphicsTextItem(name.mid(2, 1));
textItem3->setFont(font);
textItem3->setDefaultTextColor(font_color);
textItem3->setPos(pos.x(), pos.y() + 294.0 * xscale);
textItem3->setTransform(QTransform::fromScale(xscale, yscale));
scene.addItem(textItem3);
}
}
//if (name_info.bg_type == 0) {
// view.show();
// break;
//}
QString file_name = QString("%1_%2_%3.jpg").arg(QString::number(export_times + 1), name_info.name1, name_info.name2);
saveToImage(file_name, &scene);
export_times++;
}
QMessageBox msgBox;
msgBox.setText(QString().asprintf("Export Finshed. Count:%d", export_times));
msgBox.exec();
}

View File

@ -1,15 +0,0 @@
#pragma once
#include "INameCreater.h"
class OldFiveCreater :
public INameCreater
{
public:
OldFiveCreater();
~OldFiveCreater();
protected:
QList<NameInfo_t> getNameByFileContent(Name_Type_e type, const QByteArray& conetent);
public:
virtual void generaImageFromCSV(Name_Type_e type, const QString& filename, const QByteArray& filecontent, const QFont& font, const QColor& font_color);
};

View File

@ -1,160 +0,0 @@
#include "TowelCreater.h"
#include <QTextCodec>
#include <QTextStream>
#include <QDebug>
#include <QMessageBox>
#include <QDateTime>
static QString LABEL_BG_PATH[] = { ":/NameCreater/resource/girl_bg.jpg",":/NameCreater/resource/boy_bg.jpg" };
static qreal LABEL_POS_X[] = { 250,1645,3300 };
static qreal LABEL_POS_Y_START = 120;
static qreal LABEL_POS_Y_DIFF = 315;
static qreal NAME_OFFSET_X[] = { 128, 715 };
static qreal NAME_OFFSET_Y = 38;
static qreal NAME_TWO_WORD_OFFSET = 25;
static int MAX_LABEL_IN_PAPER = 15;
static int LABEL_MAX_NUM_PER_COL = 7;
static int FONT_PIXEL_SIZE = 240;
static qreal LABEL_HIGHT_LIMIT = 350;
static int TEXT_WIDTH = 800;
TowelCreater::TowelCreater()
{
}
TowelCreater::~TowelCreater()
{
}
QList<NameInfo_t> TowelCreater::getNameByFileContent(Name_Type_e type, const QByteArray& conetent)
{
QList<NameInfo_t> nameList;
QTextCodec* tc = QTextCodec::codecForName("Big5");
QString codec = tc->toUnicode(conetent.data());
QTextStream stream(&codec);
int row = 0;
while (!stream.atEnd())
{
QString line = stream.readLine();
QString name_tc = line;
QStringList csvList = name_tc.split(',');
QString name = csvList.at(0); //QString::fromLocal8Bit(csvList.at(0));
QString bg_type = csvList.at(1);//QString::fromLocal8Bit(csvList.at(1));
int num = csvList.last().toInt();//QString::fromLocal8Bit(csvList.last());
qDebug() << "row :" << row << " " << name << ", bg_type: " << bg_type << "Count: " <<QString::number(num);
if (name.compare("name") == 0) {
//pass first line
continue;
}
else {
for (int i = 0; i < num; ++i) {
NameInfo_t info;
info.name1 = name;
info.bg_type = (bg_type.compare("g") == 0) ? 0 : 1;
nameList.append(info);
}
}
row++;
}
return nameList;
}
void TowelCreater::generaImageFromCSV(Name_Type_e type, const QString& filename, const QByteArray& filecontent, const QFont& font, const QColor& font_color)
{
int export_times = 0;
QList<NameInfo_t> nameList = getNameByFileContent(type, filecontent);
if (nameList.isEmpty()) {
QMessageBox msgBox;
msgBox.setText(QString("Name is empty ! ").append(filename));
msgBox.exec();
}
QGraphicsScene scene;
scene.setBackgroundBrush(QBrush(QColor(255, 255, 255)));
QGraphicsView view(&scene);
for (int idx = 0; idx < nameList.length(); idx++) {
NameInfo_t name = nameList.at(idx);
if ((idx % MAX_LABEL_IN_PAPER) == 0) {
QGraphicsRectItem* bg_item = new QGraphicsRectItem(0, 0, BG_WIDTH, BG_HEIGHT);
bg_item->setBrush(QBrush(QColor(255, 255, 255)));
//QGraphicsPixmapItem* bg_item = QGraphicsPixmapItem(QPixmap(BG_SMAPLE_PATH));
scene.addItem(bg_item);
}
int col_idx = (idx % MAX_LABEL_IN_PAPER) / LABEL_MAX_NUM_PER_COL;
int col_num = (idx % MAX_LABEL_IN_PAPER) % LABEL_MAX_NUM_PER_COL;
QString label_rel_path = LABEL_BG_PATH[name.bg_type];
if (col_idx < 2) {
QGraphicsPixmapItem* label_item = new QGraphicsPixmapItem(QPixmap(label_rel_path));
label_item->setPos(LABEL_POS_X[col_idx], LABEL_POS_Y_START + LABEL_POS_Y_DIFF * col_num);
label_item->setOpacity(1);
scene.addItem(label_item);
for (int i = 0; i < 2; ++i) {
qreal offset_x = name.name1.count() == 2 ? NAME_TWO_WORD_OFFSET : 0;
QGraphicsTextItem* name_item = new QGraphicsTextItem(name.name1);
name_item->setTextWidth(TEXT_WIDTH);
name_item->setFont(font);
name_item->setDefaultTextColor(font_color);
name_item->setPos(label_item->x() + NAME_OFFSET_X[i] + offset_x, label_item->y() + NAME_OFFSET_Y);
scene.addItem(name_item);
}
}
else {
QGraphicsPixmapItem* label_item = new QGraphicsPixmapItem(QPixmap(label_rel_path));
label_item->setRotation(90);
label_item->setPos(LABEL_POS_X[col_idx], LABEL_POS_Y_START + LABEL_POS_Y_DIFF * col_num);
label_item->setOpacity(1);
scene.addItem(label_item);
for (int i = 0; i < 2; ++i) {
qreal offset_x = name.name1.count() == 2 ? NAME_TWO_WORD_OFFSET : 0;
QGraphicsTextItem* name_item = new QGraphicsTextItem(name.name1);
name_item->setTextWidth(TEXT_WIDTH);
name_item->setFont(font);
name_item->setDefaultTextColor(font_color);
name_item->setRotation(90);
name_item->setPos(label_item->x() - NAME_OFFSET_Y, label_item->y() + NAME_OFFSET_X[i] + offset_x);
scene.addItem(name_item);
}
}
if ((idx % MAX_LABEL_IN_PAPER == MAX_LABEL_IN_PAPER - 1) || idx == nameList.count() - 1) {
QString date_str = QDateTime::currentDateTime().toString("MMddhhmm");
QString file_name = QString("Towel_%2_%1.jpg").arg(QString::number(export_times + 1), date_str);
saveToImage(file_name, &scene);
export_times++;
scene.clear();
}
}
}

View File

@ -1,14 +0,0 @@
#pragma once
#include "INameCreater.h"
class TowelCreater : public INameCreater
{
public:
TowelCreater();
~TowelCreater();
protected:
QList<NameInfo_t> getNameByFileContent(Name_Type_e type, const QByteArray& conetent);
public:
virtual void generaImageFromCSV(Name_Type_e type, const QString& filename, const QByteArray& filecontent, const QFont& font, const QColor& font_color);
};

Binary file not shown.

Binary file not shown.

View File

@ -1,4 +0,0 @@
name_1,name_2,bg_type
ÄŹ´éśŁ,ÄŹ¤_ŽŚ,mix
łŻĽKŽŚ,łŻŹfżÎ,boy
§őŤBŞä,§őŤBŞä,girl
1 name_1 name_2 bg_type
2 ÄŹ´éśŁ ÄŹ¤_ŽŚ mix
3 łŻĽKŽŚ łŻŹfżÎ boy
4 §őŤBŞä §őŤBŞä girl

View File

@ -1,32 +0,0 @@
name_1,eng_name,bg_type
¦ã¤p¨F,Elsa,1
®L¤p,Ana,2
§dÐw»Ý,Jolin,3
¤¨¤p,Elsa,4
¦ã¤p,Elsa,5
®L¤p,Elsa,g
§dÐw,Elsa,b
¤¨¤p,Elsa,y
¦ã¤p,Elsa,r
®L¤p,Elsa,g
¦ã¤p,Elsa,21
®L¤p¤Ñ,Elsa,22
¦ã¤p¨F,Elsa,23
®L¤p,Elsa,24
§dÐw»Ý,Elsa,10
³¯¦u§Ó,ShouChih,11
³¯«Å´r,Shirly,12
§d¨Î¹a,Elsa,13
³¯¦u§Ó,Elsa,14
³¯«Å´r,Elsa,15
§d¨Î¹a,Jolin,16
³¯¦u§Ó,Elsa,17
³¯«Å´r,Elsa,18
§d¨Î¹a,Elsa,19
¦ã¤p¨F,Elsa,25
¦ã¤p¨F,Elsa,26
¦ã¤p¨F,Elsa,27
¦ã¤p¨F,Elsa,28
¦ã¤p¨F,Elsa,29
¦ã¤p¨F,Elsa,30
¦ã¤p¨F,Elsa,1
1 name_1 eng_name bg_type
2 ¦ã¤p¨F Elsa 1
3 ®L¤p Ana 2
4 §dÐw»Ý Jolin 3
5 ¤¨¤p Elsa 4
6 ¦ã¤p Elsa 5
7 ®L¤p Elsa g
8 §dÐw Elsa b
9 ¤¨¤p Elsa y
10 ¦ã¤p Elsa r
11 ®L¤p Elsa g
12 ¦ã¤p Elsa 21
13 ®L¤p¤Ñ Elsa 22
14 ¦ã¤p¨F Elsa 23
15 ®L¤p Elsa 24
16 §dÐw»Ý Elsa 10
17 ³¯¦u§Ó ShouChih 11
18 ³¯«Å´r Shirly 12
19 §d¨Î¹a Elsa 13
20 ³¯¦u§Ó Elsa 14
21 ³¯«Å´r Elsa 15
22 §d¨Î¹a Jolin 16
23 ³¯¦u§Ó Elsa 17
24 ³¯«Å´r Elsa 18
25 §d¨Î¹a Elsa 19
26 ¦ã¤p¨F Elsa 25
27 ¦ã¤p¨F Elsa 26
28 ¦ã¤p¨F Elsa 27
29 ¦ã¤p¨F Elsa 28
30 ¦ã¤p¨F Elsa 29
31 ¦ã¤p¨F Elsa 30
32 ¦ã¤p¨F Elsa 1

View File

@ -1,21 +0,0 @@
name,bg_type
林禮諾,kb
陳宣愉,kb
陳宣愉,kg
陳宣愉,kg
陳宣愉,nb
陳宣愉,nb
李能安,ng
陳宣愉,ng
陳宣愉,g
李能安,b
陳守志,nb
陳志,ng
陳守志,g
陳守志,g
陳志,b
吳佳鈴,b
吳佳鈴,ng
吳鈴,kg
吳鈴,kb
吳鈴,nb
1 name bg_type
2 林禮諾 kb
3 陳宣愉 kb
4 陳宣愉 kg
5 陳宣愉 kg
6 陳宣愉 nb
7 陳宣愉 nb
8 李能安 ng
9 陳宣愉 ng
10 陳宣愉 g
11 李能安 b
12 陳守志 nb
13 陳志 ng
14 陳守志 g
15 陳守志 g
16 陳志 b
17 吳佳鈴 b
18 吳佳鈴 ng
19 吳鈴 kg
20 吳鈴 kb
21 吳鈴 nb

View File

@ -1,61 +0,0 @@
name
曹瑀樂
謝沛希
何采璇
余梓鳳
陳品臻
邱媺涵
翁菀妏
鄭欣妮
林昱澔
林和緻
王芃宥
蔡曉蓉
郭乃甄
詹斐晴
游子萱
陳玟如
黃子芩
張凱晴
陳珈琳
曾靖媞
黃芷璿
吳子弘
黃珮綺
何飛翰
林筱芙
汪詩軒
蘇竹君
蔡芊薏
陳品蓁
林聿安
曾逸星
鄭亞兒
陳尚青
呂惠玉
陳品勳
鍾承羲
簡君恬
翁承毅
陳婕熙
柯彥辰
陳星月
張宸菲
林秭安
王宇安
林采睫
吳宇晴
王芷甯
巫少杰
易庭安
陳宥博
黃乙蔓
何盈萱
楊蕙慈
林珆安
吳秀一
鄭金柔
鄭碩軒
白浚緯
紀艾德
辛翊僑
1 name
2 曹瑀樂
3 謝沛希
4 何采璇
5 余梓鳳
6 陳品臻
7 邱媺涵
8 翁菀妏
9 鄭欣妮
10 林昱澔
11 林和緻
12 王芃宥
13 蔡曉蓉
14 郭乃甄
15 詹斐晴
16 游子萱
17 陳玟如
18 黃子芩
19 張凱晴
20 陳珈琳
21 曾靖媞
22 黃芷璿
23 吳子弘
24 黃珮綺
25 何飛翰
26 林筱芙
27 汪詩軒
28 蘇竹君
29 蔡芊薏
30 陳品蓁
31 林聿安
32 曾逸星
33 鄭亞兒
34 陳尚青
35 呂惠玉
36 陳品勳
37 鍾承羲
38 簡君恬
39 翁承毅
40 陳婕熙
41 柯彥辰
42 陳星月
43 張宸菲
44 林秭安
45 王宇安
46 林采睫
47 吳宇晴
48 王芷甯
49 巫少杰
50 易庭安
51 陳宥博
52 黃乙蔓
53 何盈萱
54 楊蕙慈
55 林珆安
56 吳秀一
57 鄭金柔
58 鄭碩軒
59 白浚緯
60 紀艾德
61 辛翊僑

View File

@ -1,5 +0,0 @@
name,bg_type,num
³¯¦u§Ó,b,16
§d¨Î¹a,g,13
«Å´r,b,1
«Å´r,g,2
1 name bg_type num
2 ³¯¦u§Ó b 16
3 §d¨Î¹a g 13
4 «Å´r b 1
5 «Å´r g 2

View File

@ -1,21 +0,0 @@
name,bg_type
§d¦t°a,a
Á¤_¹ä,m
Á¤_¹ä,g
Á¤_¹ä,b
Á¤_¹ä,w
²ÀÇ,r
¸â¨°ºÓ,pg
¸â¨°ºÓ,y
¸â¨°ºÓ,b
¸â¨°ºÓ,p
¸â¨°ºÓ,g
³¯§Ó,st
³¯¦u§Ó,r
³¯¦u§Ó,p
³¯§Ó,r
§d¨Î¹a,y
§d¨Î¹a,y
§d¹a,y
§d¹a,p
§d¹a,st
1 name bg_type
2 §d¦t°a a
3 Á¤_¹ä m
4 Á¤_¹ä g
5 Á¤_¹ä b
6 Á¤_¹ä w
7 ²ÀÇ r
8 ¸â¨°ºÓ pg
9 ¸â¨°ºÓ y
10 ¸â¨°ºÓ b
11 ¸â¨°ºÓ p
12 ¸â¨°ºÓ g
13 ³¯§Ó st
14 ³¯¦u§Ó r
15 ³¯¦u§Ó p
16 ³¯§Ó r
17 §d¨Î¹a y
18 §d¨Î¹a y
19 §d¹a y
20 §d¹a p
21 §d¹a st

View File

@ -1,21 +0,0 @@
name,bg_type
Á¤_¹ä,a
Á¤_¹ä,pg
Á¤_¹ä,r
Á¤_¹ä,r
Á¤_¹ä,r
¸â¨°ºÓ,sn
¸â¨°ºÓ,co
¸â¨°ºÓ,ol
¸â¨°ºÓ,m
¸â¨°ºÓ,y
¸â¨°ºÓ,b
³¯§Ó,g
³¯¦u§Ó,m
³¯¦u§Ó,p
³¯§Ó,r
§d¨Î¹a,co
§d¨Î¹a,ol
§d¹a,sn
§d¹a,st
§d¹a,b
1 name bg_type
2 Á¤_¹ä a
3 Á¤_¹ä pg
4 Á¤_¹ä r
5 Á¤_¹ä r
6 Á¤_¹ä r
7 ¸â¨°ºÓ sn
8 ¸â¨°ºÓ co
9 ¸â¨°ºÓ ol
10 ¸â¨°ºÓ m
11 ¸â¨°ºÓ y
12 ¸â¨°ºÓ b
13 ³¯§Ó g
14 ³¯¦u§Ó m
15 ³¯¦u§Ó p
16 ³¯§Ó r
17 §d¨Î¹a co
18 §d¨Î¹a ol
19 §d¹a sn
20 §d¹a st
21 §d¹a b

View File

@ -1,21 +0,0 @@
name,eng_name,bg_type
Á¤_¹ä,Alice,r
Á¤_¹ä,Alice,r
Á¤_¹ä,Alice,r
Á¤_¹ä,Alice,r
Á¤_¹ä,Alice,r
¸â¨°ºÓ,George,sn
¸â¨°ºÓ,George,co
¸â¨°ºÓ,George,ol
¸â¨°ºÓ,George,m
¸â¨°ºÓ,George,y
¸â¨°ºÓ,George,b
³¯§Ó,Jolin,g
³¯¦u§Ó,Chirs,m
³¯¦u§Ó,xxxxxxxdgde,p
³¯§Ó,gfdgadgdd,r
§d¨Î¹a,Jolin,co
§d¨Î¹a,Jolin,ol
§d¹a,Jessica,sn
§d¹a,Arial,st
§d¹a,Arial,b
1 name eng_name bg_type
2 Á¤_¹ä Alice r
3 Á¤_¹ä Alice r
4 Á¤_¹ä Alice r
5 Á¤_¹ä Alice r
6 Á¤_¹ä Alice r
7 ¸â¨°ºÓ George sn
8 ¸â¨°ºÓ George co
9 ¸â¨°ºÓ George ol
10 ¸â¨°ºÓ George m
11 ¸â¨°ºÓ George y
12 ¸â¨°ºÓ George b
13 ³¯§Ó Jolin g
14 ³¯¦u§Ó Chirs m
15 ³¯¦u§Ó xxxxxxxdgde p
16 ³¯§Ó gfdgadgdd r
17 §d¨Î¹a Jolin co
18 §d¨Î¹a Jolin ol
19 §d¹a Jessica sn
20 §d¹a Arial st
21 §d¹a Arial b

View File

@ -1,21 +0,0 @@
eng_name,bg_type
Churchill,m
Alice,r
Alice,r
Alice,r
Alice,r
George,sn
George,co
George,ol
George,m
George,y
George,b
Jolin,g
Chirs,m
xxxxxxxdgde,p
gfdgadgdd,r
Jolin,co
Jolin,ol
Jessica,sn
Arial,st
Arial,b
1 eng_name bg_type
2 Churchill m
3 Alice r
4 Alice r
5 Alice r
6 Alice r
7 George sn
8 George co
9 George ol
10 George m
11 George y
12 George b
13 Jolin g
14 Chirs m
15 xxxxxxxdgde p
16 gfdgadgdd r
17 Jolin co
18 Jolin ol
19 Jessica sn
20 Arial st
21 Arial b

View File

@ -1,443 +0,0 @@
#include "customlogo.h"
#include "ui_customlogo.h"
#include "QFileDialog"
#include <QMessageBox>
#include <QDateTime>
#include <QTextCodec>
#include <QTextStream>
#include <QBuffer>
#include <QDebug>
#include <QColorDialog>
#define DEMO_BG_PATH ":/NameCreater/resource/custom_logo/bg_1.jpg"
#define KEY_DEMO_BG_ITEM 10
#define KEY_WORD_ITEM 100
#define KEY_WORD_ITEM_X_POS 101
#define KEY_WORD_ITEM_Y_POS 102
#define DEMO_WORD_UNICODE "\u92ea\u96dc\u5152"
static QPointF BG_POS_START = QPointF(159, 61);
static QPointF BG_POS_ROT_START = QPointF(900, 2094);
static qreal BG_WIDTH_OFFSET = 320;
static int NAME_COUNT_IN_PAGE = 12;
static QPointF NAME_OFFSET_START = QPointF(79, 365);
static qreal EACH_WORD_OFFSET = 142;
static QColor FONT_COLOR = QColor(0, 0, 0);
static QColorDialog* s_colorDialog = nullptr;
class QGraphicsCloneTextItem : public QGraphicsTextItem {
public:
QGraphicsCloneTextItem(const QString& text, QGraphicsItem* parent = nullptr) :
QGraphicsTextItem(text, parent) {
}
QGraphicsCloneTextItem* clone(QGraphicsItem* parent = nullptr) const {
QGraphicsCloneTextItem* newItem = new QGraphicsCloneTextItem(toPlainText(), parent);
newItem->setFont(font());
newItem->setPos(pos());
newItem->setDefaultTextColor(defaultTextColor());
return newItem;
}
};
CustomLogo::CustomLogo(QFont* font, QDialog* parent) :
QDialog(parent),
ui(new Ui::CustomLogo),
customFont(font),
fontColor(QColor(0, 0, 0))
{
ui->setupUi(this);
x_adjust_offset = y_adjust_offset = 0;
onSliderValueChanged(0);
connect(ui->load_bg_btn, &QPushButton::released, this, &CustomLogo::onClickedBtn);
connect(ui->load_list_btn, &QPushButton::released, this, &CustomLogo::onClickedBtn);
connect(ui->color_btn, &QPushButton::released, this, &CustomLogo::onClickedBtn);
connect(ui->reset_adjust_btn, &QPushButton::released, this, &CustomLogo::onClickedBtn);
connect(ui->double_checkbox, &QCheckBox::clicked, this, &CustomLogo::onCheckboxClicked);
connect(ui->x_adjust_slider, &QSlider::valueChanged, this, &CustomLogo::onSliderValueChanged);
connect(ui->y_adjust_slider, &QSlider::valueChanged, this, &CustomLogo::onSliderValueChanged);
QFont _f(*font);
_f.setPixelSize(20);
QPalette palette = ui->color_label->palette();
palette.setColor(QPalette::WindowText, fontColor);
ui->color_label->setPalette(palette);
ui->color_label->setFont(_f);
ui->color_btn->setFont(_f);
ui->double_checkbox->setFont(_f);
ui->hor_label->setFont(_f);
ui->vel_label->setFont(_f);
demo_scene.setBackgroundBrush(QBrush(QColor(255, 255, 255)));
ui->demo_graphicsView->setScene(&demo_scene);
QPixmap def_demo_bg(DEMO_BG_PATH);
createDemoGraphicItemBG(def_demo_bg);
}
CustomLogo::~CustomLogo()
{
delete ui;
}
void CustomLogo::loadBGFromFile()
{
auto fileContentReady = [this](const QString& fileName, const QByteArray& fileContent) {
if (fileName.isEmpty()) {
// No file was selected
}
else {
QPixmap pix;
if (pix.loadFromData(fileContent, "JPG")) {
//ui->display_label->setPixmap(pix);
createDemoGraphicItemBG(pix);
}
else {
qDebug() << "Data content not image format";
}
}
};
QFileDialog::getOpenFileContent("Image (*.jpg)", fileContentReady);
}
void CustomLogo::createDemoGraphicItemBG(const QPixmap& img)
{
demo_scene.clear();
bool isReverse = ui->double_checkbox->isChecked();
QGraphicsPixmapItem* name_bgItem = new QGraphicsPixmapItem(img);
name_bgItem->setData(KEY_DEMO_BG_ITEM, KEY_DEMO_BG_ITEM);
name_bgItem->setPos(10, 10);
demo_scene.addItem(name_bgItem);
QGraphicsRectItem* name_rectItem = NULL, * name_reverse_rectItem = NULL;
name_rectItem = new QGraphicsRectItem(QRectF(0, 0, name_bgItem->boundingRect().width(), name_bgItem->boundingRect().height() / 2), name_bgItem);
name_rectItem->setPen(QPen(QColor(0, 0, 0, 255)));
if (isReverse) {
name_reverse_rectItem = new QGraphicsRectItem(name_rectItem->rect(), name_bgItem);
name_reverse_rectItem->setPen(QPen(QColor(0, 0, 0, 0)));
name_reverse_rectItem->setPos(name_bgItem->boundingRect().width(), name_bgItem->boundingRect().height());
name_reverse_rectItem->setRotation(180);
}
QString name = QString(DEMO_WORD_UNICODE);
int name_len = name.length();
QPointF pos = NAME_OFFSET_START;
qreal y_offset = 0;
if (name_len == 2) {
pos.setY(pos.y() + 65.0);
y_offset = 55;
}
for (int k = 0; k < name_len; k++) {
QGraphicsCloneTextItem* textItem = new QGraphicsCloneTextItem(name.mid(k, 1), name_rectItem);
textItem->setFont(*customFont);
textItem->setDefaultTextColor(fontColor);
qreal _posX = (name_rectItem->boundingRect().width() / 2 - textItem->boundingRect().width() / 2);
qreal _posY = (pos.y()) + k * (EACH_WORD_OFFSET + y_offset);
qDebug() << "Name num:" << QString::number(k) << "PosY:" << QString::number(_posY);
textItem->setData(KEY_WORD_ITEM, QVariant(KEY_WORD_ITEM));
textItem->setData(KEY_WORD_ITEM_X_POS, QVariant(_posX));
textItem->setData(KEY_WORD_ITEM_Y_POS, QVariant(_posY));
textItem->setPos(_posX+x_adjust_offset, _posY+y_adjust_offset);
if (name_reverse_rectItem) {
QGraphicsCloneTextItem* _ti = ((QGraphicsCloneTextItem*)textItem)->clone(name_reverse_rectItem);
_ti->setData(KEY_WORD_ITEM, QVariant(KEY_WORD_ITEM));
_ti->setData(KEY_WORD_ITEM_X_POS, QVariant(_posX));
_ti->setData(KEY_WORD_ITEM_Y_POS, QVariant(_posY));
}
}
}
void CustomLogo::updateDemoGraphicItemBG() {
foreach(QGraphicsItem * item, demo_scene.items()) {
QVariant v = item->data(KEY_WORD_ITEM);
if (v.toInt() == KEY_WORD_ITEM) {
((QGraphicsTextItem*)item)->setDefaultTextColor(fontColor);
qreal _ori_x = item->data(KEY_WORD_ITEM_X_POS).toReal();
qreal _ori_y = item->data(KEY_WORD_ITEM_Y_POS).toReal();
item->setPos(_ori_x + x_adjust_offset, _ori_y + y_adjust_offset);
}
}
}
void CustomLogo::loadListFromFile()
{
auto fileContentReady = [this](const QString& fileName, const QByteArray& fileContent) {
if (fileName.isEmpty()) {
// No file was selected
}
else {
QList<NameInfo_t> nameList = getNameByFileContent(Name_zh, fileContent);
if (!nameList.isEmpty()) {
qDebug() << "List size: " << QString::number(nameList.count());
gerneraImageFromList(nameList, Name_zh);
}
else {
qDebug() << "List is empty!!";
}
}
};
QFileDialog::getOpenFileContent("CSV file (*.csv)", fileContentReady);
}
void CustomLogo::gerneraImageFromList(const QList<NameInfo_t>& nameList, Name_Type_e type)
{
int export_times = 0;
QGraphicsScene scene;
scene.setBackgroundBrush(QBrush(QColor(255, 255, 255)));
QGraphicsView view(&scene);
switch (type) {
case Name_zh:
{
for (int n = 0; n < nameList.length(); n++) {
int idx = n % NAME_COUNT_IN_PAGE;
NameInfo_t name_info = nameList.at(n);
if (idx == 0) {
QGraphicsRectItem* bg_item = new QGraphicsRectItem(0, 0, BG_WIDTH, BG_HEIGHT);
bg_item->setBrush(QBrush(QColor(255, 255, 255)));
scene.addItem(bg_item);
}
QPixmap _bg;
foreach(QGraphicsItem * item, demo_scene.items()) {
QVariant v = item->data(KEY_DEMO_BG_ITEM);
if (v.toInt() == KEY_DEMO_BG_ITEM) {
_bg = ((QGraphicsPixmapItem*)item)->pixmap().copy();
break;
}
}
QGraphicsPixmapItem* name_bgItem = new QGraphicsPixmapItem(_bg);
bool rot = (idx == 10 || idx == 11);
name_bgItem->setRotation(rot ? -90 : 0);
qreal item_pos_x = rot ? BG_POS_ROT_START.x() : BG_POS_START.x() + idx * BG_WIDTH_OFFSET;
qreal item_pos_y = rot ? BG_POS_ROT_START.y() + (idx - 10) * BG_WIDTH_OFFSET : BG_POS_START.y();
name_bgItem->setPos(item_pos_x, item_pos_y);
scene.addItem(name_bgItem);
if (name_info.name1.isEmpty()) {
QMessageBox msgBox;
msgBox.setText(QString().asprintf("Name is Empty at %d", export_times + 1));
msgBox.exec();
}
QGraphicsRectItem* name_rectItem = new QGraphicsRectItem(QRectF(0, 0, name_bgItem->boundingRect().width(), name_bgItem->boundingRect().height() / 2), name_bgItem);
name_rectItem->setPen(QPen(QColor(0, 0, 0, 0)));
QString name = name_info.name1;
int name_len = name.length();
QPointF pos = NAME_OFFSET_START;
qreal y_offset = 0;
if (name_len == 2) {
pos.setY(pos.y() + 65.0);
y_offset = 55;
}
for (int k = 0; k < name_len; k++) {
QGraphicsCloneTextItem* textItem = new QGraphicsCloneTextItem(name.mid(k, 1), name_rectItem);
textItem->setFont(*customFont);
textItem->setDefaultTextColor(fontColor);
qreal _posX = name_rectItem->boundingRect().width() / 2 - textItem->boundingRect().width() / 2;
qreal _posY = pos.y() + k * (EACH_WORD_OFFSET + y_offset);
qDebug() << "Name num:" << QString::number(k) << "PosY:" << QString::number(_posY);
textItem->setPos(_posX+x_adjust_offset, _posY+y_adjust_offset);
}
if (ui->double_checkbox->isChecked()) {
QGraphicsRectItem* name_reverse_rectItem = new QGraphicsRectItem(name_rectItem->rect(), name_bgItem);
name_reverse_rectItem->setPen(QPen(QColor(0, 0, 0, 0)));
name_reverse_rectItem->setPos(name_bgItem->boundingRect().width(), name_bgItem->boundingRect().height());
foreach(auto item, name_rectItem->childItems()) {
QGraphicsCloneTextItem* _ti = ((QGraphicsCloneTextItem*)item)->clone(name_reverse_rectItem);
}
name_reverse_rectItem->setRotation(180);
qDebug() << "name_rect item child count:" << name_rectItem->childItems().size();
}
bool is_export_page = ((idx + 1) % NAME_COUNT_IN_PAGE == 0);
if (is_export_page || n == nameList.count() - 1) {
QString date_str = QDateTime::currentDateTime().toString("MMddhhmm");
QString file_name = QString("Signal_%2_%1.jpg").arg(QString::number(export_times + 1), date_str);
//saveToImage(file_name, &scene);
INameCreater().saveToImage(file_name, &scene);
export_times++;
scene.clear();
}
}
}
break;
default:
break;
}
QMessageBox msgBox;
msgBox.setText(QString().asprintf("Export Finshed. Count:%d", export_times));
msgBox.exec();
}
QList<NameInfo_t> CustomLogo::getNameByFileContent(Name_Type_e type, const QByteArray& conetent)
{
QList<NameInfo_t> nameList;
QString codec_text = ui->codec_comboBox->currentText();
QTextCodec* tc = QTextCodec::codecForName(codec_text.toStdString().c_str()); // can also using "Utf8" or "Big5" codec
QString codec = tc->toUnicode(conetent.data());
QTextStream stream(&codec);
int row = 0;
while (!stream.atEnd())
{
NameInfo_t info;
QString line = stream.readLine();
QString name_tc = line;
QStringList csvList = name_tc.split(',');
QString name, eng_name, bg_type;
switch (type) {
case Name_zh:
name = csvList.at(0);
break;
default:
break;
}
qDebug() << "row :" << row << " " << name;
if (name.compare("name_1") == 0 || name.compare("name") == 0 ||
eng_name.compare("eng_name") == 0) {
//pass first line
continue;
}
info.name1 = name;
nameList.append(info);
row++;
}
return nameList;
}
void CustomLogo::onColorSelected(const QColor& color)
{
qDebug() << "color accept: r:" << color.red() << ", g:" << color.green() <<", b:" << color.blue();
fontColor = QColor(color);
QPalette palette = ui->color_label->palette();
palette.setColor(QPalette::WindowText, fontColor);
ui->color_label->setPalette(palette);
updateDemoGraphicItemBG();
}
void CustomLogo::onSliderValueChanged(int value)
{
auto slider = QObject::sender();
if (slider == ui->x_adjust_slider) {
x_adjust_offset = value;
}
else if (slider == ui->y_adjust_slider) {
y_adjust_offset = value;
}
ui->x_adjust_label->setText(QString("X: %1").arg(QString::number(x_adjust_offset)));
ui->y_adjust_label->setText(QString("Y: %1").arg(QString::number(y_adjust_offset)));
updateDemoGraphicItemBG();
}
void CustomLogo::onCheckboxClicked(bool click)
{
(void)click;
foreach(QGraphicsItem * item, demo_scene.items()) {
QVariant v = item->data(KEY_DEMO_BG_ITEM);
if (v.toInt() == KEY_DEMO_BG_ITEM) {
QPixmap _bg = ((QGraphicsPixmapItem*)item)->pixmap().copy();
createDemoGraphicItemBG(_bg);
break;
}
}
}
void CustomLogo::onClickedBtn() {
auto sender = (QPushButton*)QObject::sender();
if (sender == ui->load_bg_btn) {
loadBGFromFile();
}
else if (sender == ui->load_list_btn) {
loadListFromFile();
}
else if (sender == ui->color_btn) {
if (s_colorDialog == nullptr) {
s_colorDialog = new QColorDialog(ui->color_label->palette().color(QPalette::WindowText), this);
connect(s_colorDialog, &QColorDialog::colorSelected, this, &CustomLogo::onColorSelected);
}
s_colorDialog->open();
}
else if (sender == ui->reset_adjust_btn) {
ui->x_adjust_slider->setValue(0);
ui->y_adjust_slider->setValue(0);
}
}

View File

@ -1,47 +0,0 @@
#ifndef CUSTOMLOGO_H
#define CUSTOMLOGO_H
#include <QDialog>
#include "QFont"
#include "INameCreater.h"
namespace Ui {
class CustomLogo;
}
class CustomLogo : public QDialog
{
Q_OBJECT
public:
explicit CustomLogo(QFont *customFont, QDialog *parent = nullptr);
~CustomLogo();
private:
Ui::CustomLogo *ui;
QFont* customFont;
QColor fontColor;
QGraphicsScene demo_scene;
qreal x_adjust_offset, y_adjust_offset;
void loadBGFromFile();
void createDemoGraphicItemBG(const QPixmap& img);
void updateDemoGraphicItemBG();
void loadListFromFile();
void gerneraImageFromList(const QList<NameInfo_t>& nameList, Name_Type_e type);
protected:
QList<NameInfo_t> getNameByFileContent(Name_Type_e type, const QByteArray& conetent);
private Q_SLOTS:
void onClickedBtn();
void onColorSelected(const QColor& color);
void onSliderValueChanged(int value);
void onCheckboxClicked(bool click);
};
#endif // CUSTOMLOGO_H

View File

@ -1,241 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>CustomLogo</class>
<widget class="QWidget" name="CustomLogo">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>545</width>
<height>653</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<widget class="QPushButton" name="load_bg_btn">
<property name="geometry">
<rect>
<x>340</x>
<y>70</y>
<width>141</width>
<height>51</height>
</rect>
</property>
<property name="text">
<string>Load BG</string>
</property>
</widget>
<widget class="QPushButton" name="load_list_btn">
<property name="geometry">
<rect>
<x>340</x>
<y>160</y>
<width>141</width>
<height>51</height>
</rect>
</property>
<property name="text">
<string>Load List</string>
</property>
</widget>
<widget class="QCheckBox" name="double_checkbox">
<property name="geometry">
<rect>
<x>370</x>
<y>240</y>
<width>91</width>
<height>51</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>20</pointsize>
</font>
</property>
<property name="text">
<string>雙面</string>
</property>
</widget>
<widget class="QWidget" name="horizontalLayoutWidget">
<property name="geometry">
<rect>
<x>340</x>
<y>310</y>
<width>160</width>
<height>80</height>
</rect>
</property>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QPushButton" name="color_btn">
<property name="text">
<string>選色</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="color_label">
<property name="font">
<font>
<pointsize>18</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<property name="text">
<string>顏色</string>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QGraphicsView" name="demo_graphicsView">
<property name="geometry">
<rect>
<x>10</x>
<y>50</y>
<width>311</width>
<height>561</height>
</rect>
</property>
</widget>
<widget class="QFrame" name="frame">
<property name="geometry">
<rect>
<x>330</x>
<y>410</y>
<width>201</width>
<height>141</height>
</rect>
</property>
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<layout class="QFormLayout" name="formLayout">
<item row="1" column="0">
<widget class="QLabel" name="hor_label">
<property name="text">
<string>水平</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QSlider" name="x_adjust_slider">
<property name="minimum">
<number>-100</number>
</property>
<property name="maximum">
<number>100</number>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="invertedAppearance">
<bool>false</bool>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QSlider" name="y_adjust_slider">
<property name="minimum">
<number>-120</number>
</property>
<property name="maximum">
<number>120</number>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="vel_label">
<property name="text">
<string>垂直</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLabel" name="x_adjust_label">
<property name="text">
<string>X</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QLabel" name="y_adjust_label">
<property name="text">
<string>Y</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="4" column="1">
<widget class="QPushButton" name="reset_adjust_btn">
<property name="text">
<string>Reset</string>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="horizontalLayoutWidget_2">
<property name="geometry">
<rect>
<x>10</x>
<y>10</y>
<width>311</width>
<height>41</height>
</rect>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<widget class="QLabel" name="label">
<property name="maximumSize">
<size>
<width>80</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string>Codec:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="codec_comboBox">
<item>
<property name="text">
<string>Big5</string>
</property>
</item>
<item>
<property name="text">
<string>Utf8</string>
</property>
</item>
</widget>
</item>
</layout>
</widget>
</widget>
<resources>
<include location="NameCreater.qrc"/>
</resources>
<connections/>
</ui>

View File

@ -1,231 +0,0 @@
#include "customlogo2.h"
#include "ui_customlogo2.h"
#include "def.h"
#include <QMessageBox>
#include <QDateTime>
#include <QTextCodec>
#include <QTextStream>
#include <QBuffer>
#include <QDebug>
#include <QFontDatabase>
#include <QFileDialog>
//#define BG_DEMO_PATH ":/NameCreater/resource/custom_logo/demo_2.jpg"
#define BG_DEMO_PATH ":/NameCreater/resource/custom_logo/bg_2.jpg"
#define FONT_PATH ":/NameCreater/_exp/Ubuntu-Medium.ttf"
static QPoint BG_START_POS(20, 100);
static QPoint BG_ROT_START_POS(2080, 880);
static int BG_POS_COUNT = 12;
customlogo2::customlogo2(QFont *font, QDialog*parent)
: QDialog(parent)
, ui(new Ui::customlogo2)
, zhFont(font)
{
ui->setupUi(this);
connect(ui->loadcsv_btn, &QPushButton::released, this,&customlogo2::OnClickedBtn);
// read ubuntu font
QFile font_file(FONT_PATH);
if (!font_file.open(QIODevice::ReadOnly)) {
QMessageBox msgBox;
msgBox.setText("Can not load font file!" + QString(FONT_PATH));
msgBox.exec();
font_file.close();
}
int id = QFontDatabase::addApplicationFontFromData(font_file.readAll());
QString font_families = QFontDatabase::applicationFontFamilies(id).at(0);
enFont = QFont(font_families);
enFont.setPixelSize(60);
// set zh font size
zhFont->setPixelSize(120);
}
customlogo2::~customlogo2()
{
delete ui;
}
void customlogo2::OnClickedBtn(){
QPushButton *sender = (QPushButton*)QObject::sender();
if(sender == ui->loadcsv_btn){
loadListFromFile();
}
}
void customlogo2::loadListFromFile()
{
auto fileContentReady = [this](const QString& fileName, const QByteArray& fileContent) {
if (fileName.isEmpty()) {
// No file was selected
}
else {
QList<NameInfo_t> nameList = getNameByFileContent(Name_zh, fileContent);
if (!nameList.isEmpty()) {
qDebug() << "List size: "<< QString::number(nameList.count());
gerneraImageFromList(nameList, Name_zh);
}
else {
qDebug() << "List is empty!!";
}
}
};
QFileDialog::getOpenFileContent("CSV file (*.csv)", fileContentReady);
}
QList<NameInfo_t> customlogo2::getNameByFileContent(Name_Type_e type, const QByteArray& conetent)
{
QList<NameInfo_t> nameList;
QTextCodec* tc = QTextCodec::codecForName("Utf8");
QString codec = tc->toUnicode(conetent.data());
QTextStream stream(&codec);
int row = 0;
while (!stream.atEnd())
{
NameInfo_t info;
QString line = stream.readLine();
QString name_tc = line;
QStringList csvList = name_tc.split(',');
QString name, eng_name;
switch (type) {
case Name_zh:
{
int n = 1;
name = csvList.at(0);
while(n < csvList.count()){
if(n==2)eng_name.append(",");
eng_name.append(csvList.at(n));
n++;
}
eng_name.replace("\"","");
}
break;
default:
break;
}
qDebug() << "row :" << row << " " << name << " eng: "<<eng_name;
if (name.compare("name_1") == 0 || name.compare("name") == 0 ||
eng_name.compare("eng_name") == 0 ) {
//pass first line
continue;
}
info.name1 = name;
info.name_eng = eng_name;
nameList.append(info);
row++;
}
return nameList;
}
void customlogo2::gerneraImageFromList(const QList<NameInfo_t>& nameList, Name_Type_e type)
{
int export_times = 0;
QGraphicsScene scene;
scene.setBackgroundBrush(QBrush(QColor(255, 255, 255)));
QGraphicsView view(&scene);
QRectF itemRect(0, 0, 880, 280);
QColor fontColor(33,142,188);
switch (type) {
case Name_zh:
{
for (int n = 0; n < nameList.length(); n++) {
int idx = n % BG_POS_COUNT;
NameInfo_t name_info = nameList.at(n);
if (idx == 0) {
QGraphicsRectItem* bg_item = new QGraphicsRectItem(0, 0, BG_HEIGHT,BG_WIDTH);
bg_item->setBrush(QBrush(QColor(255, 255, 255)));
scene.addItem(bg_item);
}
QGraphicsPixmapItem* name_bgItem = new QGraphicsPixmapItem(QPixmap(BG_DEMO_PATH));
bool rot = (idx == 10 || idx == 11);
name_bgItem->setRotation(rot ? 90 : 0);
if (!rot)
name_bgItem->setPos(BG_START_POS.x(), BG_START_POS.y() + (name_bgItem->boundingRect().height()+30)*idx);
else
name_bgItem->setPos(BG_ROT_START_POS.x()+ (name_bgItem->boundingRect().height()+30)*(idx-10), BG_ROT_START_POS.y());
scene.addItem(name_bgItem);
if (name_info.name1.isEmpty()) {
QMessageBox msgBox;
msgBox.setText(QString().asprintf("Name is Empty at %d", export_times + 1));
msgBox.exec();
}
QString name = name_info.name1;
QGraphicsTextItem* textItem = new QGraphicsTextItem(name, name_bgItem);
QFont _font = QFont(*zhFont);
_font.setLetterSpacing(QFont::PercentageSpacing, 110);
textItem->setFont(_font);
textItem->setDefaultTextColor(fontColor);
textItem->setPos(20+(itemRect.width() - textItem->boundingRect().width())/2,42);
QString name_en = name_info.name_eng;
QGraphicsTextItem* textItem_en = new QGraphicsTextItem(name_en, name_bgItem);
textItem_en->setFont(enFont);
textItem_en->setDefaultTextColor(fontColor);
textItem_en->setPos(20+(itemRect.width() - textItem_en->boundingRect().width())/2,170);
bool is_export_page = ((idx + 1) % BG_POS_COUNT == 0);
if (is_export_page || n == nameList.count() - 1) {
QString date_str = QDateTime::currentDateTime().toString("MMddhhmm");
QString file_name = QString("Signal_%2_%1.jpg").arg(QString::number(export_times + 1), date_str);
INameCreater().saveToImage(file_name, &scene);
export_times++;
scene.clear();
}
}
}
break;
default:
break;
}
QMessageBox msgBox;
msgBox.setText(QString().asprintf("Export Finshed. Count:%d", export_times));
msgBox.exec();
}

View File

@ -1,37 +0,0 @@
#ifndef CUSTOMLOGO2_H
#define CUSTOMLOGO2_H
#include <QDialog>
#include "INameCreater.h"
#include "QFont"
namespace Ui {
class customlogo2;
}
class customlogo2 : public QDialog
{
Q_OBJECT
public:
explicit customlogo2(QFont *font , QDialog*parent = nullptr);
~customlogo2();
private:
Ui::customlogo2 *ui;
QFont *zhFont,enFont;
void loadListFromFile();
void gerneraImageFromList(const QList<NameInfo_t>& nameList, Name_Type_e type);
protected:
QList<NameInfo_t> getNameByFileContent(Name_Type_e type, const QByteArray& conetent);
private Q_SLOTS:
void OnClickedBtn();
};
#endif // CUSTOMLOGO2_H

View File

@ -1,28 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>customlogo2</class>
<widget class="QWidget" name="customlogo2">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>338</width>
<height>182</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QPushButton" name="loadcsv_btn">
<property name="text">
<string>Load CSV</string>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections/>
</ui>

View File

@ -1,7 +0,0 @@
#ifndef DEF_H
#define DEF_H
#define VERSION "v2.10.3"
#endif // DEF_H

View File

@ -1,14 +0,0 @@
//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by NameCreater.rc
// Next default values for new objects
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 101
#define _APS_NEXT_COMMAND_VALUE 40001
#define _APS_NEXT_CONTROL_VALUE 1001
#define _APS_NEXT_SYMED_VALUE 101
#endif
#endif

Binary file not shown.

Before

Width:  |  Height:  |  Size: 219 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 279 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 143 KiB

After

Width:  |  Height:  |  Size: 134 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 123 KiB

After

Width:  |  Height:  |  Size: 124 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 145 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 146 KiB

After

Width:  |  Height:  |  Size: 135 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 176 KiB

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 322 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 266 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 239 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 228 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 158 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 225 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 224 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 348 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 290 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 239 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 89 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 323 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 381 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 904 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 100 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 189 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 167 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 135 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 149 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 180 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 177 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 223 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 322 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 266 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 239 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 228 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 158 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 225 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 224 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 348 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 290 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 239 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 164 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 146 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 137 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Some files were not shown because too many files have changed in this diff Show More