3ds-smdh 中文文档教程
3ds-smdh
读取和写入 Nintendo 3DS SMDH 文件
API Reference
Classes
Typedefs
- TitleObject :
Object
- TitleBuffer :
Buffer
正好是 0x200 字节长的 Buffer 对象
- TitleObjects :
Object.<TitleObject>
- BitmapObject :
Object
SMDH
Kind: global class
- SMDH
- new SMDH([buffer])
- .writeTitleBuffer(buffer, index) ⇒
SMDH
- .getTitle(index) ⇒
TitleObject
- .getJapaneseTitle() ⇒
TitleObject
- .getEnglishTitle() ⇒
TitleObject
- .getFrenchTitle() ⇒
TitleObject
- .getGermanTitle() ⇒
TitleObject
- .getItalianTitle() ⇒
TitleObject
- .getSpanishTitle() ⇒
TitleObject
- .getSimplifiedChineseTitle() ⇒
TitleObject
- .getKoreanTitle() ⇒
TitleObject
- .getDutchTitle() ⇒
TitleObject
- .getPortugueseTitle() ⇒
TitleObject
- .getRussianTitle() ⇒
TitleObject
- .getTraditionalChineseTitle() ⇒
TitleObject
- .getAllTitles() ⇒
TitleObjects
- .setTitle(index, shortDescription, longDescription, publisher) ⇒
SMDH
- .setJapaneseTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setEnglishTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setFrenchTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setGermanTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setItalianTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setSpanishTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setSimplifiedChineseTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setKoreanTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setDutchTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setPortugueseTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setRussianTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setTraditionalChineseTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setAllTitles(shortDescription, longDescription, publisher) ⇒
SMDH
- .getSmallIcon([callback]) ⇒
Promise.<PNG>
- .getLargeIcon([callback]) ⇒
Promise.<PNG>
- .setIcon(bitmap, iconSize, [callback]) ⇒
Promise.<Buffer>
- .setIcons(bitmap, [callback]) ⇒
Promise.<buffer>
- .getBuffer() ⇒
Buffer
new SMDH([buffer])
读写 3DS SMDH 数据的类。
Param | Type | Description |
---|---|---|
[buffer] | Buffer | An existing SMDH buffer to load |
smdH.writeTitleBuffer(buffer, index) ⇒ SMDH
将标题缓冲区写入指定索引处的 SMDH 缓冲区
Param | Type | Description |
---|---|---|
buffer | TitleBuffer | The buffer to write |
index | Integer | The index to write to |
smdH.getTitle(index) ⇒ TitleObject
获取SMDH 中指定索引处的标题对象
Kind: SMDH
Param | Type | Description |
---|---|---|
index | Integer | The title index to read |
smdH.getJapaneseTitle() ⇒ TitleObject
获取日文标题对象
Kind:SMDH
的实例方法
smdH.getEnglishTitle() ⇒ TitleObject
获取英文标题对象
Kind: SMDH
smdH.getFrenchTitle() ⇒ TitleObject
获取法语标题对象
Kind:SMDH
smdH.getGermanTitle() ⇒ TitleObject
获取德语标题对象
Kind:SMDH
smdH.getItalianTitle() ⇒ TitleObject
获取意大利语标题对象
Kind:SMDH
smdH.getSpanishTitle() ⇒ TitleObject
获取西班牙文标题对象
Kind:SMDH
smdH.getSimplifiedChineseTitle() ⇒ TitleObject
获取简体中文标题对象
Kind: SMDH
的实例方法/一个
smdH.getKoreanTitle() ⇒ TitleObject
获取韩文标题对象
Kind: SMDH
smdH.getDutchTitle() ⇒ TitleObject
获取荷兰语标题对象
Kind:SMDH
smdH.getPortugueseTitle() ⇒ TitleObject
获取葡萄牙语标题对象
Kind:SMDH
smdH.getRussianTitle() ⇒ TitleObject
获取俄文标题对象
Kind:SMDH
smdH.getTraditionalChineseTitle() ⇒ TitleObject
获取繁体中文标题对象
Kind:SMDH
的实例方法/一个
smdH.getAllTitles() ⇒ TitleObjects
获取带有所有标题对象的对象
Kind: SMDH
的实例方法
smdH.setTitle(index, shortDescription, longDescription, publisher) ⇒ SMDH
为指定索引设置SMDH中的标题
种类:SMDH<的实例方法/代码>
返回:SMDH
- 当前类
Param | Type | Description |
---|---|---|
index | Integer | The title index to write to |
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setJapaneseTitle(shortDescription, longDescription, publisher) ⇒ SMDH
设置日语标题
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setEnglishTitle(shortDescription, longDescription, publisher) ⇒ SMDH
设置英文标题
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setFrenchTitle(shortDescription, longDescription, publisher) ⇒ SMDH
设置法语标题
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setGermanTitle(shortDescription, longDescription, publisher) ⇒ SMDH
设置德语标题
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setItalianTitle(shortDescription, longDescription, publisher) ⇒ SMDH
设置意大利标题
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setSpanishTitle(shortDescription, longDescription, publisher) ⇒ SMDH
设置西班牙标题
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setSimplifiedChineseTitle(shortDescription, longDescription, publisher) ⇒ SMDH
设置简体中文标题
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setKoreanTitle(shortDescription, longDescription, publisher) ⇒ SMDH
设置韩文标题
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setDutchTitle(shortDescription, longDescription, publisher) ⇒ SMDH
设置荷兰标题
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setPortugueseTitle(shortDescription, longDescription, publisher) ⇒ SMDH
设置葡萄牙语标题
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setRussianTitle(shortDescription, longDescription, publisher) ⇒ SMDH
设置俄文标题
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setTraditionalChineseTitle(shortDescription, longDescription, publisher) ⇒ SMDH
设置繁体中文标题
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setAllTitles(shortDescription, longDescription, publisher) ⇒ SMDH
设置所有标题
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.getSmallIcon([callback]) ⇒ Promise.<PNG>
获取作为 pngjs PNG 对象的小图标图像
Kind:SMDH
的实例方法 返回:Promise.<PNG>
- 带有 pngjs PNG 对象的承诺
Param | Type | Description |
---|---|---|
[callback] | function | An optional node.js style callback |
smdH.getLargeIcon([callback]) ⇒ Promise.<PNG>
获取作为 pngjs PNG 对象的小图标图像
Kind:SMDH
的实例方法 返回:Promise.<PNG>
- 带有 pngjs PNG 对象的承诺
Param | Type | Description |
---|---|---|
[callback] | function | An optional node.js style callback |
smdH.setIcon(bitmap, iconSize, [callback]) ⇒ Promise.<Buffer>
设置iconSize指定的图标
Kind: SMDH
的实例方法 返回:Promise.<Buffer>
- 当前的 SMDH 缓冲区
Param | Type | Description |
---|---|---|
bitmap | BitmapObject | A pngjs PNG-like object with RGBA bitmap data, width, and height. Must be either 24x24 or 48x48. |
iconSize | Integer | The destination icon size, 24 sets the small icon, and 48 sets the large icon |
[callback] | function | An optional node.js style callback |
smdH.setIcons(bitmap, [callback]) ⇒ Promise.<buffer>
设置 small 和大图标
种类:SMDH
的实例方法 返回:Promise.<buffer>
- 当前SMDH数据缓冲区
Param | Type | Description |
---|---|---|
bitmap | BitmapObject | A square bitmap object |
[callback] | function | An optional node.js style callback |
smdH.getBuffer() ⇒ Buffer
获取当前SMDH buffer
Kind:SMDH
的实例方法 返回:Buffer
- SMDH 数据缓冲区
TitleObject : Object
种类:全局类型定义
Properties
Name | Type | Description |
---|---|---|
shortDescription | String | The short description |
longDescription | String | The long description |
publisher | String | The publisher |
TitleBuffer : Buffer
正好是 0x200 字节长的 Buffer 对象
TitleObjects : Object.<TitleObject>
种类:全局类型定义
属性
Name | Type | Description |
---|---|---|
japanese | TitleObject | The Japanese title object |
english | TitleObject | The English title object |
french | TitleObject | The French title object |
german | TitleObject | The German title object |
italian | TitleObject | The Italian title object |
spanish | TitleObject | The Spanish title object |
simplifiedChinese | TitleObject | The Simplified Chinese title object |
korean | TitleObject | The Korean title object |
dutch | TitleObject | The Dutch title object |
portuguese | TitleObject | The Portuguese title object |
russian | TitleObject | The Russian title object |
traditionalChinese | TitleObject | The Traditional Chinese title object |
BitmapObject : Object
种类:全局typedef
属性
Name | Type | Description |
---|---|---|
data | Buffer | Raw RGBA bitmap data buffer |
width | Integer | Image width |
height | Integer | Image height |
3ds-smdh
Reads and writes Nintendo 3DS SMDH files
API Reference
Classes
Typedefs
- TitleObject :
Object
- TitleBuffer :
Buffer
A Buffer object that is exactly 0x200 bytes long
- TitleObjects :
Object.<TitleObject>
- BitmapObject :
Object
SMDH
Kind: global class
- SMDH
- new SMDH([buffer])
- .writeTitleBuffer(buffer, index) ⇒
SMDH
- .getTitle(index) ⇒
TitleObject
- .getJapaneseTitle() ⇒
TitleObject
- .getEnglishTitle() ⇒
TitleObject
- .getFrenchTitle() ⇒
TitleObject
- .getGermanTitle() ⇒
TitleObject
- .getItalianTitle() ⇒
TitleObject
- .getSpanishTitle() ⇒
TitleObject
- .getSimplifiedChineseTitle() ⇒
TitleObject
- .getKoreanTitle() ⇒
TitleObject
- .getDutchTitle() ⇒
TitleObject
- .getPortugueseTitle() ⇒
TitleObject
- .getRussianTitle() ⇒
TitleObject
- .getTraditionalChineseTitle() ⇒
TitleObject
- .getAllTitles() ⇒
TitleObjects
- .setTitle(index, shortDescription, longDescription, publisher) ⇒
SMDH
- .setJapaneseTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setEnglishTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setFrenchTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setGermanTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setItalianTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setSpanishTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setSimplifiedChineseTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setKoreanTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setDutchTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setPortugueseTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setRussianTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setTraditionalChineseTitle(shortDescription, longDescription, publisher) ⇒
SMDH
- .setAllTitles(shortDescription, longDescription, publisher) ⇒
SMDH
- .getSmallIcon([callback]) ⇒
Promise.<PNG>
- .getLargeIcon([callback]) ⇒
Promise.<PNG>
- .setIcon(bitmap, iconSize, [callback]) ⇒
Promise.<Buffer>
- .setIcons(bitmap, [callback]) ⇒
Promise.<buffer>
- .getBuffer() ⇒
Buffer
new SMDH([buffer])
A class for reading and writing 3DS SMDH data.
Param | Type | Description |
---|---|---|
[buffer] | Buffer | An existing SMDH buffer to load |
smdH.writeTitleBuffer(buffer, index) ⇒ SMDH
Writes the title buffer to the SMDH buffer at the specified index
Kind: instance method of SMDH
Returns: SMDH
- The current class
Param | Type | Description |
---|---|---|
buffer | TitleBuffer | The buffer to write |
index | Integer | The index to write to |
smdH.getTitle(index) ⇒ TitleObject
Gets the title object from the SMDH at the specified index
Kind: instance method of SMDH
Param | Type | Description |
---|---|---|
index | Integer | The title index to read |
smdH.getJapaneseTitle() ⇒ TitleObject
Gets the Japanese title object
Kind: instance method of SMDH
smdH.getEnglishTitle() ⇒ TitleObject
Gets the English title object
Kind: instance method of SMDH
smdH.getFrenchTitle() ⇒ TitleObject
Gets the French title object
Kind: instance method of SMDH
smdH.getGermanTitle() ⇒ TitleObject
Gets the German title object
Kind: instance method of SMDH
smdH.getItalianTitle() ⇒ TitleObject
Gets the Italian title object
Kind: instance method of SMDH
smdH.getSpanishTitle() ⇒ TitleObject
Gets the Spanish title object
Kind: instance method of SMDH
smdH.getSimplifiedChineseTitle() ⇒ TitleObject
Gets the Simplified Chinese title object
Kind: instance method of SMDH
smdH.getKoreanTitle() ⇒ TitleObject
Gets the Korean title object
Kind: instance method of SMDH
smdH.getDutchTitle() ⇒ TitleObject
Gets the Dutch title object
Kind: instance method of SMDH
smdH.getPortugueseTitle() ⇒ TitleObject
Gets the Portuguese title object
Kind: instance method of SMDH
smdH.getRussianTitle() ⇒ TitleObject
Gets the Russian title object
Kind: instance method of SMDH
smdH.getTraditionalChineseTitle() ⇒ TitleObject
Gets the Traditional Chinese title object
Kind: instance method of SMDH
smdH.getAllTitles() ⇒ TitleObjects
Gets object with the all title objects
Kind: instance method of SMDH
smdH.setTitle(index, shortDescription, longDescription, publisher) ⇒ SMDH
Sets the title in the SMDH for the specified index
Kind: instance method of SMDH
Returns: SMDH
- The current class
Param | Type | Description |
---|---|---|
index | Integer | The title index to write to |
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setJapaneseTitle(shortDescription, longDescription, publisher) ⇒ SMDH
Sets the Japanese title
Kind: instance method of SMDH
Returns: SMDH
- The current class
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setEnglishTitle(shortDescription, longDescription, publisher) ⇒ SMDH
Sets the English title
Kind: instance method of SMDH
Returns: SMDH
- The current class
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setFrenchTitle(shortDescription, longDescription, publisher) ⇒ SMDH
Sets the French title
Kind: instance method of SMDH
Returns: SMDH
- The current class
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setGermanTitle(shortDescription, longDescription, publisher) ⇒ SMDH
Sets the German title
Kind: instance method of SMDH
Returns: SMDH
- The current class
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setItalianTitle(shortDescription, longDescription, publisher) ⇒ SMDH
Sets the Italian title
Kind: instance method of SMDH
Returns: SMDH
- The current class
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setSpanishTitle(shortDescription, longDescription, publisher) ⇒ SMDH
Sets the Spanish title
Kind: instance method of SMDH
Returns: SMDH
- The current class
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setSimplifiedChineseTitle(shortDescription, longDescription, publisher) ⇒ SMDH
Sets the Simplified Chinese title
Kind: instance method of SMDH
Returns: SMDH
- The current class
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setKoreanTitle(shortDescription, longDescription, publisher) ⇒ SMDH
Sets the Korean title
Kind: instance method of SMDH
Returns: SMDH
- The current class
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setDutchTitle(shortDescription, longDescription, publisher) ⇒ SMDH
Sets the Dutch title
Kind: instance method of SMDH
Returns: SMDH
- The current class
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setPortugueseTitle(shortDescription, longDescription, publisher) ⇒ SMDH
Sets the Portuguese title
Kind: instance method of SMDH
Returns: SMDH
- The current class
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setRussianTitle(shortDescription, longDescription, publisher) ⇒ SMDH
Sets the Russian title
Kind: instance method of SMDH
Returns: SMDH
- The current class
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setTraditionalChineseTitle(shortDescription, longDescription, publisher) ⇒ SMDH
Sets the Traditional Chinese title
Kind: instance method of SMDH
Returns: SMDH
- The current class
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.setAllTitles(shortDescription, longDescription, publisher) ⇒ SMDH
Sets all of the titles
Kind: instance method of SMDH
Returns: SMDH
- The current class
Param | Type | Description |
---|---|---|
shortDescription | String | The short description, max of 64 characters |
longDescription | String | The long description, max of 128 characters |
publisher | String | The publisher, max of 64 characters |
smdH.getSmallIcon([callback]) ⇒ Promise.<PNG>
Get the small icon image as a pngjs PNG object
Kind: instance method of SMDH
Returns: Promise.<PNG>
- A promise with a pngjs PNG object
Param | Type | Description |
---|---|---|
[callback] | function | An optional node.js style callback |
smdH.getLargeIcon([callback]) ⇒ Promise.<PNG>
Get the small icon image as a pngjs PNG object
Kind: instance method of SMDH
Returns: Promise.<PNG>
- A promise with a pngjs PNG object
Param | Type | Description |
---|---|---|
[callback] | function | An optional node.js style callback |
smdH.setIcon(bitmap, iconSize, [callback]) ⇒ Promise.<Buffer>
Sets the icon specified with iconSize
Kind: instance method of SMDH
Returns: Promise.<Buffer>
- The current SMDH buffer
Param | Type | Description |
---|---|---|
bitmap | BitmapObject | A pngjs PNG-like object with RGBA bitmap data, width, and height. Must be either 24x24 or 48x48. |
iconSize | Integer | The destination icon size, 24 sets the small icon, and 48 sets the large icon |
[callback] | function | An optional node.js style callback |
smdH.setIcons(bitmap, [callback]) ⇒ Promise.<buffer>
Sets both the small and large icons
Kind: instance method of SMDH
Returns: Promise.<buffer>
- The current SMDH data buffer
Param | Type | Description |
---|---|---|
bitmap | BitmapObject | A square bitmap object |
[callback] | function | An optional node.js style callback |
smdH.getBuffer() ⇒ Buffer
Gets the current SMDH buffer
Kind: instance method of SMDH
Returns: Buffer
- The SMDH data buffer
TitleObject : Object
Kind: global typedef
Properties
Name | Type | Description |
---|---|---|
shortDescription | String | The short description |
longDescription | String | The long description |
publisher | String | The publisher |
TitleBuffer : Buffer
A Buffer object that is exactly 0x200 bytes long
TitleObjects : Object.<TitleObject>
Kind: global typedef
Properties
Name | Type | Description |
---|---|---|
japanese | TitleObject | The Japanese title object |
english | TitleObject | The English title object |
french | TitleObject | The French title object |
german | TitleObject | The German title object |
italian | TitleObject | The Italian title object |
spanish | TitleObject | The Spanish title object |
simplifiedChinese | TitleObject | The Simplified Chinese title object |
korean | TitleObject | The Korean title object |
dutch | TitleObject | The Dutch title object |
portuguese | TitleObject | The Portuguese title object |
russian | TitleObject | The Russian title object |
traditionalChinese | TitleObject | The Traditional Chinese title object |
BitmapObject : Object
Kind: global typedef
Properties
Name | Type | Description |
---|---|---|
data | Buffer | Raw RGBA bitmap data buffer |
width | Integer | Image width |
height | Integer | Image height |