fonts - What is the MIME type for TTF files? -
i can't find correct mime type truetype fonts. need because i'm using file uploading class (codeigniter) upload files, , want allow ttf uploaded. tried this:
'ttf' => 'font/ttf' 'ttf' => 'font/truetype'
with no success.
any ideas ?
ttf not have mime type assigned. you'll have use more general application/octet-stream
, used indicate binary data no assigned mime type.
Comments
Post a Comment