e*******e 发帖数: 6165 | |
r****a 发帖数: 1350 | |
e*******e 发帖数: 6165 | 3 rgb就可以。
【在 r****a 的大作中提到】 : rgb 或者 hex 的数值?
|
J*********8 发帖数: 4876 | 4 Use photoshop
1. open an image file in ps
2. find a color sample tool on toolbar ( left side of working space)
3. click the color you want to find out its color code
see screen shot
【在 e*******e 的大作中提到】 : rgb就可以。
|
g*******1 发帖数: 8758 | 5 好想吃啊
【在 J*********8 的大作中提到】 : Use photoshop : 1. open an image file in ps : 2. find a color sample tool on toolbar ( left side of working space) : 3. click the color you want to find out its color code : see screen shot
|
J*********8 发帖数: 4876 | 6 你喜欢吃海鲜pasta? 我随手在电脑里找了一张图片.
【在 g*******1 的大作中提到】 : 好想吃啊
|
r****a 发帖数: 1350 | 7
PS
或者写个小程序 就几行
【在 e*******e 的大作中提到】 : rgb就可以。
|
e*******e 发帖数: 6165 | 8 谢谢
我也饿了,哈哈
Use photoshop1. open an image file in ps2. find a color sample tool on
toolbar ( left si........
★ Sent from iPhone App: iReader Mitbbs Lite 7.28
【在 J*********8 的大作中提到】 : Use photoshop : 1. open an image file in ps : 2. find a color sample tool on toolbar ( left side of working space) : 3. click the color you want to find out its color code : see screen shot
|
e*******e 发帖数: 6165 | 9 会的人几行就可以,不会的,象我,就抓瞎了。。。
★ Sent from iPhone App: iReader Mitbbs Lite 7.28
【在 r****a 的大作中提到】 : : PS : 或者写个小程序 就几行
|
t****e 发帖数: 32 | 10 您要开发还是只颜色识别?
其实点QQ截图,随鼠标移动,图像框下方就有RGB color, maxthon也有snap tool, 显
示HEX color, photoshop可以的,但如果只是查颜色似乎没有必要用ps这么大的软件。
如果是开发,取决于你用哪一种语言,以java为例,用getRGB method获取:
int rgb = image.getRGB(x,y,w,h.....);
int red = (rgb>>16)&0xff;
int green = (rgb>>8)&0xff;
int blue = (rgb)&0xff;
hope this helps.
【在 e*******e 的大作中提到】 : 会的人几行就可以,不会的,象我,就抓瞎了。。。 : : ★ Sent from iPhone App: iReader Mitbbs Lite 7.28
|
e*******e 发帖数: 6165 | 11 是有个logo要print在袋子上,需要找到准确的color code。
谢谢大家这么热心~ |
m******1 发帖数: 19713 | 12 看了好几遍都没看懂你想问什么,是想问图片的color mode,还是想问像素的RGB值?
既然你说到印logo,估计你就是想问color mode。因为问每个像素的RGB值没有意义。
如果是传统印刷的话,RGB模式是不行的,必须要先转成CMYK模式。
现代的打印设备,好像也有的接受RGB模式了,但为安全期间,一般还都是先转成CMYK
模式。
【在 e*******e 的大作中提到】 : rt
|
e*******e 发帖数: 6165 | 13 謝謝了,已經解決了。
需要的是pantone PMS code,RGB或者CMYK都行的。
CMYK
【在 m******1 的大作中提到】 : 看了好几遍都没看懂你想问什么,是想问图片的color mode,还是想问像素的RGB值? : 既然你说到印logo,估计你就是想问color mode。因为问每个像素的RGB值没有意义。 : 如果是传统印刷的话,RGB模式是不行的,必须要先转成CMYK模式。 : 现代的打印设备,好像也有的接受RGB模式了,但为安全期间,一般还都是先转成CMYK : 模式。
|