如果我在 AS3 中从 Google Chrome 或 Internet Explorer 拖放图像,如何获取图像 [英] How to get image if I drag and drop an Image from Google Chrome or Internet Explorer in AS3

查看:24
本文介绍了如果我在 AS3 中从 Google Chrome 或 Internet Explorer 拖放图像,如何获取图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将图像从 Google Chrome 或 Internet Explorer 拖放到我的 Flex 项目中,但我无法直接从 Mozilla Firefox 等临时文件夹中获取图像,

I am trying to drag an Image from Google Chrome or Internet Explorer and Drop into my Flex Project but I am unable to get Image directly from temp folder like Mozilla Firefox,

例如,在 Mozilla Firefox 的情况下,我使用以下代码从系统临时文件夹中获取拖放图像:

For Example I am using the following codes go get drag drop images from system temp folder in case of Mozilla Firefox:

this.addEventListener(NativeDragEvent.NATIVE_DRAG_DROP, onNativeDragDrop);

private function onNativeDragDrop(vEvent:NativeDragEvent)
{
    var dropFiles:Array = vEvent.clipboard.getData(ClipboardFormats.FILE_LIST_FORMAT) as Array;

    if(dropFiles && dropFiles.length > 0)
    {
        var original:File = File(dropFiles[0]);
        var nativePath:String = original.nativePath;
    }
}

在 nativePath 我得到图像最初存储的路径,如:C:\Users\User_Name\AppData\Local\Temp\ubeh2wbl.bmp"

In nativePath i am getting the path where the image is initially stored like : "C:\Users\User_Name\AppData\Local\Temp\ubeh2wbl.bmp"

但是对于 Google Chrome 或 Internet Explorer,我在 nativePath 中得到 NULL.

But In case of Google Chrome or Internet Explorer I am getting NULL in nativePath.

所以我不知道 Google Chrome 或 Internet Explorer 最初存储图像的位置.

So I Don't know where Google Chrome or Internet Explorer initially storing the images.

有没有人知道它在哪里存储或如何解决这个问题?

Does anyone have an idea where it is storing or how to solve this problem ?

推荐答案

我刚试过这个,当你从 Chrome 中将图像拖到 AIR 应用程序上时,它的格式如下:

I just tried this, and when you drag an image from Chrome over the an AIR app, it comes in as the following formats:

  1. 文件承诺清单
  2. 网址
  3. 文字
  4. html

文件承诺列表是空的,所以我们将专注于其他.

The file promise list is empty, so we'll focus on the others.

这是我使用的代码,它通过几种格式回退以尝试获取拖动的图像或图像路径:

Here is the code I used which falls back through several formats to try and get a dragged image or image path:

    private function onNativeDragDrop(e:NativeDragEvent):void
    {
        var img:DisplayObject; //the image (or first image) that was dragged

        //IF IT'S A BITMAP (The easiest, so check it first)
        if (e.clipboard.hasFormat(ClipboardFormats.BITMAP_FORMAT)) {
            var bmd:BitmapData = BitmapData(e.clipboard.getData(ClipboardFormats.BITMAP_FORMAT));

            img = new Bitmap(bmd);
            addChild(img);
            trace("It's a bitmap");
        }

        //IF IT'S FILE(S) that are dragged, try this next
        if (!img && e.clipboard.hasFormat(ClipboardFormats.FILE_LIST_FORMAT)) {

            var dropfiles:Array;
            var file:File;

            dropfiles = e.clipboard.getData(ClipboardFormats.FILE_LIST_FORMAT) as Array;
            for each (file in dropfiles)
            {
                //isImagePath is defiend below
                if (isImagePath(file.nativePath)) {
                    img = loadImage(file.nativePath); //load image function is defined below
                    break; //let's just load the first image
                }
            }

        }

        //IF IT's A URL that was dragged, try this next
        if (!img && e.clipboard.hasFormat(ClipboardFormats.URL_FORMAT)) {
            var url:String = String(e.clipboard.getData(ClipboardFormats.URL_FORMAT));
            trace("It's a url: ", url);
            if (isImagePath(url)) {
                trace("it's a URL image path");
                img = loadImage(url);
            }

        }

        //IF IT's HTML that was dragged, try this next
        if (!img && e.clipboard.hasFormat(ClipboardFormats.HTML_FORMAT)) {
            var html:String = String(e.clipboard.getData(ClipboardFormats.HTML_FORMAT));
            trace("its HTML: ", html);

            //use regex to get all the <img> tags from the html
            var imgs:Array = html.match(/(<img.*?>)/g);

            //if one or more was found
            if (imgs.length) {
                trace("Image tag(s) found");
                var imgPath:String;
                for (var i:int = 0; i < imgs.length; i++) {
                    //use regex to get the src value from the img tag
                    imgPath = imgs[i].match(/src="(.*?)"/)[1];
                    img = loadImage(imgPath);
                    break; //let's just load the first image
                }
            }
        }

        //IF IT's raw text that dragged, try this next
        if (!img && e.clipboard.hasFormat(ClipboardFormats.TEXT_FORMAT)) {
            var txt:String = String(e.clipboard.getData(ClipboardFormats.TEXT_FORMAT));
            trace("its text: ", txt);

            if (isImagePath(txt)) {
                img = loadImage(txt);
            }
        }

    }

    private var imgTypes:Vector.<String> = new < String > ["jpg", "gif", "png"];
    private function isImagePath(path:String):Boolean {
        if (path.lastIndexOf(".") > -1) {
            var ext:String = path.substr(path.lastIndexOf(".")).toLowerCase();
            return new RegExp(imgTypes.join("|")).test(ext);
        }

        return false;
    }

    private function loadImage(path):Loader {
        var l:Loader = new Loader();
        l.load(new URLRequest(path));
        addChild(l);
        return l;
    }

这篇关于如果我在 AS3 中从 Google Chrome 或 Internet Explorer 拖放图像,如何获取图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆