Code

Extensions. Compressed+media export improvements (see Bug #386664, Gather Resources...
authorJazzyNico <nicoduf@yahoo.fr>
Tue, 1 Feb 2011 17:22:12 +0000 (18:22 +0100)
committerJazzyNico <nicoduf@yahoo.fr>
Tue, 1 Feb 2011 17:22:12 +0000 (18:22 +0100)
share/extensions/svg_and_media_zip_output.inx
share/extensions/svg_and_media_zip_output.py

index c6597a03f88ebff3db452eb7fafda9a9f99ee68c..f8a4c02f46935b23d474899ce9d0a44cedbaa0c2 100644 (file)
@@ -1,19 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
 <?xml version="1.0" encoding="UTF-8"?>
 <inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
-    <_name>ZIP Output</_name>
-    <id>org.inkscape.output.ZIP</id>
-       <dependency type="extension">org.inkscape.output.svg.inkscape</dependency>
-       <dependency type="executable" location="extensions">svg_and_media_zip_output.py</dependency>
-       <dependency type="executable" location="extensions">inkex.py</dependency>
-    <output>
-               <extension>.zip</extension>
-               <mimetype>application/x-zip</mimetype>
-               <_filetypename>Compressed Inkscape SVG with media (*.zip)</_filetypename>
-               <_filetypetooltip>Inkscape's native file format compressed with Zip and including all media files</_filetypetooltip>
-               <dataloss>false</dataloss>
-       </output>
-    <script>
-        <command reldir="extensions" interpreter="python">svg_and_media_zip_output.py</command>
-               <helper_extension>org.inkscape.output.svg.inkscape</helper_extension>
-       </script>
+  <_name>Compressed Inkscape SVG with media export</_name>
+  <id>org.inkscape.output.ZIP</id>
+  <dependency type="extension">org.inkscape.output.svg.inkscape</dependency>
+  <dependency type="executable" location="extensions">svg_and_media_zip_output.py</dependency>
+  <dependency type="executable" location="extensions">inkex.py</dependency>
+  <param name="image_dir" type="string" _gui-text="Image zip directory:">images</param>
+  <param name="font_list" type="boolean" _gui-text="Add font list">false</param>
+  <output>
+    <extension>.zip</extension>
+    <mimetype>application/x-zip</mimetype>
+    <_filetypename>Compressed Inkscape SVG with media (*.zip)</_filetypename>
+    <_filetypetooltip>Inkscape's native file format compressed with Zip and including all media files</_filetypetooltip>
+    <dataloss>false</dataloss>
+  </output>
+  <script>
+    <command reldir="extensions" interpreter="python">svg_and_media_zip_output.py</command>
+    <helper_extension>org.inkscape.output.svg.inkscape</helper_extension>
+  </script>
 </inkscape-extension>
 </inkscape-extension>
index 640c9ede4c1979dbc3818bd595b3243cefb31ed4..e4b6cb535e4a0cde9916835db2eb078963c31ded 100644 (file)
@@ -1,11 +1,16 @@
 #!/usr/bin/env python
 #!/usr/bin/env python
-"""
+'''
 svg_and_media_zip_output.py
 An extention which collects all images to the documents directory and
 creates a zip archive containing all images and the document
 
 Copyright (C) 2005 Pim Snel, pim@lingewoud.com
 Copyright (C) 2008 Aaron Spike, aaron@ekips.org
 svg_and_media_zip_output.py
 An extention which collects all images to the documents directory and
 creates a zip archive containing all images and the document
 
 Copyright (C) 2005 Pim Snel, pim@lingewoud.com
 Copyright (C) 2008 Aaron Spike, aaron@ekips.org
+Copyright (C) 2011 Nicolas Dufour, nicoduf@yahoo.fr
+    * Fix for a bug related to special caracters in the path (LP #456248).
+    * Fix for Windows support (LP #391307 ).
+    * Font list and image directory features.
+
 this is  the first Python script  ever created
 its based on embedimage.py
 
 this is  the first Python script  ever created
 its based on embedimage.py
 
@@ -23,17 +28,14 @@ You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 along with this program; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
-Version 0.5 (Nicolas Dufour, nicoduf@yahoo.fr)
-    Fix a bug related to special caracters in the path (LP #456248).
-
-TODO
+TODOs
 - fix bug: not saving existing .zip after a Collect for Output is run
      this bug occurs because after running an effect extention the inkscape:output_extension is reset to svg.inkscape
      the file name is still xxx.zip. after saving again the file xxx.zip is written with a plain .svg which
      looks like a corrupt zip
 - maybe add better extention
 - consider switching to lzma in order to allow cross platform compression with no encoding problem...
 - fix bug: not saving existing .zip after a Collect for Output is run
      this bug occurs because after running an effect extention the inkscape:output_extension is reset to svg.inkscape
      the file name is still xxx.zip. after saving again the file xxx.zip is written with a plain .svg which
      looks like a corrupt zip
 - maybe add better extention
 - consider switching to lzma in order to allow cross platform compression with no encoding problem...
-"""
+'''
 
 import inkex
 import urlparse
 
 import inkex
 import urlparse
@@ -44,18 +46,42 @@ import zipfile
 import shutil
 import sys
 import tempfile
 import shutil
 import sys
 import tempfile
+import simplestyle
 import gettext
 import gettext
+import locale
+locale.setlocale(locale.LC_ALL, '')
 _ = gettext.gettext
 
 _ = gettext.gettext
 
-class SVG_and_Media_ZIP_Output(inkex.Effect):
+class CompressedMediaOutput(inkex.Effect):
     def __init__(self):
         inkex.Effect.__init__(self)
         if os.name == 'nt':
             self.encoding = "cp437"
         else:
     def __init__(self):
         inkex.Effect.__init__(self)
         if os.name == 'nt':
             self.encoding = "cp437"
         else:
-            self.encoding = "latin-1"     
+            self.encoding = "latin-1"
+        self.text_tags = ['{http://www.w3.org/2000/svg}tspan',
+                            '{http://www.w3.org/2000/svg}text',
+                            '{http://www.w3.org/2000/svg}flowRoot',
+                            '{http://www.w3.org/2000/svg}flowPara',
+                            '{http://www.w3.org/2000/svg}flowSpan']
+        self.OptionParser.add_option("--image_dir",
+                                     action="store", type="string",
+                                     dest="image_dir", default="",
+                                     help="Image directory")
+        self.OptionParser.add_option("--font_list",
+                                     action="store", type="inkbool",
+                                     dest="font_list", default=False,
+                                     help="Add font list")
+        self.OptionParser.add_option("--tab",
+                                     action="store", type="string",
+                                     dest="tab",
+                                     help="The selected UI-tab when OK was pressed")
 
     def output(self):
 
     def output(self):
+        '''
+        Writes the temporary compressed file to its destination
+        and removes the temporary directory.
+        '''
         out = open(self.zip_file,'rb')
         if os.name == 'nt':
             try:
         out = open(self.zip_file,'rb')
         if os.name == 'nt':
             try:
@@ -65,74 +91,138 @@ class SVG_and_Media_ZIP_Output(inkex.Effect):
                 pass
         sys.stdout.write(out.read())
         out.close()
                 pass
         sys.stdout.write(out.read())
         out.close()
-        self.clear_tmp()
-
-    def clear_tmp(self):
         shutil.rmtree(self.tmp_dir)
 
         shutil.rmtree(self.tmp_dir)
 
-    def effect(self):
-        ttmp_orig = self.document.getroot()
-
-        docname = ttmp_orig.get(inkex.addNS('docname',u'sodipodi'))
-        if docname is None: docname = self.args[-1]
-
-        #create os temp dir
-        self.tmp_dir = tempfile.mkdtemp()
-
-        #fixme replace whatever extention
-        docstripped = docname.replace('.zip', '')
-        docstripped = docstripped.replace('.svg', '')
-        docstripped = docstripped.replace('.svgz', '')
-        
-        # create destination zip in same directory as the document
-        self.zip_file = os.path.join(self.tmp_dir, docstripped) + '.zip'
-        z = zipfile.ZipFile(self.zip_file, 'w')
-
-        #read tmpdoc and copy all images to temp dir
+    def collect_images(self, docname, z):
+        '''
+        Collects all images in the document
+        and copy them to the temporary directory.
+        '''
+        if locale.getpreferredencoding():
+          dir_locale = locale.getpreferredencoding()
+        else:
+          dir_locale = "UTF-8"
+        dir = unicode(self.options.image_dir, dir_locale)
         for node in self.document.xpath('//svg:image', namespaces=inkex.NSS):
         for node in self.document.xpath('//svg:image', namespaces=inkex.NSS):
-            self.collectAndZipImages(node, docname, z)
-
-        ##copy tmpdoc to tempdir
+            xlink = node.get(inkex.addNS('href',u'xlink'))
+            if (xlink[:4] != 'data'):
+                absref = node.get(inkex.addNS('absref',u'sodipodi'))
+                url = urlparse.urlparse(xlink)
+                href = urllib.url2pathname(url.path)
+                
+                if (href != None):
+                    absref = os.path.realpath(href)
+
+                absref = unicode(absref, "utf-8")
+                image_path = os.path.join(dir, os.path.basename(absref))
+                
+                if (os.path.isfile(absref)):
+                    shutil.copy(absref, self.tmp_dir)
+                    z.write(absref, image_path.encode(self.encoding))
+                elif (os.path.isfile(os.path.join(self.tmp_dir, absref))):
+                    # TODO: please explain why this clause is necessary
+                    shutil.copy(os.path.join(self.tmp_dir, absref), self.tmp_dir)
+                    z.write(os.path.join(self.tmp_dir, absref), image_path.encode(self.encoding))
+                else:
+                    inkex.errormsg(_('Could not locate file: %s') % absref)
+
+                node.set(inkex.addNS('href',u'xlink'), image_path)
+                #node.set(inkex.addNS('absref',u'sodipodi'), image_path)
+
+    def collect_SVG(self, docstripped, z):
+        '''
+        Copy SVG document to the temporary directory
+        and add it to the temporary compressed file
+        '''
         dst_file = os.path.join(self.tmp_dir, docstripped)
         stream = open(dst_file,'w')
         dst_file = os.path.join(self.tmp_dir, docstripped)
         stream = open(dst_file,'w')
-
         self.document.write(stream)
         self.document.write(stream)
-
         stream.close()
         stream.close()
-
         z.write(dst_file,docstripped.encode(self.encoding)+'.svg')
 
         z.write(dst_file,docstripped.encode(self.encoding)+'.svg')
 
-        z.close()
-
-    def collectAndZipImages(self, node, docname, z):
-        xlink = node.get(inkex.addNS('href',u'xlink'))
-        if (xlink[:4]!='data'):
-            absref=node.get(inkex.addNS('absref',u'sodipodi'))
-            url=urlparse.urlparse(xlink)
-            href=urllib.url2pathname(url.path)
-            
-            if (href != None):
-                absref=os.path.realpath(href)
-
-            absref=unicode(absref, "utf-8")
-
-            if (os.path.isfile(absref)):
-                shutil.copy(absref, self.tmp_dir)
-                z.write(absref, os.path.basename(absref).encode(self.encoding))
-            elif (os.path.isfile(os.path.join(self.tmp_dir, absref))):
-                #TODO: please explain why this clause is necessary
-                shutil.copy(os.path.join(self.tmp_dir, absref), self.tmp_dir)
-                z.write(os.path.join(self.tmp_dir, absref),
-                        os.path.basename(absref).encode(self.encoding))
+    def is_text(self, node):
+        '''
+        Returns true if the tag in question is an element that
+        can hold text.
+        '''
+        return node.tag in self.text_tags
+
+    def get_fonts(self, node):
+        '''
+        Given a node, returns a list containing all the fonts that
+        the node is using.
+        '''
+        fonts = []
+        font_familly = ''
+        font_weight = ''
+        s = ''
+        if 'style' in node.attrib:
+            s = simplestyle.parseStyle(node.attrib['style'])
+        if not s:
+            return fonts
+        if s['font-weight']:
+            font_weight = s['font-weight']
+        if s['font-family']:
+            font_familly = s['font-family']
+        fonts.append(font_familly + ' ' + font_weight)
+        return fonts
+
+    def list_fonts(self, z):
+        '''
+        Walks through nodes, building a list of all fonts found, then
+        reports to the user with that list.
+        Based on Craig Marshall's replace_font.py
+        '''
+        items = []
+        nodes = []
+        items = self.document.getroot().getiterator()
+        nodes.extend(filter(self.is_text, items))
+        fonts_found = []
+        for node in nodes:
+            for f in self.get_fonts(node):
+                if not f in fonts_found:
+                    fonts_found.append(f)
+        findings = sorted(fonts_found)
+        # Write list to the temporary compressed file
+        filename = 'fontlist.txt'
+        dst_file = os.path.join(self.tmp_dir, filename)
+        stream = open(dst_file,'w')
+        if len(findings) == 0:
+            stream.write(_("Didn't find any fonts in this document/selection."))
+        else:
+            if len(findings) == 1:
+                stream.write(_("Found the following font only: %s") % findings[0])
             else:
             else:
-                inkex.errormsg(_('Could not locate file: %s') % absref)
+                stream.write(_("Found the following fonts:\n%s") % '\n'.join(findings))
+        stream.close()
+        z.write(dst_file, filename)
+
 
 
-            node.set(inkex.addNS('href',u'xlink'),os.path.basename(absref))
-            node.set(inkex.addNS('absref',u'sodipodi'),os.path.basename(absref))
+    def effect(self):
+        docroot = self.document.getroot()
+        docname = docroot.get(inkex.addNS('docname',u'sodipodi'))
+        #inkex.errormsg(_('Locale: %s') % locale.getpreferredencoding())
+        if docname is None:
+            docname = self.args[-1]
+        # TODO: replace whatever extention
+        docstripped = os.path.basename(docname.replace('.zip', ''))
+        docstripped = docstripped.replace('.svg', '')
+        docstripped = docstripped.replace('.svgz', '')
+        # Create os temp dir
+        self.tmp_dir = tempfile.mkdtemp()
+        # Create destination zip in same directory as the document
+        self.zip_file = os.path.join(self.tmp_dir, docstripped) + '.zip'
+        z = zipfile.ZipFile(self.zip_file, 'w')
+
+        self.collect_images(docname, z)
+        self.collect_SVG(docstripped, z)
+        if self.options.font_list == True:
+            self.list_fonts(z)
+        z.close()
 
 
 if __name__ == '__main__':   #pragma: no cover
 
 
 if __name__ == '__main__':   #pragma: no cover
-    e = SVG_and_Media_ZIP_Output()
+    e = CompressedMediaOutput()
     e.affect()
 
 
     e.affect()