sun.awt.image.MultiResolutionToolkitImage Java Examples

The following examples show how to use sun.awt.image.MultiResolutionToolkitImage. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MultiResolutionDragImageTest.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
private static Image createMultiResolutionImage() {

        return new MultiResolutionToolkitImage(
                createImage(50, COLOR_1X),
                createImage(100, COLOR_2X)
        );

    }
 
Example #2
Source File: SunToolkit.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
private static ToolkitImage getResolutionVariant(Image image) {
    if (image instanceof MultiResolutionToolkitImage) {
        Image resolutionVariant = ((MultiResolutionToolkitImage) image).
                getResolutionVariant();
        if (resolutionVariant instanceof ToolkitImage) {
            return (ToolkitImage) resolutionVariant;
        }
    }
    return null;
}
 
Example #3
Source File: SunToolkit.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
private boolean prepareResolutionVariant(Image img, int w, int h,
        ImageObserver o) {

    ToolkitImage rvImage = getResolutionVariant(img);
    int rvw = getRVSize(w);
    int rvh = getRVSize(h);
    // Ignore the resolution variant in case of error
    return rvImage == null || rvImage.hasError() || prepareImage(
            rvImage, rvw, rvh,
            MultiResolutionToolkitImage.getResolutionVariantObserver(
                    img, o, w, h, rvw, rvh, true));
}
 
Example #4
Source File: SunToolkit.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
private int checkResolutionVariant(Image img, int w, int h, ImageObserver o) {
    ToolkitImage rvImage = getResolutionVariant(img);
    int rvw = getRVSize(w);
    int rvh = getRVSize(h);
    // Ignore the resolution variant in case of error
    return (rvImage == null || rvImage.hasError()) ? 0xFFFF :
            checkImage(rvImage, rvw, rvh, MultiResolutionToolkitImage.
                            getResolutionVariantObserver(
                                    img, o, w, h, rvw, rvh, true));
}
 
Example #5
Source File: MultiResolutionDragImageTest.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
private static Image createMultiResolutionImage() {

        return new MultiResolutionToolkitImage(
                createImage(50, COLOR_1X),
                createImage(100, COLOR_2X)
        );

    }
 
Example #6
Source File: SunToolkit.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
private static ToolkitImage getResolutionVariant(Image image) {
    if (image instanceof MultiResolutionToolkitImage) {
        Image resolutionVariant = ((MultiResolutionToolkitImage) image).
                getResolutionVariant();
        if (resolutionVariant instanceof ToolkitImage) {
            return (ToolkitImage) resolutionVariant;
        }
    }
    return null;
}
 
Example #7
Source File: SunToolkit.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
private boolean prepareResolutionVariant(Image img, int w, int h,
        ImageObserver o) {

    ToolkitImage rvImage = getResolutionVariant(img);
    int rvw = getRVSize(w);
    int rvh = getRVSize(h);
    // Ignore the resolution variant in case of error
    return rvImage == null || rvImage.hasError() || prepareImage(
            rvImage, rvw, rvh,
            MultiResolutionToolkitImage.getResolutionVariantObserver(
                    img, o, w, h, rvw, rvh, true));
}
 
Example #8
Source File: SunToolkit.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
private int checkResolutionVariant(Image img, int w, int h, ImageObserver o) {
    ToolkitImage rvImage = getResolutionVariant(img);
    int rvw = getRVSize(w);
    int rvh = getRVSize(h);
    // Ignore the resolution variant in case of error
    return (rvImage == null || rvImage.hasError()) ? 0xFFFF :
            checkImage(rvImage, rvw, rvh, MultiResolutionToolkitImage.
                            getResolutionVariantObserver(
                                    img, o, w, h, rvw, rvh, true));
}
 
Example #9
Source File: MultiResolutionDragImageTest.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
private static Image createMultiResolutionImage() {

        return new MultiResolutionToolkitImage(
                createImage(50, COLOR_1X),
                createImage(100, COLOR_2X)
        );

    }
 
Example #10
Source File: MultiResolutionDragImageTest.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
private static Image createMultiResolutionImage() {

        return new MultiResolutionToolkitImage(
                createImage(50, COLOR_1X),
                createImage(100, COLOR_2X)
        );

    }
 
Example #11
Source File: MultiResolutionDragImageTest.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
private static Image createMultiResolutionImage() {

        return new MultiResolutionToolkitImage(
                createImage(50, COLOR_1X),
                createImage(100, COLOR_2X)
        );

    }
 
Example #12
Source File: MultiResolutionDragImageTest.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
private static Image createMultiResolutionImage() {

        return new MultiResolutionToolkitImage(
                createImage(50, COLOR_1X),
                createImage(100, COLOR_2X)
        );

    }
 
Example #13
Source File: MultiResolutionDragImageTest.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
private static Image createMultiResolutionImage() {

        return new MultiResolutionToolkitImage(
                createImage(50, COLOR_1X),
                createImage(100, COLOR_2X)
        );

    }
 
Example #14
Source File: MultiResolutionDragImageTest.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
private static Image createMultiResolutionImage() {

        return new MultiResolutionToolkitImage(
                createImage(50, COLOR_1X),
                createImage(100, COLOR_2X)
        );

    }
 
Example #15
Source File: MultiResolutionDragImageTest.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
private static Image createMultiResolutionImage() {

        return new MultiResolutionToolkitImage(
                createImage(50, COLOR_1X),
                createImage(100, COLOR_2X)
        );

    }
 
Example #16
Source File: MediaTracker.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
private static Image getResolutionVariant(Image image) {
    if (image instanceof MultiResolutionToolkitImage) {
        return ((MultiResolutionToolkitImage) image).getResolutionVariant();
    }
    return null;
}
 
Example #17
Source File: MediaTracker.java    From jdk1.8-source-analysis with Apache License 2.0 4 votes vote down vote up
private static Image getResolutionVariant(Image image) {
    if (image instanceof MultiResolutionToolkitImage) {
        return ((MultiResolutionToolkitImage) image).getResolutionVariant();
    }
    return null;
}
 
Example #18
Source File: SunGraphics2D.java    From jdk8u-dev-jdk with GNU General Public License v2.0 4 votes vote down vote up
private boolean drawHiDPIImage(Image img, int dx1, int dy1, int dx2,
                               int dy2, int sx1, int sy1, int sx2, int sy2,
                               Color bgcolor, ImageObserver observer) {

    if (SurfaceManager.getImageScale(img) != 1) {  // Volatile Image
        final int scale = SurfaceManager.getImageScale(img);
        sx1 = Region.clipScale(sx1, scale);
        sx2 = Region.clipScale(sx2, scale);
        sy1 = Region.clipScale(sy1, scale);
        sy2 = Region.clipScale(sy2, scale);
    } else if (img instanceof MultiResolutionImage) {
        // get scaled destination image size

        int width = img.getWidth(observer);
        int height = img.getHeight(observer);

        Image resolutionVariant = getResolutionVariant(
                (MultiResolutionImage) img, width, height,
                dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2);

        if (resolutionVariant != img && resolutionVariant != null) {
            // recalculate source region for the resolution variant

            ImageObserver rvObserver = MultiResolutionToolkitImage.
                    getResolutionVariantObserver(img, observer,
                            width, height, -1, -1);

            int rvWidth = resolutionVariant.getWidth(rvObserver);
            int rvHeight = resolutionVariant.getHeight(rvObserver);

            if (0 < width && 0 < height && 0 < rvWidth && 0 < rvHeight) {

                float widthScale = ((float) rvWidth) / width;
                float heightScale = ((float) rvHeight) / height;

                sx1 = Region.clipScale(sx1, widthScale);
                sy1 = Region.clipScale(sy1, heightScale);
                sx2 = Region.clipScale(sx2, widthScale);
                sy2 = Region.clipScale(sy2, heightScale);

                observer = rvObserver;
                img = resolutionVariant;
            }
        }
    }

    try {
        return imagepipe.scaleImage(this, img, dx1, dy1, dx2, dy2, sx1, sy1,
                                    sx2, sy2, bgcolor, observer);
    } catch (InvalidPipeException e) {
        try {
            revalidateAll();
            return imagepipe.scaleImage(this, img, dx1, dy1, dx2, dy2, sx1,
                                        sy1, sx2, sy2, bgcolor, observer);
        } catch (InvalidPipeException e2) {
            // Still catching the exception; we are not yet ready to
            // validate the surfaceData correctly.  Fail for now and
            // try again next time around.
            return false;
        }
    } finally {
        surfaceData.markDirty();
    }
}
 
Example #19
Source File: MediaTracker.java    From jdk8u-dev-jdk with GNU General Public License v2.0 4 votes vote down vote up
private static Image getResolutionVariant(Image image) {
    if (image instanceof MultiResolutionToolkitImage) {
        return ((MultiResolutionToolkitImage) image).getResolutionVariant();
    }
    return null;
}
 
Example #20
Source File: MultiResolutionToolkitImageTest.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
static Image getResolutionVariant(Image image) {
    return ((MultiResolutionToolkitImage) image).getResolutionVariant();
}
 
Example #21
Source File: MultiResolutionToolkitImageTest.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
static Image getResolutionVariant(Image image) {
    return ((MultiResolutionToolkitImage) image).getResolutionVariant();
}
 
Example #22
Source File: SunGraphics2D.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
private boolean drawHiDPIImage(Image img, int dx1, int dy1, int dx2,
                               int dy2, int sx1, int sy1, int sx2, int sy2,
                               Color bgcolor, ImageObserver observer) {

    if (SurfaceManager.getImageScale(img) != 1) {  // Volatile Image
        final int scale = SurfaceManager.getImageScale(img);
        sx1 = Region.clipScale(sx1, scale);
        sx2 = Region.clipScale(sx2, scale);
        sy1 = Region.clipScale(sy1, scale);
        sy2 = Region.clipScale(sy2, scale);
    } else if (img instanceof MultiResolutionImage) {
        // get scaled destination image size

        int width = img.getWidth(observer);
        int height = img.getHeight(observer);

        Image resolutionVariant = getResolutionVariant(
                (MultiResolutionImage) img, width, height,
                dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2);

        if (resolutionVariant != img && resolutionVariant != null) {
            // recalculate source region for the resolution variant

            ImageObserver rvObserver = MultiResolutionToolkitImage.
                    getResolutionVariantObserver(img, observer,
                            width, height, -1, -1);

            int rvWidth = resolutionVariant.getWidth(rvObserver);
            int rvHeight = resolutionVariant.getHeight(rvObserver);

            if (0 < width && 0 < height && 0 < rvWidth && 0 < rvHeight) {

                float widthScale = ((float) rvWidth) / width;
                float heightScale = ((float) rvHeight) / height;

                sx1 = Region.clipScale(sx1, widthScale);
                sy1 = Region.clipScale(sy1, heightScale);
                sx2 = Region.clipScale(sx2, widthScale);
                sy2 = Region.clipScale(sy2, heightScale);

                observer = rvObserver;
                img = resolutionVariant;
            }
        }
    }

    try {
        return imagepipe.scaleImage(this, img, dx1, dy1, dx2, dy2, sx1, sy1,
                                    sx2, sy2, bgcolor, observer);
    } catch (InvalidPipeException e) {
        try {
            revalidateAll();
            return imagepipe.scaleImage(this, img, dx1, dy1, dx2, dy2, sx1,
                                        sy1, sx2, sy2, bgcolor, observer);
        } catch (InvalidPipeException e2) {
            // Still catching the exception; we are not yet ready to
            // validate the surfaceData correctly.  Fail for now and
            // try again next time around.
            return false;
        }
    } finally {
        surfaceData.markDirty();
    }
}
 
Example #23
Source File: MediaTracker.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
private static Image getResolutionVariant(Image image) {
    if (image instanceof MultiResolutionToolkitImage) {
        return ((MultiResolutionToolkitImage) image).getResolutionVariant();
    }
    return null;
}
 
Example #24
Source File: SunGraphics2D.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
private boolean drawHiDPIImage(Image img, int dx1, int dy1, int dx2,
                               int dy2, int sx1, int sy1, int sx2, int sy2,
                               Color bgcolor, ImageObserver observer) {

    if (SurfaceManager.getImageScale(img) != 1) {  // Volatile Image
        final int scale = SurfaceManager.getImageScale(img);
        sx1 = Region.clipScale(sx1, scale);
        sx2 = Region.clipScale(sx2, scale);
        sy1 = Region.clipScale(sy1, scale);
        sy2 = Region.clipScale(sy2, scale);
    } else if (img instanceof MultiResolutionImage) {
        // get scaled destination image size

        int width = img.getWidth(observer);
        int height = img.getHeight(observer);

        Image resolutionVariant = getResolutionVariant(
                (MultiResolutionImage) img, width, height,
                dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2);

        if (resolutionVariant != img && resolutionVariant != null) {
            // recalculate source region for the resolution variant

            ImageObserver rvObserver = MultiResolutionToolkitImage.
                    getResolutionVariantObserver(img, observer,
                            width, height, -1, -1);

            int rvWidth = resolutionVariant.getWidth(rvObserver);
            int rvHeight = resolutionVariant.getHeight(rvObserver);

            if (0 < width && 0 < height && 0 < rvWidth && 0 < rvHeight) {

                float widthScale = ((float) rvWidth) / width;
                float heightScale = ((float) rvHeight) / height;

                sx1 = Region.clipScale(sx1, widthScale);
                sy1 = Region.clipScale(sy1, heightScale);
                sx2 = Region.clipScale(sx2, widthScale);
                sy2 = Region.clipScale(sy2, heightScale);

                observer = rvObserver;
                img = resolutionVariant;
            }
        }
    }

    try {
        return imagepipe.scaleImage(this, img, dx1, dy1, dx2, dy2, sx1, sy1,
                                    sx2, sy2, bgcolor, observer);
    } catch (InvalidPipeException e) {
        try {
            revalidateAll();
            return imagepipe.scaleImage(this, img, dx1, dy1, dx2, dy2, sx1,
                                        sy1, sx2, sy2, bgcolor, observer);
        } catch (InvalidPipeException e2) {
            // Still catching the exception; we are not yet ready to
            // validate the surfaceData correctly.  Fail for now and
            // try again next time around.
            return false;
        }
    } finally {
        surfaceData.markDirty();
    }
}
 
Example #25
Source File: MultiResolutionToolkitImageTest.java    From jdk8u_jdk with GNU General Public License v2.0 4 votes vote down vote up
static Image getResolutionVariant(Image image) {
    return ((MultiResolutionToolkitImage) image).getResolutionVariant();
}
 
Example #26
Source File: MultiResolutionToolkitImageTest.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
static Image getResolutionVariant(Image image) {
    return ((MultiResolutionToolkitImage) image).getResolutionVariant();
}
 
Example #27
Source File: MediaTracker.java    From Java8CN with Apache License 2.0 4 votes vote down vote up
private static Image getResolutionVariant(Image image) {
    if (image instanceof MultiResolutionToolkitImage) {
        return ((MultiResolutionToolkitImage) image).getResolutionVariant();
    }
    return null;
}
 
Example #28
Source File: MediaTracker.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
private static Image getResolutionVariant(Image image) {
    if (image instanceof MultiResolutionToolkitImage) {
        return ((MultiResolutionToolkitImage) image).getResolutionVariant();
    }
    return null;
}
 
Example #29
Source File: MultiResolutionToolkitImageTest.java    From jdk8u-dev-jdk with GNU General Public License v2.0 4 votes vote down vote up
static Image getResolutionVariant(Image image) {
    return ((MultiResolutionToolkitImage) image).getResolutionVariant();
}
 
Example #30
Source File: SunGraphics2D.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
private boolean drawHiDPIImage(Image img, int dx1, int dy1, int dx2,
                               int dy2, int sx1, int sy1, int sx2, int sy2,
                               Color bgcolor, ImageObserver observer) {

    if (SurfaceManager.getImageScale(img) != 1) {  // Volatile Image
        final int scale = SurfaceManager.getImageScale(img);
        sx1 = Region.clipScale(sx1, scale);
        sx2 = Region.clipScale(sx2, scale);
        sy1 = Region.clipScale(sy1, scale);
        sy2 = Region.clipScale(sy2, scale);
    } else if (img instanceof MultiResolutionImage) {
        // get scaled destination image size

        int width = img.getWidth(observer);
        int height = img.getHeight(observer);

        Image resolutionVariant = getResolutionVariant(
                (MultiResolutionImage) img, width, height,
                dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2);

        if (resolutionVariant != img && resolutionVariant != null) {
            // recalculate source region for the resolution variant

            ImageObserver rvObserver = MultiResolutionToolkitImage.
                    getResolutionVariantObserver(img, observer,
                            width, height, -1, -1);

            int rvWidth = resolutionVariant.getWidth(rvObserver);
            int rvHeight = resolutionVariant.getHeight(rvObserver);

            if (0 < width && 0 < height && 0 < rvWidth && 0 < rvHeight) {

                float widthScale = ((float) rvWidth) / width;
                float heightScale = ((float) rvHeight) / height;

                sx1 = Region.clipScale(sx1, widthScale);
                sy1 = Region.clipScale(sy1, heightScale);
                sx2 = Region.clipScale(sx2, widthScale);
                sy2 = Region.clipScale(sy2, heightScale);

                observer = rvObserver;
                img = resolutionVariant;
            }
        }
    }

    try {
        return imagepipe.scaleImage(this, img, dx1, dy1, dx2, dy2, sx1, sy1,
                                    sx2, sy2, bgcolor, observer);
    } catch (InvalidPipeException e) {
        try {
            revalidateAll();
            return imagepipe.scaleImage(this, img, dx1, dy1, dx2, dy2, sx1,
                                        sy1, sx2, sy2, bgcolor, observer);
        } catch (InvalidPipeException e2) {
            // Still catching the exception; we are not yet ready to
            // validate the surfaceData correctly.  Fail for now and
            // try again next time around.
            return false;
        }
    } finally {
        surfaceData.markDirty();
    }
}