从图书馆批量导出图像?

时间:2010-04-24 22:52:27

标签: flash image export

我有一个flash .fla,它正在编译为.swc并引用图像,但现在我需要从外部加载所有这些图像,而且我没有原始资产。

我知道我可以逐个导出它们,但我在文件中有几百个,并希望找到一种更简单的方法。

任何帮助都会很棒。

2 个答案:

答案 0 :(得分:6)

您可以使用此脚本。它只从您的库中导出位图

//created by Heitara
var folderURI = fl.browseForFolderURL('Select folder where all images should be exported as *.PNG');

var doc = fl.getDocumentDOM();
var newDoc = fl.createDocument();
//fl.outputPanel.trace("Init");

if(doc && newDoc)
{
    fl.outputPanel.trace("Start");
    var library = doc.library;
    var allLibItems = library.items;
    var item;
    var c = 0;
    var selectedItemOnStage;
    var selectionArray;
    var itemName;

    for (var i = 0; i<allLibItems.length; ++i) 
    {
        item = allLibItems[i];//only images will be processed
        if(item.itemType == "bitmap") //|| item.itemType == "graphic")
        {
            // attach image
            newDoc.addItem({x:0.0, y:0.0}, item);

            //postition all items on (0,0) 
            var image = newDoc.getTimeline().layers[0].frames[0].elements[0];
            if(image)
            {

                var hpx = image.hPixels;
                var vpx = image.vPixels;

                newDoc.width = hpx;
                newDoc.height = vpx;
                // we need to reposition the image, otherwise it will be centered
                image.x = 0;

                image.y = 0;
            }

            itemName = item.name.split('.')[0];
            //export as png
            newDoc.exportPNG(folderURI + "/"+itemName +".png",true,true);
            //select all
            newDoc.selectAll();
            //remove selection
            newDoc.deleteSelection();
            //deselect everything
            newDoc.selectNone();
            //output.trace("[END]");

        }

    }
}

//close the new document withut saving it
fl.closeDocument(newDoc, false);

将其保存为.jsfl文件并从闪存中打开。 您还应该打开要从中导出所有图像的.fla文件。

最佳, 埃米尔

P.S。其他解决方案是将.fla重命名为.zip(.rar)文件并提取所有资产。这仅适用于使用最新版本的Flash CS5或CS5 +创建的.fla文件。

答案 1 :(得分:0)

链接已经死了,我找到了这个脚本:

https://github.com/rafaelrinaldi/fla2img