How would you define/create generative typography ? I thought also of some sort of "intelligent" adaption. For example a font that uses serifs in certain condition or not… Are there some findings in how you could access the vectors of a font in actionscript ?
generative typography?
924 views Asked by algro At
3
There are 3 answers
0
Pwdr
On
Another possibility is to use the open source programming environment Processing with the library Geomerative. There are functions to access all vector points of the font and play with them. From there you could save the newly generated font as images and use them in actionscript.
Related Questions in APACHE-FLEX
- call Win32 API in flex to set Window Display Affinity
- Adding a listener to a VerticalScrollBar in flex
- Two ane file conflict in one flex mobile application
- Using AS3 Timer & distriqt Notification ANE To Send Notifications While In Sleep Mode
- Creating a vertically draggable container in Adobe Flex 3.5
- There is no save() method in FileReference Class of Flex
- Passing data between MXML files and opening one after Click on another
- How to check a Number in mxml?
- Strange flex module behavior.Module become null when add a little nonsense code
- AS3 can't find the load method on a Loader
- 2032 Flex error while contacting HTTPS REST services
- Error Message not generated
- ASC2 compiler with Flash Builder 4.6
- Is there a class in AS3 that tells you the type of the URL protocol?
- Skip window from being captured
Related Questions in ACTIONSCRIPT-3
- How to create an ActionScript 3.0 in Flash to display Current Date, Time and Day of Week
- textinput.needsSoftKeyboard does not work (air for android)
- AS3 Get currentFrame of current MovieClip
- call Win32 API in flex to set Window Display Affinity
- Air Native Extensions: Released Air App w/Windows Native Extension works fine on develpment PC but not on other computers
- TestFlight API and stats with as3
- Error while using removeChild() and accessing members of array
- Flash erase image with mask - gotoandplay next frame
- Adding a listener to a VerticalScrollBar in flex
- AS3 array to clean up long code?
- AS3 - How can objects that appear randomly never touch each other?
- import a sound externally or from the library? AS3
- Nesting Asynchronous Promises in ActionScript
- AS3 - How can multiple objects that appear randomly NEVER touch each other?
- ActionScript + Ruby
Related Questions in FONTS
- How do I find the fonts that are not loading in a CORS situation ( MoovWeb )?
- css font-family doesnt work on internet explorer
- How get to know what font family does anchor element use
- Firefox Windows / Linux inconstancies
- Using GLYPHICONS's free pngs with classes
- Java Swing: JLabel´s Text / Font shown incompletely
- Xib taking long time (>1s) to load. UIFont cache seems to blame
- HTML validation generates error
- Failed to decode downloaded font on expressJS/NodeJS
- fpdf custom font works but not on any other computer
- Is there a font with 3px max width
- Design Issue - Making a Font Global (C++, Marmalade)
- How to understand this CSS inheritance (or override, selection)
- Adobe Flash Pro: Locate asset with missing font
- Use font awesome star rating define by width
Related Questions in TYPOGRAPHY
- How does UILabel vertically center its text?
- Modular Scale line-heights
- How to specify a web safe user default font if google font is not available
- Diacritics doesn't incorrect font with @font-face
- Typography.Capitals not working on Windows 7
- How to use All-Caps in First Line of paragraph in Webkit Browsers (Chrome, Safari)
- Which are the correct font files to load?
- Certain parts of typography (letters) respond to width / height of window?
- control line break to create shapes
- Cannot get FlowType.js to work
- Responsive typography - text too small
- CSS underline and letter-spacing
- How to prevent text-shadow from overlapping text on previous line
- How do fonts react to font-weight when those are OS fonts?
- some css queries not working
Related Questions in GENERATIVE
- how handle categorical data in sklearn GMM mixture model
- include gpt model to comment my code or data
- Suggested methods of timing individual prompt / completion response from LLM? any options other than 'time'?
- Deploy LLM using Sagemaker and Langchain
- Question about transition matrix Q in D3PM diffusion model for discrete state space
- Can not solve this error in pytorch: RuntimeError: one of the variables needed for gradient computation has been modified by an inplace operation
- Creating a repeatable, random looking distribution of objects in Flash
- How would I go about plotting "live" stock market data with Processing, jQuery, Pure Data or Max/MSP?
- generative typography?
- Difference between Generative, Discriminating and Parametric, Nonparametric Algorithm/Model
- Writing phenaki video to file: Expected numpy array with ndim `3` but got `4`
- Does Keras nested models share attributes?
- Generating documents from LDA topic model
- LineTrace algorithim in processing
- How to update GAN Generator and Discriminator asynchronously in Tensorflow?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Metafont generates fonts from parameterized descriptions. For instance, the Computer Modern fonts have 70 or so parameters, and all variants (serif, sans, typewriter, bold, italic...) are generated from a single Metapost source. Some fonts, when generated for a funky version of the PostScript format, would even randomize themselves at raster time, so you could not print the exact same page twice.
Douglas Hofstadter also talks about generating fonts in his Metamagical Themas book...
Generally, these ideas have not really taken root, though. There are Multiple Master fonts, and smart ligatures in OpenType fonts, but no real dynamic generation.