2

我正在尝试显示直接从 Internet 获得的圆形图像。我使用下面的代码创建了一个圆形蒙版,从 Internet 获取图像,然后尝试在图像上设置蒙版或标签本身。这些方法都不起作用。如果我取下遮罩,图像会显示得很好。如果我保留设置掩码的代码,那么我看到的只是一个空的白色圆圈。

我的想法是,如果我在图像本身上应用蒙版,则它可能不会生效,因为在应用蒙版时未下载图像。

但我似乎不明白为什么调用setMask标签也不起作用。

   // Create MASK

    Image maskImage = Image.createImage(w, l);
    Graphics g = maskImage.getGraphics();
    g.setAntiAliased(true);
    g.setColor(0x000000);
    g.fillRect(0, 0, w, l);
    g.setColor(0xffffff);
    g.fillArc(0, 0, w, l, 0, 360);
    Object mask = maskImage.createMask();



    // GET IMAGE
    com.cloudinary.Cloudinary cloudinary = new com.cloudinary.Cloudinary(ObjectUtils.asMap(
            "cloud_name", "REMOVED",
            "api_key", "REMOVED",
            "api_secret", "REMOVED"));
    // Disable private CDN URLs as this doesn't seem to work with free accounts
    cloudinary.config.privateCdn = false;
    Image placeholder = Image.createImage(150, 150);
    EncodedImage encImage = EncodedImage.createFromImage(placeholder, false);
    Image img2 = cloudinary.url()
            .type("fetch") // Says we are fetching an image
            .format("jpg") // We want it to be a jpg
            .transformation(
                    new Transformation()
                    .radius("max").width(150).height(150).crop("thumb").gravity("faces").image(encImage, "http://upload.wikimedia.org/wikipedia/commons/4/46/Jennifer_Lawrence_at_the_83rd_Academy_Awards.jpg");

    Label label = new Label(img2);
    label.setMask(mask);  // also tried to do img2.applyMask(mask); before passing img2 
4

3 回答 3

2

所以我尝试了各种方法:

1) 移除通过 cloudinary 设置的面具 - 这不起作用

2)将掩码应用于占位符和编码图像(正如预期的那样,这些不应影响正在发布的最终版本)

3)这是有效的!我不确定问题是否真的是在应用面具之前或之后下载图片..时间可以告诉我们

    Label label = new Label();
    img2.applyMask(mask);  // If you remove this line , the image will no longer be displayed, I will only see a rounded white circle ! I am not sure what this is doing, it might be simply stalling the process until the image is downloaded? or maybe somehow calling repaint or revalidate
    label.setIcon( img2.applyMask(mask));

如果其他人遇到类似问题,这对我有用:

        //CREATE MASK
    Image maskImage = Image.createImage(w, l);
    Graphics g = maskImage.getGraphics();
    g.setAntiAliased(true);
    g.setColor(0x000000);
    g.fillRect(0, 0, w, l);
    g.setColor(0xffffff);
    g.fillArc(0, 0, w, l, 0, 360);
    Object mask = maskImage.createMask();

    //CONNECT TO CLOUDINARY 
    com.cloudinary.Cloudinary cloudinary = new com.cloudinary.Cloudinary(ObjectUtils.asMap(
            "cloud_name", "REMOVED",
            "api_key", "REMOVED",
            "api_secret", "REMOVED"));
    // Disable private CDN URLs as this doesn't seem to work with free accounts
    cloudinary.config.privateCdn = false;

    //CREATE IMAGE PLACEHOLDERS 
    Image placeholder = Image.createImage(w, l);
    EncodedImage encImage = EncodedImage.createFromImage(placeholder, false);

    //DOWNLOAD IMAGE
    Image img2 = cloudinary.url()
            .type("fetch") // Says we are fetching an image
            .format("jpg") // We want it to be a jpg
            .transformation(
                    new Transformation()
                    .crop("thumb").gravity("faces")
                    .image(encImage, url);


    // Add the image to a label and place it on the form.
    //GetCircleImage(img2);
    Label label = new Label();
    img2.applyMask(mask);   // If you remove this line , the image will no longer be displayed, I will only see a rounded white circle ! I am not sure what this is doing, it might be simply stalling the process until the image is downloaded? or maybe somehow calling repaint or revalidate
    label.setIcon( img2.applyMask(mask));

Shai,我真的很感谢你的时间!!非常感谢你。如果以后给我带来任何其他问题,将不得不深入研究它,但它现在似乎一直有效。

于 2016-03-11T05:25:04.980 回答
1

我认为您为标签设置的制作代码可能与您从 Cloudinary 获得的屏蔽代码冲突。

于 2016-03-11T04:25:21.063 回答
1

Cloudinary API 返回的 URLImage 不适用于 Label.setMask() 方法,因为从技术上讲,URLImage 是一个动画图像(它是一个占位符图像,直到它完成加载,然后“动画”成为目标图片)。

我刚刚发布了新版本的 cloudinary cn1lib,它为您提供了解决此问题的几个选项。

我添加了两种新image()方法。一个ImageAdapter参数,您可以使用该参数将蒙版应用于图像本身,然后将其设置为标签的图标。那么你根本不会使用 Label.setMask() 。

在此处查看此方法的 javadocs

另一种方法使用下面新的 Async 图像加载 API 来异步加载图像。您在回调中收到的图像是“真实”图像,因此您可以正常使用蒙版。

在此处查看此方法的 javadocs

如果您尝试添加“动画”图像并将其遮盖以使其更清晰,我们正在考虑向 Label.setMask() 和 setIcon() 方法添加软警告。

于 2016-03-11T17:10:26.827 回答