Codename One来自互联网来源的圆形图像

时间:2016-03-10 05:54:34

标签: codenameone parparvm

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

我认为如果我在图像上应用蒙版,那么它可能不会生效,因为在应用蒙版时没有下载图像。

但我似乎不明白为什么在标签上调用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 

3 个答案:

答案 0 :(得分: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,我非常感谢你的时间!非常感谢你。如果以后给我任何其他问题,它将不得不深入研究它,但它似乎一直在努力。

答案 1 :(得分:1)

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

答案 2 :(得分:1)

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

我刚刚发布了一个new version的cloudinary cn1lib,它提供了几个解决此问题的方法。

我添加了两个新的image()方法。在将其设置为标签的图标之前,可以使用ImageAdapter参数将掩码应用于图像本身。那么你根本就不会使用Label.setMask()。

请参阅javadocs for this method here

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

请参阅javadocs for this method here

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