@jjlmoya/utils-converters 1.18.0 → 1.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/tests/seo_parity.test.ts +60 -0
- package/src/tool/pngAJpg/i18n/de.ts +40 -40
- package/src/tool/pngAJpg/i18n/en.ts +99 -32
- package/src/tool/pngAJpg/i18n/fr.ts +95 -22
- package/src/tool/pngAJpg/i18n/id.ts +40 -40
- package/src/tool/pngAJpg/i18n/it.ts +40 -40
- package/src/tool/pngAJpg/i18n/ja.ts +80 -84
- package/src/tool/pngAJpg/i18n/ko.ts +80 -84
- package/src/tool/pngAJpg/i18n/nl.ts +40 -40
- package/src/tool/pngAJpg/i18n/pl.ts +40 -40
- package/src/tool/pngAJpg/i18n/pt.ts +40 -40
- package/src/tool/pngAJpg/i18n/ru.ts +80 -84
- package/src/tool/pngAJpg/i18n/sv.ts +40 -40
- package/src/tool/pngAJpg/i18n/tr.ts +40 -40
- package/src/tool/pngAJpg/i18n/zh.ts +80 -84
|
@@ -21,25 +21,21 @@ const ui: ImageConverterUI = {
|
|
|
21
21
|
|
|
22
22
|
const faq: PngAJpgLocaleContent['faq'] = [
|
|
23
23
|
{
|
|
24
|
-
question:
|
|
25
|
-
answer:
|
|
26
|
-
'従来のツールとは異なり、当社のユーティリティはファイルを完全にブラウザ内で処理します。画像が他人のハードドライブに触れることはありません。データの完全な支配権とプライバシーを保証します。',
|
|
24
|
+
"question": "なぜローカルのPNG-JPG変換器を選ぶべきですか?",
|
|
25
|
+
"answer": "一般的なオンラインツールと異なり、当サービスは画像処理をすべてブラウザ内で行います。外部サーバーにファイルが送信されないため、データプライバシーが完全に保護されます。"
|
|
27
26
|
},
|
|
28
27
|
{
|
|
29
|
-
question:
|
|
30
|
-
answer:
|
|
31
|
-
'PNGは、ロゴや透明度を必要とする要素に理想的です。一方、JPGは写真やウェブバナーのゴールドスタンダードであり、ファイルサイズを大幅に削減できるため、サイトの読み込み速度を劇的に向上させます。',
|
|
28
|
+
"question": "JPGとPNG、どちらのフォーマットが最適ですか?",
|
|
29
|
+
"answer": "PNGは透明背景やロゴに最適です。一方、JPGは圧縮率が高くファイルサイズが大幅に小さくなるため、写真やWebバナー、SNS投稿に最適です。"
|
|
32
30
|
},
|
|
33
31
|
{
|
|
34
|
-
question:
|
|
35
|
-
answer:
|
|
36
|
-
'HTML5のCanvas機能を活用しています。ブラウザが不可視の仮想キャンバス上に画像を再現し、透明部分を白で塗りつぶしてから、即座にダウンロード可能なバイトストリームを生成します。',
|
|
32
|
+
"question": "サーバーなしでの技術的変換の仕組みは?",
|
|
33
|
+
"answer": "HTML5 Canvas技術を使用しています。ブラウザが非表示の仮想キャンバスにPNGを描画し、透明部分を白で塗りつぶした上でJPEGバイトストリームを出力します。"
|
|
37
34
|
},
|
|
38
35
|
{
|
|
39
|
-
question:
|
|
40
|
-
answer:
|
|
41
|
-
|
|
42
|
-
},
|
|
36
|
+
"question": "機密文書や企業データの変換は安全ですか?",
|
|
37
|
+
"answer": "はい、非常に安全です。処理はすべてブラウザのRAM内で行われ、タブを閉じるとデータは完全に消去されます。"
|
|
38
|
+
}
|
|
43
39
|
];
|
|
44
40
|
|
|
45
41
|
const howTo: PngAJpgLocaleContent['howTo'] = [
|
|
@@ -59,112 +55,112 @@ const howTo: PngAJpgLocaleContent['howTo'] = [
|
|
|
59
55
|
|
|
60
56
|
const seo: PngAJpgLocaleContent['seo'] = [
|
|
61
57
|
{
|
|
62
|
-
type:
|
|
63
|
-
text:
|
|
64
|
-
level: 2
|
|
58
|
+
"type": "title",
|
|
59
|
+
"text": "PNGからJPGへの変換コンバーター:画像最適化ガイド",
|
|
60
|
+
"level": 2
|
|
65
61
|
},
|
|
66
62
|
{
|
|
67
|
-
type:
|
|
68
|
-
html:
|
|
63
|
+
"type": "paragraph",
|
|
64
|
+
"html": "デジタルデザインとWeb開発において効率性は非常に重要です。PNG形式は透過機能と無劣化圧縮が特徴ですが、ファイルサイズが大きくなりがちです。Webサイトの表示速度を高速化するにはPNGからJPGへの変換が最適です。"
|
|
69
65
|
},
|
|
70
66
|
{
|
|
71
|
-
type:
|
|
72
|
-
text:
|
|
73
|
-
level: 3
|
|
67
|
+
"type": "title",
|
|
68
|
+
"text": "JPGとPNGの比較",
|
|
69
|
+
"level": 3
|
|
74
70
|
},
|
|
75
71
|
{
|
|
76
|
-
type:
|
|
77
|
-
html:
|
|
72
|
+
"type": "paragraph",
|
|
73
|
+
"html": "用途に応じて最適なフォーマットを選択しましょう。PNGはロゴやテキストを含むグラフィック向けですが、ファイル容量は大きくなります。"
|
|
78
74
|
},
|
|
79
75
|
{
|
|
80
|
-
type:
|
|
81
|
-
html:
|
|
76
|
+
"type": "paragraph",
|
|
77
|
+
"html": "JPGは写真やWebバナーに最適な形式で、人間が認識しにくい視覚情報を圧縮して軽量化を実現します。"
|
|
82
78
|
},
|
|
83
79
|
{
|
|
84
|
-
type:
|
|
85
|
-
text:
|
|
86
|
-
level: 3
|
|
80
|
+
"type": "title",
|
|
81
|
+
"text": "ローカル変換とクラウド変換の比較",
|
|
82
|
+
"level": 3
|
|
87
83
|
},
|
|
88
84
|
{
|
|
89
|
-
type:
|
|
90
|
-
items: [
|
|
85
|
+
"type": "comparative",
|
|
86
|
+
"items": [
|
|
91
87
|
{
|
|
92
|
-
title:
|
|
93
|
-
description:
|
|
94
|
-
icon:
|
|
95
|
-
pointIcon:
|
|
96
|
-
points: [
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
]
|
|
88
|
+
"title": "クラウド型コンバーター",
|
|
89
|
+
"description": "外部サーバーに画像をアップロードして処理する一般的なツール。",
|
|
90
|
+
"icon": "mdi:cloud-upload",
|
|
91
|
+
"pointIcon": "mdi:close-circle-outline",
|
|
92
|
+
"points": [
|
|
93
|
+
"通信レイテンシの発生",
|
|
94
|
+
"プライバシー流出のリスク",
|
|
95
|
+
"ファイル容量制限",
|
|
96
|
+
"広告や追跡スクリプト"
|
|
97
|
+
]
|
|
102
98
|
},
|
|
103
99
|
{
|
|
104
|
-
title:
|
|
105
|
-
description:
|
|
106
|
-
icon:
|
|
107
|
-
highlight: true,
|
|
108
|
-
points: [
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
]
|
|
114
|
-
}
|
|
115
|
-
]
|
|
100
|
+
"title": "当ツールのローカル構造",
|
|
101
|
+
"description": "ブラウザのHTML5 Canvas技術を利用した直接処理。",
|
|
102
|
+
"icon": "mdi:laptop-mac",
|
|
103
|
+
"highlight": true,
|
|
104
|
+
"points": [
|
|
105
|
+
"通信なしの超高速処理",
|
|
106
|
+
"完全なプライバシー(送信0バイト)",
|
|
107
|
+
"ファイル容量制限なし",
|
|
108
|
+
"クリーンなインターフェース"
|
|
109
|
+
]
|
|
110
|
+
}
|
|
111
|
+
]
|
|
116
112
|
},
|
|
117
113
|
{
|
|
118
|
-
type:
|
|
119
|
-
text:
|
|
120
|
-
level: 3
|
|
114
|
+
"type": "title",
|
|
115
|
+
"text": "ローカル技術変換の仕組み",
|
|
116
|
+
"level": 3
|
|
121
117
|
},
|
|
122
118
|
{
|
|
123
|
-
type:
|
|
124
|
-
html:
|
|
119
|
+
"type": "paragraph",
|
|
120
|
+
"html": "画像をサーバーに送信せずに変換できる理由は、最新のブラウザ機能にあります。ファイルを選択すると、メモリ上のBlobデータが作成され、非表示のHTML5 Canvasに描画されます。"
|
|
125
121
|
},
|
|
126
122
|
{
|
|
127
|
-
type:
|
|
128
|
-
html:
|
|
123
|
+
"type": "paragraph",
|
|
124
|
+
"html": "JPGは透過度(アルファチャンネル)をサポートしていないため、背景を白色で合成してからJPEGのバイトストリームを生成し、ローカルに直接保存します。"
|
|
129
125
|
},
|
|
130
126
|
{
|
|
131
|
-
type:
|
|
132
|
-
title:
|
|
133
|
-
html:
|
|
127
|
+
"type": "tip",
|
|
128
|
+
"title": "SEOパフォーマンス向上",
|
|
129
|
+
"html": "大きなPNG画像を軽量なJPGに変換することで、WebサイトのLCP指標やPageSpeedスコアを瞬時に改善できます。"
|
|
134
130
|
},
|
|
135
131
|
{
|
|
136
|
-
type:
|
|
137
|
-
text:
|
|
138
|
-
level: 3
|
|
132
|
+
"type": "title",
|
|
133
|
+
"text": "企業・機密データのセキュリティ",
|
|
134
|
+
"level": 3
|
|
139
135
|
},
|
|
140
136
|
{
|
|
141
|
-
type:
|
|
142
|
-
html:
|
|
137
|
+
"type": "paragraph",
|
|
138
|
+
"html": "金融や医療、法律の専門家にとって外部サイトへの画像アップロードはリスクを伴います。当ツールはタブを閉じると全データが消失するため安心です。"
|
|
143
139
|
},
|
|
144
140
|
{
|
|
145
|
-
type:
|
|
146
|
-
text:
|
|
147
|
-
level: 3
|
|
141
|
+
"type": "title",
|
|
142
|
+
"text": "出力フォーマットの互換性",
|
|
143
|
+
"level": 3
|
|
148
144
|
},
|
|
149
145
|
{
|
|
150
|
-
type:
|
|
151
|
-
icon:
|
|
152
|
-
items: [
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
]
|
|
146
|
+
"type": "list",
|
|
147
|
+
"icon": "mdi:check-circle",
|
|
148
|
+
"items": [
|
|
149
|
+
"Windows, macOS, iOS, Androidの標準ビューア",
|
|
150
|
+
"SNSプラットフォーム(Instagram, X, Facebook)",
|
|
151
|
+
"オフィスソフト(Word, PowerPoint)",
|
|
152
|
+
"CMS(WordPress, Shopify)"
|
|
153
|
+
]
|
|
158
154
|
},
|
|
159
155
|
{
|
|
160
|
-
type:
|
|
161
|
-
text:
|
|
162
|
-
level: 3
|
|
156
|
+
"type": "title",
|
|
157
|
+
"text": "まとめ",
|
|
158
|
+
"level": 3
|
|
163
159
|
},
|
|
164
160
|
{
|
|
165
|
-
type:
|
|
166
|
-
html:
|
|
167
|
-
}
|
|
161
|
+
"type": "paragraph",
|
|
162
|
+
"html": "このコンバーターは高速性とセキュリティを両立した技術的ソリューションです。"
|
|
163
|
+
}
|
|
168
164
|
];
|
|
169
165
|
|
|
170
166
|
|
|
@@ -21,25 +21,21 @@ const ui: ImageConverterUI = {
|
|
|
21
21
|
|
|
22
22
|
const faq: PngAJpgLocaleContent['faq'] = [
|
|
23
23
|
{
|
|
24
|
-
question:
|
|
25
|
-
answer:
|
|
26
|
-
'기존 도구와 달리, 우리의 유틸리티는 브라우저 내에서 파일을 완전히 처리합니다. 사용자의 이미지는 타인의 하드 드라이브에 절대 닿지 않으므로, 데이터의 완전한 주권과 개인정보 보호를 보장합니다.',
|
|
24
|
+
"question": "왜 로컬 PNG-JPG 변환기를 선택해야 하나요?",
|
|
25
|
+
"answer": "일반적인 온라인 변환기와 달리 모든 이미지를 브라우저 내부에서 처리합니다. 외부 서버로 파일이 전송되지 않아 데이터 보안이 완벽하게 유지됩니다."
|
|
27
26
|
},
|
|
28
27
|
{
|
|
29
|
-
question:
|
|
30
|
-
answer:
|
|
31
|
-
'PNG는 로고나 투명도가 필요한 요소에 이상적입니다. 하지만 JPG는 사진 및 웹 배너의 골드 표준이며, 훨씬 작은 파일 크기를 달성하여 사이트 로딩 속도를 획기적으로 향상시킵니다.',
|
|
28
|
+
"question": "JPG와 PNG 중 어떤 포맷이 적합한가요?",
|
|
29
|
+
"answer": "PNG는 투명 배경과 로고에 최적화되어 있습니다. JPG는 압축률이 높아 파일 용량이 훨씬 작으므로 웹사이트 사진이나 배너에 적합합니다."
|
|
32
30
|
},
|
|
33
31
|
{
|
|
34
|
-
question:
|
|
35
|
-
answer:
|
|
36
|
-
'우리는 HTML5 Canvas의 힘을 사용합니다. 브라우저는 투명한 가상 캔버스에 이미지를 재현하고, 투명한 부분을 흰색으로 채운 뒤, 즉시 다운로드 가능한 바이트 스트림을 생성합니다.',
|
|
32
|
+
"question": "서버 업로드 없는 기술적 변환 원리는 무엇인가요?",
|
|
33
|
+
"answer": "HTML5 Canvas 기술을 이용합니다. 브라우저가 투명 캔버스에 이미지를 그리고 투명 영역을 흰색으로 채운 후 JPG 바이트 스트림을 생성합니다."
|
|
37
34
|
},
|
|
38
35
|
{
|
|
39
|
-
question:
|
|
40
|
-
answer:
|
|
41
|
-
|
|
42
|
-
},
|
|
36
|
+
"question": "기밀 문서 및 기업 데이터에 안전한가요?",
|
|
37
|
+
"answer": "네, 매우 안전합니다. 모든 데이터는 브라우저 메모리에만 존재하며 탭을 닫으면 즉시 완전히 삭제됩니다."
|
|
38
|
+
}
|
|
43
39
|
];
|
|
44
40
|
|
|
45
41
|
const howTo: PngAJpgLocaleContent['howTo'] = [
|
|
@@ -59,112 +55,112 @@ const howTo: PngAJpgLocaleContent['howTo'] = [
|
|
|
59
55
|
|
|
60
56
|
const seo: PngAJpgLocaleContent['seo'] = [
|
|
61
57
|
{
|
|
62
|
-
type:
|
|
63
|
-
text:
|
|
64
|
-
level: 2
|
|
58
|
+
"type": "title",
|
|
59
|
+
"text": "PNG에서 JPG로 변환기: 이미지 최적화 가이드",
|
|
60
|
+
"level": 2
|
|
65
61
|
},
|
|
66
62
|
{
|
|
67
|
-
type:
|
|
68
|
-
html:
|
|
63
|
+
"type": "paragraph",
|
|
64
|
+
"html": "웹사이트 속도를 높이고 파일 용량을 줄이기 위한 PNG 대 JPG 변환 가이드입니다."
|
|
69
65
|
},
|
|
70
66
|
{
|
|
71
|
-
type:
|
|
72
|
-
text:
|
|
73
|
-
level: 3
|
|
67
|
+
"type": "title",
|
|
68
|
+
"text": "JPG 대 PNG 선택",
|
|
69
|
+
"level": 3
|
|
74
70
|
},
|
|
75
71
|
{
|
|
76
|
-
type:
|
|
77
|
-
html:
|
|
72
|
+
"type": "paragraph",
|
|
73
|
+
"html": "PNG는 투명 배경과 로고에 적합하며, JPG는 사진과 웹 배너에 최적화된 고압축 용량을 제공합니다."
|
|
78
74
|
},
|
|
79
75
|
{
|
|
80
|
-
type:
|
|
81
|
-
html:
|
|
76
|
+
"type": "paragraph",
|
|
77
|
+
"html": "웹사이트 로딩 속도를 향상시키려면 이미지 용량을 경량화하는 것이 필수적입니다."
|
|
82
78
|
},
|
|
83
79
|
{
|
|
84
|
-
type:
|
|
85
|
-
text:
|
|
86
|
-
level: 3
|
|
80
|
+
"type": "title",
|
|
81
|
+
"text": "로컬 방식 대 클라우드 방식 비교",
|
|
82
|
+
"level": 3
|
|
87
83
|
},
|
|
88
84
|
{
|
|
89
|
-
type:
|
|
90
|
-
items: [
|
|
85
|
+
"type": "comparative",
|
|
86
|
+
"items": [
|
|
91
87
|
{
|
|
92
|
-
title:
|
|
93
|
-
description:
|
|
94
|
-
icon:
|
|
95
|
-
pointIcon:
|
|
96
|
-
points: [
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
]
|
|
88
|
+
"title": "클라우드 변환기",
|
|
89
|
+
"description": "서버에 파일을 업로드하여 처리하는 방식.",
|
|
90
|
+
"icon": "mdi:cloud-upload",
|
|
91
|
+
"pointIcon": "mdi:close-circle-outline",
|
|
92
|
+
"points": [
|
|
93
|
+
"네트워크 지연 발생",
|
|
94
|
+
"개인정보 유출 위험",
|
|
95
|
+
"용량 제한",
|
|
96
|
+
"광고"
|
|
97
|
+
]
|
|
102
98
|
},
|
|
103
99
|
{
|
|
104
|
-
title:
|
|
105
|
-
description:
|
|
106
|
-
icon:
|
|
107
|
-
highlight: true,
|
|
108
|
-
points: [
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
]
|
|
114
|
-
}
|
|
115
|
-
]
|
|
100
|
+
"title": "자사 로컬 변환기",
|
|
101
|
+
"description": "웹 브라우저 내부에서 직접 변환하는 방식.",
|
|
102
|
+
"icon": "mdi:laptop-mac",
|
|
103
|
+
"highlight": true,
|
|
104
|
+
"points": [
|
|
105
|
+
"즉각적인 변환 속도",
|
|
106
|
+
"완벽한 보안 (서버 전송 없음)",
|
|
107
|
+
"용량 제한 없음",
|
|
108
|
+
"깔끔한 환경"
|
|
109
|
+
]
|
|
110
|
+
}
|
|
111
|
+
]
|
|
116
112
|
},
|
|
117
113
|
{
|
|
118
|
-
type:
|
|
119
|
-
text:
|
|
120
|
-
level: 3
|
|
114
|
+
"type": "title",
|
|
115
|
+
"text": "기술적 변환 원리",
|
|
116
|
+
"level": 3
|
|
121
117
|
},
|
|
122
118
|
{
|
|
123
|
-
type:
|
|
124
|
-
html:
|
|
119
|
+
"type": "paragraph",
|
|
120
|
+
"html": "HTML5 Canvas 기술을 활용하여 브라우저 메모리상에서 이미지를 렌더링하고 바로 저장합니다."
|
|
125
121
|
},
|
|
126
122
|
{
|
|
127
|
-
type:
|
|
128
|
-
html:
|
|
123
|
+
"type": "paragraph",
|
|
124
|
+
"html": "투명 영역은 자동으로 흰색 배경으로 채워져 깨끗한 JPG 파일로 완성됩니다."
|
|
129
125
|
},
|
|
130
126
|
{
|
|
131
|
-
type:
|
|
132
|
-
title:
|
|
133
|
-
html:
|
|
127
|
+
"type": "tip",
|
|
128
|
+
"title": "SEO 팁",
|
|
129
|
+
"html": "웹용 이미지를 압축하여 PageSpeed 점수를 높이세요."
|
|
134
130
|
},
|
|
135
131
|
{
|
|
136
|
-
type:
|
|
137
|
-
text:
|
|
138
|
-
level: 3
|
|
132
|
+
"type": "title",
|
|
133
|
+
"text": "기업용 보안",
|
|
134
|
+
"level": 3
|
|
139
135
|
},
|
|
140
136
|
{
|
|
141
|
-
type:
|
|
142
|
-
html:
|
|
137
|
+
"type": "paragraph",
|
|
138
|
+
"html": "민감한 문서도 안심하고 처리할 수 있는 격리된 로컬 환경을 제공합니다."
|
|
143
139
|
},
|
|
144
140
|
{
|
|
145
|
-
type:
|
|
146
|
-
text:
|
|
147
|
-
level: 3
|
|
141
|
+
"type": "title",
|
|
142
|
+
"text": "호환성",
|
|
143
|
+
"level": 3
|
|
148
144
|
},
|
|
149
145
|
{
|
|
150
|
-
type:
|
|
151
|
-
icon:
|
|
152
|
-
items: [
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
]
|
|
146
|
+
"type": "list",
|
|
147
|
+
"icon": "mdi:check-circle",
|
|
148
|
+
"items": [
|
|
149
|
+
"모든 OS 뷰어",
|
|
150
|
+
"SNS 플랫폼",
|
|
151
|
+
"오피스 프로그램",
|
|
152
|
+
"CMS 시스템"
|
|
153
|
+
]
|
|
158
154
|
},
|
|
159
155
|
{
|
|
160
|
-
type:
|
|
161
|
-
text:
|
|
162
|
-
level: 3
|
|
156
|
+
"type": "title",
|
|
157
|
+
"text": "결론",
|
|
158
|
+
"level": 3
|
|
163
159
|
},
|
|
164
160
|
{
|
|
165
|
-
type:
|
|
166
|
-
html:
|
|
167
|
-
}
|
|
161
|
+
"type": "paragraph",
|
|
162
|
+
"html": "안전하고 빠른 최상의 이미지 변환 솔루션입니다."
|
|
163
|
+
}
|
|
168
164
|
];
|
|
169
165
|
|
|
170
166
|
|