override rolling_on_the_floor_laughing emoji image

This commit is contained in:
tateisu 2018-09-23 04:44:07 +09:00
parent ac67e2d587
commit 70cbd596ce
5 changed files with 41878 additions and 41860 deletions

View File

@ -12344,7 +12344,7 @@
category(CATEGORY_FLAGS, "waving_black_flag");
category(CATEGORY_FLAGS, "waving_white_flag");
}
static final int utf16_max_length=14;
public static final int utf16_max_length=14;
static void initAll(){
init1();

File diff suppressed because it is too large Load Diff

View File

@ -100,10 +100,21 @@ sub getEmojiResId($$){
my $dst_name = "emj_". lc($image);
$dst_name =~ tr/-/_/;
my $dst_path = "png/$dst_name";
if( not -f $dst_path ){
copy( $image_path,$dst_path ) or die "$dst_path $!";
# override?
my $override = "override/$dst_name";
if( -f $override){
copy( $override,$dst_path ) or die "$dst_path $!";
}else{
copy( $image_path,$dst_path ) or die "$dst_path $!";
}
}
# override?
my $override = "override/$dst_name";
# 画像リソースの名前
my $res_name = $dst_name;
$res_name =~ s/\.png//;

View File

@ -13,6 +13,13 @@ git clone git@github.com:Gargron/emoji-mart.git
# (上のemoji-martのpackages.jsonで指定されたバージョンに合わせる
git clone -b v4.0.4 git@github.com:iamcal/emoji-data.git
オーバライド用
override フォルダにPNG画像を用意する
マストドンのタンスにある絵文字を以下のようにPNGに変換します
magick.exe -density 128 -background none 1f923.svg emj_1f923.png
########################################
* 前準備

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB