Packaging Font Files for Purchase
Rodrigo Saiani
Posts: 78
Hi,
How do you go about creating the zip files for purchase in your type store – desktop and webfont – (if you do it at all).
Do you do it by hand or know a great tool that saves you lots of time? I'm interested in the latter
Thank you!
How do you go about creating the zip files for purchase in your type store – desktop and webfont – (if you do it at all).
Do you do it by hand or know a great tool that saves you lots of time? I'm interested in the latter
Thank you!
Tagged:
0
Comments
-
… a great tool that saves you lots of time?
Sure: Automator, which comes free with every Mac.
If I update anything in our font packages (font files, PDF specimens, EULA PDF) I just need one click to re-create all packages at once. Folders, ZIP-files, whatever you like.
You can also let Automator put the date into the names, so you can always keep track of all the versions you have created and shipped in the past.1 -
Note that ZIP files created in a Mac will display some extra files when opened in a PC. And this it not the case the other way around.0
-
I use AppleScript to build packages. I could use Automator (which is basically just a visual interface to AppleScript), but I’m just more familiar with working directly in Script Editor.
There used to be an app called ZipIt that would create .zip files without the extra Mac stuff, but it was PowerPC-only. More recently I’ve been using StuffIt Deluxe which gives you all sorts of options for creating .zip files, such as leaving out the extra Mac stuff. It also lets you create a sort of shortcut with the settings you like with a thing called DropStuff. Using this, I can just select all the folders and drag them onto DropStuff, creating all the .zip files in one step.1 -
Note that ZIP files created in a Mac will display some extra files when opened in a PC.
You can just drag & drop the files onto ZipCleaner if necessary:
https://www.macupdate.com/app/mac/25497/zipcleaner1 -
One thing I like about DropStuff is that you can configure it so that it creates a separate .zip for each item if you drag multiple items onto it, rather than a single .zip containing all the items. Although, there's probably a way to get the same effect with Automator.0
-
I also use drop stuff. Sure I could write automated actions or try to remember the right switches for the command line version of zip. But I don't do that many font releases so it's easier to just drag-and-drop0
-
-
When I had trouble long time ago, John Collins told me to get YemuZip. It does batch or single file zips without the Mac stuff, and it's free:
http://www.yellowmug.com/yemuzip/4 -
Right you are, Jan. YemuZip It all!
I've been using this simple app for years... never any issues.1 -
YemuZip here too.
0 -
That looks like a nice option if you only have a few to do. When I do a distribution set for Proxima Nova, I need to make 79 separate .zip files for some vendors. DropStuff can do it in one step.3
-
Abuse flag = "79 separate .zip files for some vendors."
I would go straight to their clients, or another vendor if they couldn't handle one .zip file per family. Oh wait — do we do that?0 -
David, Mark is not doing the abusing. I know the vendor too, and I do not mind. Please remove the mark. We had enough of that stuff recently.0
-
It’s MyFonts. It gets kind of crazy when it’s a big family. Most other vendors just need the fonts and a spreadsheet to specify the various packages and prices. But, hey, no big deal when you have a computer to do it.0
-
Just kidding.1
-
I usually use WinRAR but every once in a while, when I'm dealing with my full set (4 kilofonts). I'll use 7-Zip from the command line using an old-fashioned DOS batch file.
I remember a while ago, MyFonts asked, "why are you bothering with family zips?". At the time, they were the only distributor that had required them, so I deleted them all en-masse. Then a few months later, they asked me why I wasn't including family zips. Aww, man.
Now, when I release new fonts, I update a batch file that can regenerate the whole shebang from the command line with 7-Zip.1 -
By chance does anybody has a YemuZip version that work with 10.6? I checked in OldApps but there is nothing...0
-
2
-
The user and all related content has been deleted.2
-
It is good being King ;-)1
-
Thanks!0
-
I learned that Python has a
zipfile
module that's convenient for generating multiple zips with different permutations of fonts, e.g. —import os, zipfile my_zip_file = zipfile.ZipFile("fonts.zip", 'w', zipfile.ZIP_DEFLATED) for root, dirs, files in os.walk(path_to_fonts): for f in files: zip_file.write(os.path.join(root, f)) my_zip_file.close()
4
Categories
- All Categories
- 43 Introductions
- 3.7K Typeface Design
- 799 Font Technology
- 1K Technique and Theory
- 617 Type Business
- 444 Type Design Critiques
- 541 Type Design Software
- 30 Punchcutting
- 136 Lettering and Calligraphy
- 83 Technique and Theory
- 53 Lettering Critiques
- 483 Typography
- 301 History of Typography
- 114 Education
- 68 Resources
- 498 Announcements
- 79 Events
- 105 Job Postings
- 148 Type Releases
- 165 Miscellaneous News
- 269 About TypeDrawers
- 53 TypeDrawers Announcements
- 116 Suggestions and Bug Reports