点击蓝字
关注我们
01:网站一:
https://redketchup.io/color-picker
02:网站二:
https://rgbcolorcode.com/
网站一使用:
Step 01: 文章选择,目标图片
网上随便下载一个文章:
里面的图片为:
图片来源:
Cai, W., Santoso, A., Collins, M. et al. Changing El Niño–Southern Oscillation in a warming climate. Nat Rev Earth Environ 2, 628–644 (2021). https://doi.org/10.1038/s43017-021-00199-z
Step 02: 打开网站:
https://redketchup.io/color-picker
Color Picker - Color from Image, HEX, RGB, HTML | RedKetchup
网站一览图:
网站功能概述:共三个功能:
01:图片上传;
02:在线颜色选取和配制
03:HEX和RGB互换
Step 03: 论文图片颜色提取步骤
点击图片上传
出现pick color
点击图片颜色将出现颜色的HEX和RGB信息:如下图:
依次类推:
Step 04: 使用颜色:
Matlab 代码
clear;clc;close all;
colors= [155 194 229;
226,183,157;
146 207 185;
228 176 172;
197 192 219]./255;
% 构造数据
x = [1980 1990 2000];
y = [40 50 63 52 55; 42 55 50 48 50; 30 20 44 40 60];
% 画图
figure
set(gcf,'Position',[50 50 850 850],'color','w')
b=barh(x,y);
for i=1:5
b(i).FaceColor = colors(i,:);
b(i).EdgeColor = [0.6 0.6 0.6];
b(i).LineWidth = 2;
end
xlabel('Snowfall')
ylabel('Year')
legend({'Springfield','Fairview','Bristol','Jamesville'})
legend boxoff
xlim([0 90])
set(gca,'LineWidth',2,'fontsize',13)
export_fig('example_one.jpg')
step 05:在线颜色选取
有很多颜色:每一种颜色都有自己的亮度对比度等的差别;
以红色为例:
点击上面的颜色块,右边是从暗到亮的渐变选取。
Step 06:HEX和RGB的互换
如果在哪里找到了HEX或者RGB,可以在这个模块进行互换。
更多内容,请自行探索!
网站二同理网站一: