在android中创建一个带颜色的图像

时间:2012-12-26 02:47:44

标签: android image colors

设置背景似乎没有对android的大小提供任何提示 因此,我正在寻找一种创建具有特定颜色的图像的方法 (如果可以在xml中完成,会更好)

在iOS中

可以通过

来实现
+ (UIImage*)placeHolderImage
{
    static UIImage* image = nil;
    if(image != nil)
        return image;

    CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);
    UIGraphicsBeginImageContext(rect.size);
    CGContextRef context = UIGraphicsGetCurrentContext();

    // Seashell color                                                                                                                                                                                                                                                           
    UIColor* color = [UIColor colorWithRed:255/255.0 green:245/255.0 blue:238/255.0 alpha:1.0];
    CGContextSetFillColorWithColor(context, [color CGColor]);
    CGContextFillRect(context, rect);

    image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return image;
}

2 个答案:

答案 0 :(得分:9)

以下是等效的 Android 代码:

// CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);
Rect rect = new Rect(0, 0, 1, 1);

//UIGraphicsBeginImageContext(rect.size);
//CGContextRef context = UIGraphicsGetCurrentContext();
Bitmap image = Bitmap.createBitmap(rect.width(), rect.height(), Config.ARGB_8888);
Canvas canvas = new Canvas(image);

//UIColor* color = [UIColor colorWithRed:255/255.0 green:245/255.0 blue:238/255.0 alpha:1.0];
int color = Color.argb(255, 255, 245, 238);

//CGContextSetFillColorWithColor(context, [color CGColor]);
Paint paint = new Paint();
paint.setColor(color);

//CGContextFillRect(context, rect);
canvas.drawRect(rect, paint);

//image = UIGraphicsGetImageFromCurrentImageContext();
//UIGraphicsEndImageContext();
/** nothing to do here, we already have our image **/
/** and the canvas will be released by the GC     **/

现在,如果你想在 XML 中更容易地做到这一点:

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
    <size android:width="1px" android:height="1dp"/>
    <solid android:color="#FFFFF5EE/>
</shape>

虽然这不会给你一个Bitmap,但是Drawable。如果你打算把它画到某处,那就没关系了。如果您确实需要Bitmap,那么您必须使用上述代码从Canvas创建Bitmap并将Drawable绘制到其中。

答案 1 :(得分:-3)

这有助于您创建具有特定颜色的位图图像。 首先创建一个名为sampleBitmap的位图,如下所示

Bitmap.Config conf = Bitmap.Config.ARGB_8888; // see other conf types
Bitmap sampleBitmap = Bitmap.createBitmap(300, 300, conf); // this creates a MUTABLE bitmap

接下来使用以下代码获取创建的位图的每个像素

// int [] pixels = new int [sampleBitmap.getHeight()* sampleBitmap.getWidth()];

for (int i=0; i < sampleBitmap.getWidth(); i++)
{
for (int j=0; j < sampleBitmap.getHeight(); i++)
 {
    sampleBitmap.setPixel(i, j, Color.rgb(someColor1, someColor2, someColor3));
 }
}

使用此方法,您可以将位图设置为listview项目,以便listitem不会崩溃