如何制作带有纹理而不是文本颜色或渐变的文本(例如png文件)?这样的事情。我理解逻辑,我应该使文本颜色透明并放在文本位图下。我想我无法通过Textview实现这一点。而且我不知道如何使用画布或OpenGL。有什么想法吗?

评论

好问题!可以上传纹理吗?

Macarse,我不明白您想要从我身上得到什么纹理:)从图像中,我以链接为例?

@jumperOk:只想要您用来测试我的代码的纹理。我将提供示例代码。

#1 楼

这是使用PorterDuffXfermode的一种方法。

public class MainActivity extends Activity {
    private EditText mEditText;
    private ImageView mImageView;
    private Bitmap mTexture;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        mEditText = (EditText) findViewById(R.id.activity_main_edittext);
        mImageView = (ImageView) findViewById(R.id.activity_main_image);

        mTexture = BitmapFactory.decodeResource(getResources(),
                R.drawable.texture);
    }

    public void onTextCreate(View v) {
        final String text = mEditText.getEditableText().toString();

        Bitmap result = Bitmap.createBitmap(mTexture.getWidth(),
                mTexture.getHeight(), Bitmap.Config.ARGB_8888);
        Canvas canvas = new Canvas(result);
        Paint paint = new Paint();
        paint.setAntiAlias(true);
        paint.setTextSize(200);
        paint.setARGB(255, 0, 0, 0);

        canvas.drawText(text, 200, 200, paint);
        paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));
        canvas.drawBitmap(mTexture, 0, 0, paint);
        paint.setXfermode(null);

        mImageView.setImageBitmap(result);
    }
}


布局非常简单:使用canvas.drawText()编写文本的代码。如果要使用常规TextView,则可以:


创建TextView

设置文本
使用TextViewtextView.draw(canvas);绘制到画布中

代替使用canvas.drawText(),而使用canvas.drawBitmap()



#2 楼

this is a snippet from http://teamyoda.wordpress.com/2012/07/23/drawing-text-in-opengl-for-android/ - Answer from JVitela

 // Create an empty, mutable bitmap
Bitmap bitmap = Bitmap.createBitmap(256, 256, Bitmap.Config.ARGB_4444);

// get a canvas to paint over the bitmap
Canvas canvas = new Canvas(bitmap);
bitmap.eraseColor(0);

// get a background image from resources
// note the image format must match the bitmap format
Drawable background = context.getResources().getDrawable(R.drawable.background);
background.setBounds(0, 0, 256, 256);
background.draw(canvas); // draw the background to our bitmap

// Draw the text
Paint textPaint = new Paint();
textPaint.setTextSize(32);
textPaint.setAntiAlias(true);
textPaint.setARGB(0xff, 0×00, 0×00, 0×00);

// draw the text centered
canvas.drawText(“Hello World”, 16,112, textPaint);

//Generate one texture pointer…
gl.glGenTextures(1, textures, 0);

//…and bind it to our array
gl.glBindTexture(GL10.GL_TEXTURE_2D, textures[0]);

//Create Nearest Filtered Texture
gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MIN_FILTER, GL10.GL_NEAREST);
gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MAG_FILTER, GL10.GL_LINEAR);

//Different possible texture parameters, e.g. GL10.GL_CLAMP_TO_EDGE
gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_WRAP_S, GL10.GL_REPEAT);
gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_WRAP_T, GL10.GL_REPEAT);

//Use the Android GLUtils to specify a two-dimensional texture image from our bitmap
GLUtils.texImage2D(GL10.GL_TEXTURE_2D, 0, bitmap, 0);

//Clean up
bitmap.recycle();


评论


@ jumper0k你怎么样了?

–雷切尔·加伦(Rachel Gallen)
13年2月10日在14:26

我尝试了两种方法-您的和Macarse的。他们俩都很好。但是我接受Macarse的方法,因为我认为它更简单,并且不会混合gl和canvas。也许对于一个更有效率的人来说,这就是您的方式。因此,昨天我已将您的答案标记为有用。

– jumper0k
13年2月11日在14:11

#3 楼

很抱歉,将其发布到很晚,但是我想我会有所帮助。
因此,要生成带纹理的文本,例如,在您的layout /文件夹中有一个名为my_layout.xml的文件,其定义如下:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">

    <TextView
    android:id="@+id/some_text_id"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:text="@string/some_text"/>

</RelativeLayout>


在您的drawable /文件夹中,有一个名为texture.png的图片,您可以通过以下方式在Java代码中进行引用(例如,在类MainActivity中进行引用):

public class MainActivity extends Activity
{
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.my_layout);
        TextView welcome = (TextView) findViewById(R.id.some_text_id);
        Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.texture);
        Shader shader = new BitmapShader(bitmap,Shader.TileMode.REPEAT, Shader.TileMode.REPEAT);
        welcome.getPaint().setShader(shader);

    }
}