当前位置: 首页>>代码示例>>Java>>正文


Java GlyphList.getNumGlyphs方法代码示例

本文整理汇总了Java中sun.font.GlyphList.getNumGlyphs方法的典型用法代码示例。如果您正苦于以下问题:Java GlyphList.getNumGlyphs方法的具体用法?Java GlyphList.getNumGlyphs怎么用?Java GlyphList.getNumGlyphs使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在sun.font.GlyphList的用法示例。


在下文中一共展示了GlyphList.getNumGlyphs方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: drawGlyphList

import sun.font.GlyphList; //导入方法依赖的package包/类
protected void drawGlyphList(SunGraphics2D sg2d, GlyphList gl,
                             int aaHint) {
    int prevBorder = 0;
    boolean isColor = false;
    int len = gl.getNumGlyphs();
    gl.startGlyphIteration();
    if (SunFontManager.getInstance().areColorGlyphsSupported()) {
        for (int i = 0; i < len; i++) {
            boolean newIsColor = gl.isColorGlyph(i);
            if (newIsColor != isColor) {
                drawGlyphListSegment(sg2d, gl, prevBorder, i, aaHint, isColor);
                prevBorder = i;
                isColor = newIsColor;
            }
        }
    }
    drawGlyphListSegment(sg2d, gl, prevBorder, len, aaHint, isColor);
}
 
开发者ID:JetBrains,项目名称:jdk8u_jdk,代码行数:19,代码来源:GlyphListLoopPipe.java

示例2: DrawGlyphList

import sun.font.GlyphList; //导入方法依赖的package包/类
public void DrawGlyphList(SunGraphics2D sg2d, SurfaceData dest,
                          GlyphList gl) {

    int strbounds[] = gl.getBounds(); // Don't delete, bug 4895493
    int num = gl.getNumGlyphs();
    Region clip = sg2d.getCompClip();
    int cx1 = clip.getLoX();
    int cy1 = clip.getLoY();
    int cx2 = clip.getHiX();
    int cy2 = clip.getHiY();
    for (int i = 0; i < num; i++) {
        gl.setGlyphIndex(i);
        int metrics[] = gl.getMetrics();
        int gx1 = metrics[0];
        int gy1 = metrics[1];
        int w = metrics[2];
        int gx2 = gx1 + w;
        int gy2 = gy1 + metrics[3];
        int off = 0;
        if (gx1 < cx1) {
            off = cx1 - gx1;
            gx1 = cx1;
        }
        if (gy1 < cy1) {
            off += (cy1 - gy1) * w;
            gy1 = cy1;
        }
        if (gx2 > cx2) gx2 = cx2;
        if (gy2 > cy2) gy2 = cy2;
        if (gx2 > gx1 && gy2 > gy1) {
            byte alpha[] = gl.getGrayBits();
            maskop.MaskFill(sg2d, dest, sg2d.composite,
                            gx1, gy1, gx2 - gx1, gy2 - gy1,
                            alpha, off, w);
        }
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:38,代码来源:DrawGlyphList.java

示例3: DrawGlyphListAA

import sun.font.GlyphList; //导入方法依赖的package包/类
public void DrawGlyphListAA(SunGraphics2D sg2d, SurfaceData dest,
                            GlyphList gl)
{
    gl.getBounds(); // Don't delete, bug 4895493
    int num = gl.getNumGlyphs();
    Region clip = sg2d.getCompClip();
    int cx1 = clip.getLoX();
    int cy1 = clip.getLoY();
    int cx2 = clip.getHiX();
    int cy2 = clip.getHiY();
    for (int i = 0; i < num; i++) {
        gl.setGlyphIndex(i);
        int metrics[] = gl.getMetrics();
        int gx1 = metrics[0];
        int gy1 = metrics[1];
        int w = metrics[2];
        int gx2 = gx1 + w;
        int gy2 = gy1 + metrics[3];
        int off = 0;
        if (gx1 < cx1) {
            off = cx1 - gx1;
            gx1 = cx1;
        }
        if (gy1 < cy1) {
            off += (cy1 - gy1) * w;
            gy1 = cy1;
        }
        if (gx2 > cx2) gx2 = cx2;
        if (gy2 > cy2) gy2 = cy2;
        if (gx2 > gx1 && gy2 > gy1) {
            byte alpha[] = gl.getGrayBits();
            maskop.MaskFill(sg2d, dest, sg2d.composite,
                            gx1, gy1, gx2 - gx1, gy2 - gy1,
                            alpha, off, w);
        }
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:38,代码来源:DrawGlyphListAA.java

示例4: doDrawGlyphList

import sun.font.GlyphList; //导入方法依赖的package包/类
static void doDrawGlyphList(SurfaceData sData, PixelWriter pw,
                            GlyphList gl, Region clip)
{
    int[] bounds = gl.getBounds();
    clip.clipBoxToBounds(bounds);
    int cx1 = bounds[0];
    int cy1 = bounds[1];
    int cx2 = bounds[2];
    int cy2 = bounds[3];

    WritableRaster dstRast =
        (WritableRaster) sData.getRaster(cx1, cy1, cx2 - cx1, cy2 - cy1);
    pw.setRaster(dstRast);

    int num = gl.getNumGlyphs();
    for (int i = 0; i < num; i++) {
        gl.setGlyphIndex(i);
        int metrics[] = gl.getMetrics();
        int gx1 = metrics[0];
        int gy1 = metrics[1];
        int w = metrics[2];
        int gx2 = gx1 + w;
        int gy2 = gy1 + metrics[3];
        int off = 0;
        if (gx1 < cx1) {
            off = cx1 - gx1;
            gx1 = cx1;
        }
        if (gy1 < cy1) {
            off += (cy1 - gy1) * w;
            gy1 = cy1;
        }
        if (gx2 > cx2) gx2 = cx2;
        if (gy2 > cy2) gy2 = cy2;
        if (gx2 > gx1 && gy2 > gy1) {
            byte alpha[] = gl.getGrayBits();
            w -= (gx2 - gx1);
            for (int y = gy1; y < gy2; y++) {
                for (int x = gx1; x < gx2; x++) {
                    if (alpha[off++] < 0) {
                        pw.writePixel(x, y);
                    }
                }
                off += w;
            }
        }
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:49,代码来源:GeneralRenderer.java

示例5: enqueueGlyphList

import sun.font.GlyphList; //导入方法依赖的package包/类
private void enqueueGlyphList(final SunGraphics2D sg2d,
                              final GlyphList gl)
{
    // assert rq.lock.isHeldByCurrentThread();
    RenderBuffer buf = rq.getBuffer();
    final int totalGlyphs = gl.getNumGlyphs();
    int glyphBytesRequired = totalGlyphs * BYTES_PER_GLYPH_IMAGE;
    int posBytesRequired =
        gl.usePositions() ? totalGlyphs * BYTES_PER_GLYPH_POSITION : 0;
    int totalBytesRequired = 24 + glyphBytesRequired + posBytesRequired;

    final long[] images = gl.getImages();
    final float glyphListOrigX = gl.getX() + 0.5f;
    final float glyphListOrigY = gl.getY() + 0.5f;

    // make sure the RenderQueue keeps a hard reference to the FontStrike
    // so that the associated glyph images are not disposed while enqueued
    rq.addReference(gl.getStrike());

    if (totalBytesRequired <= buf.capacity()) {
        if (totalBytesRequired > buf.remaining()) {
            // process the queue first and then enqueue the glyphs
            rq.flushNow();
        }
        rq.ensureAlignment(20);
        buf.putInt(DRAW_GLYPH_LIST);
        // enqueue parameters
        buf.putInt(totalGlyphs);
        buf.putInt(createPackedParams(sg2d, gl));
        buf.putFloat(glyphListOrigX);
        buf.putFloat(glyphListOrigY);
        // now enqueue glyph information
        buf.put(images, 0, totalGlyphs);
        if (gl.usePositions()) {
            float[] positions = gl.getPositions();
            buf.put(positions, 0, 2*totalGlyphs);
        }
    } else {
        // queue is too small to accommodate glyphs; perform
        // the operation directly on the queue flushing thread
        rq.flushAndInvokeNow(new Runnable() {
            public void run() {
                drawGlyphList(totalGlyphs, gl.usePositions(),
                              gl.isSubPixPos(), gl.isRGBOrder(),
                              sg2d.lcdTextContrast,
                              glyphListOrigX, glyphListOrigY,
                              images, gl.getPositions());
            }
        });
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:52,代码来源:BufferedTextPipe.java

示例6: drawGlyphList

import sun.font.GlyphList; //导入方法依赖的package包/类
protected void drawGlyphList(SunGraphics2D sg2d, GlyphList gl) {
    int num = gl.getNumGlyphs();
    Region clipRegion = sg2d.getCompClip();
    int cx1 = clipRegion.getLoX();
    int cy1 = clipRegion.getLoY();
    int cx2 = clipRegion.getHiX();
    int cy2 = clipRegion.getHiY();
    Object ctx = null;
    try {
        int[] bounds = gl.getBounds();
        Rectangle r = new Rectangle(bounds[0], bounds[1],
                                    bounds[2] - bounds[0],
                                    bounds[3] - bounds[1]);
        Shape s = sg2d.untransformShape(r);
        ctx = outpipe.startSequence(sg2d, s, r, bounds);
        for (int i = 0; i < num; i++) {
            gl.setGlyphIndex(i);
            int metrics[] = gl.getMetrics();
            int gx1 = metrics[0];
            int gy1 = metrics[1];
            int w = metrics[2];
            int gx2 = gx1 + w;
            int gy2 = gy1 + metrics[3];
            int off = 0;
            if (gx1 < cx1) {
                off = cx1 - gx1;
                gx1 = cx1;
            }
            if (gy1 < cy1) {
                off += (cy1 - gy1) * w;
                gy1 = cy1;
            }
            if (gx2 > cx2) gx2 = cx2;
            if (gy2 > cy2) gy2 = cy2;
            if (gx2 > gx1 && gy2 > gy1 &&
                outpipe.needTile(ctx, gx1, gy1, gx2 - gx1, gy2 - gy1))
            {
                byte alpha[] = gl.getGrayBits();
                outpipe.renderPathTile(ctx, alpha, off, w,
                                       gx1, gy1, gx2 - gx1, gy2 - gy1);
            } else {
                outpipe.skipTile(ctx, gx1, gy1);
            }
        }
    } finally {
        if (ctx != null) {
            outpipe.endSequence(ctx);
        }
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:51,代码来源:TextRenderer.java

示例7: drawGlyphList

import sun.font.GlyphList; //导入方法依赖的package包/类
protected void drawGlyphList(SunGraphics2D sg2d, GlyphList gl) {
    int num = gl.getNumGlyphs();
    Region clipRegion = sg2d.getCompClip();
    int cx1 = clipRegion.getLoX();
    int cy1 = clipRegion.getLoY();
    int cx2 = clipRegion.getHiX();
    int cy2 = clipRegion.getHiY();
    Object ctx = null;
    try {
        int[] bounds = gl.getBounds();
        Rectangle r = new Rectangle(bounds[0], bounds[1],
                                    bounds[2] - bounds[0],
                                    bounds[3] - bounds[1]);
        Shape s = sg2d.untransformShape(r);
        ctx = outpipe.startSequence(sg2d, s, r, bounds);
        gl.startGlyphIteration();
        for (int i = 0; i < num; i++) {
            gl.setGlyphIndex(i);
            int metrics[] = gl.getMetrics();
            int gx1 = metrics[0];
            int gy1 = metrics[1];
            int w = metrics[2];
            int gx2 = gx1 + w;
            int gy2 = gy1 + metrics[3];
            int off = 0;
            if (gx1 < cx1) {
                off = cx1 - gx1;
                gx1 = cx1;
            }
            if (gy1 < cy1) {
                off += (cy1 - gy1) * w;
                gy1 = cy1;
            }
            if (gx2 > cx2) gx2 = cx2;
            if (gy2 > cy2) gy2 = cy2;
            if (gx2 > gx1 && gy2 > gy1 && !gl.isColorGlyph(i) &&
                outpipe.needTile(ctx, gx1, gy1, gx2 - gx1, gy2 - gy1))
            {
                byte alpha[] = gl.getGrayBits();
                outpipe.renderPathTile(ctx, alpha, off, w,
                                       gx1, gy1, gx2 - gx1, gy2 - gy1);
            } else {
                outpipe.skipTile(ctx, gx1, gy1);
            }
        }
    } finally {
        if (ctx != null) {
            outpipe.endSequence(ctx);
        }
    }
}
 
开发者ID:JetBrains,项目名称:jdk8u_jdk,代码行数:52,代码来源:TextRenderer.java

示例8: enqueueGlyphList

import sun.font.GlyphList; //导入方法依赖的package包/类
private void enqueueGlyphList(final SunGraphics2D sg2d,
                              final GlyphList gl)
{
    // assert rq.lock.isHeldByCurrentThread();
    RenderBuffer buf = rq.getBuffer();
    final int totalGlyphs = gl.getNumGlyphs();
    int glyphBytesRequired = totalGlyphs * BYTES_PER_GLYPH_IMAGE;
    int posBytesRequired =
        gl.usePositions() ? totalGlyphs * BYTES_PER_GLYPH_POSITION : 0;
    int totalBytesRequired = 24 + glyphBytesRequired + posBytesRequired;

    final long[] images = gl.getImages();
    final float glyphListOrigX = gl.getX() + 0.5f;
    final float glyphListOrigY = gl.getY() + 0.5f;

    // make sure the RenderQueue keeps a hard reference to the FontStrike
    // so that the associated glyph images are not disposed while enqueued
    rq.addReference(gl.getStrike());

    if (totalBytesRequired <= buf.capacity()) {
        if (totalBytesRequired > buf.remaining()) {
            // process the queue first and then enqueue the glyphs
            rq.flushNow();
        }
        rq.ensureAlignment(20);
        buf.putInt(DRAW_GLYPH_LIST);
        // enqueue parameters
        buf.putInt(totalGlyphs);
        buf.putInt(createPackedParams(sg2d, gl));
        buf.putFloat(glyphListOrigX);
        buf.putFloat(glyphListOrigY);
        // now enqueue glyph information
        buf.put(images, 0, totalGlyphs);
        if (gl.usePositions()) {
            float[] positions = gl.getPositions();
            buf.put(positions, 0, 2*totalGlyphs);
        }
    } else {
        // queue is too small to accomodate glyphs; perform
        // the operation directly on the queue flushing thread
        rq.flushAndInvokeNow(new Runnable() {
            public void run() {
                drawGlyphList(totalGlyphs, gl.usePositions(),
                              gl.isSubPixPos(), gl.isRGBOrder(),
                              sg2d.lcdTextContrast,
                              glyphListOrigX, glyphListOrigY,
                              images, gl.getPositions());
            }
        });
    }
}
 
开发者ID:openjdk,项目名称:jdk7-jdk,代码行数:52,代码来源:BufferedTextPipe.java


注:本文中的sun.font.GlyphList.getNumGlyphs方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。