Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

PhotoGIMP

  • 1
  • 2
  • 3

1.0.2020 | Updated: 20 Feb 2021

Downloads:

13,480

Downloads of v 1.0.2020:

13,480

Maintainer(s):

Software Author(s):

  • Diolinux

PhotoGIMP 1.0.2020

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install PhotoGIMP, run the following command from the command line or from PowerShell:

>

To upgrade PhotoGIMP, run the following command from the command line or from PowerShell:

>

To uninstall PhotoGIMP, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade photogimp -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade photogimp -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install photogimp
  win_chocolatey:
    name: photogimp
    version: '1.0.2020'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'photogimp' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.0.2020'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller photogimp
{
    Name     = "photogimp"
    Version  = "1.0.2020"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'photogimp':
  ensure   => '1.0.2020',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved by moderator TheCakeIsNaOH on 20 Feb 2021.

Description

PhotoGIMP

A simple Patch for GIMP 2.10+ to help all Photoshop Users.

  • Tool organization to mimic the position of Adobe's Photoshop;
  • Hundreds of new fonts by default;
  • New Python filters installed by default, such as "heal selection";
  • New Splash Screen
  • New default settings to maximize space on the canvas;
  • Shortcuts similar to the ones on Photoshop, following Adobe's Documentation;
  • New icon and Name from custom .desktop file.
  • The new default language is English (you can still change in the Settings if you want)

Included Fonts

https://github.com/Diolinux/PhotoGIMP/blob/master/fonts.txt

Credits

  • This project would't be possible without the amazing GIMP Team.
  • The Photo in the new Splash is from Isabella Mariana
  • A BIG thanks to all Diolinux's supporters on Twitch and YouTube.

tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop';
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url        = 'https://github.com/Diolinux/PhotoGIMP/releases/download/1.0/PhotoGIMP.by.Diolinux.v2020.for.Flatpak.zip'
$GIMPdata   = "$env:APPDATA\GIMP"

$packageArgs = @{
  packageName    = $env:ChocolateyPackageName
  unzipLocation  = "$env:APPDATA\GIMP"
  url            = $url
  softwareName   = 'PhotoGIMP'
  checksum       = '579DB0BE5FE4AC6669555F3C433D70FAA10D27527FDC119D3A464A2E2A729FAD'
  checksumType   = 'sha256'
  SpecificFolder = "PhotoGIMP by Diolinux v2020 for Flatpak\.var\app\org.gimp.GIMP\config\GIMP\"
}

Install-ChocolateyZipPackage @packageArgs
md -Force "$GIMPdata\2.10" | Out-Null
Copy-Item  -Recurse -Force -Path "$GIMPdata\PhotoGIMP by Diolinux v2020 for Flatpak\.var\app\org.gimp.GIMP\config\GIMP\2.10\*" -Destination "$GIMPdata\2.10" | Out-Null
Remove-Item -Recurse -Force -Path "$GIMPdata\PhotoGIMP by Diolinux v2020 for Flatpak"
tools\chocolateyUninstall.ps1

$ErrorActionPreference = 'Stop';
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
. "$toolsDir\helpers.ps1"
$GIMPdata	= "$env:APPDATA\GIMP\2.10"

$packageArgs = @{
  packageName   = $env:ChocolateyPackageName
  softwareName  = $env:ChocolateyPackageName
}

$uninstalled = $false

ForEach ($file in $files){
		Remove-Item "$GIMPdata\$file" -Force
	}

$tdc="$GIMPdata"
$dirs = gci $tdc -directory -recurse | Where { (gci $_.fullName).count -eq 0 } | select -expandproperty FullName
$dirs | Foreach-Object { Remove-Item $_ }
	
tools\helpers.ps1
$files = @(
'action-history'
'brushes\arrow001.gbr'
'brushes\badge001.gbr'
'brushes\badge002.gbr'
'brushes\cloud001.gbr'
'brushes\cloud002.gbr'
'brushes\damnicons_1.gbr'
'brushes\damnicons_10.gbr'
'brushes\damnicons_2.gbr'
'brushes\damnicons_3.gbr'
'brushes\damnicons_4.gbr'
'brushes\damnicons_5.gbr'
'brushes\damnicons_6.gbr'
'brushes\damnicons_7.gbr'
'brushes\damnicons_8.gbr'
'brushes\damnicons_9.gbr'
'brushes\floral1_brush_by hawksmont1.gbr'
'brushes\floral1_brush_by hawksmont2.gbr'
'brushes\floral1_brush_by hawksmont3.gbr'
'brushes\floral1_brush_by hawksmont4.gbr'
'brushes\floral1_brush_by hawksmont5.gbr'
'brushes\floral1_brush_by hawksmont6.gbr'
'brushes\floral1_brush_by hawksmont7.gbr'
'brushes\floral1_brush_by hawksmont8.gbr'
'brushes\floral1_brush_by hawksmont9.gbr'
'brushes\floral2_brush_by hawksmont1.gbr'
'brushes\floral2_brush_by hawksmont2.gbr'
'brushes\floral2_brush_by hawksmont3.gbr'
'brushes\floral2_brush_by hawksmont4.gbr'
'brushes\floral2_brush_by hawksmont5.gbr'
'brushes\floral2_brush_by hawksmont6.gbr'
'brushes\groove001.gbr'
'brushes\groove002.gbr'
'brushes\groove003.gbr'
'brushes\groove004.gbr'
'brushes\groove005.gbr'
'brushes\groove006.gbr'
'brushes\halftone001.gbr'
'brushes\halftonestar.gbr'
'brushes\honeycomb.gbr'
'brushes\honeycomb2.gbr'
'brushes\icon001.gbr'
'brushes\InnerUniverse_1.gbr'
'brushes\InnerUniverse_2.gbr'
'brushes\InnerUniverse_3.gbr'
'brushes\InnerUniverse_4.gbr'
'brushes\InnerUniverse_5.gbr'
'brushes\InnerUniverse_6.gbr'
'brushes\InnerUniverse_7.gbr'
'brushes\InnerUniverse_8.gbr'
'brushes\orb001.gbr'
'brushes\orb002.gbr'
'brushes\orb003.gbr'
'brushes\ribbon001.gbr'
'brushes\Rush_1.gbr'
'brushes\Rush_10.gbr'
'brushes\Rush_11.gbr'
'brushes\Rush_12.gbr'
'brushes\Rush_2.gbr'
'brushes\Rush_3.gbr'
'brushes\Rush_4.gbr'
'brushes\Rush_5.gbr'
'brushes\Rush_6.gbr'
'brushes\Rush_7.gbr'
'brushes\Rush_8.gbr'
'brushes\Rush_9.gbr'
'brushes\Sem título.gbr'
'brushes\Splatter Brush1.gbr'
'brushes\Splatter Brush10.gbr'
'brushes\Splatter Brush11.gbr'
'brushes\Splatter Brush2.gbr'
'brushes\Splatter Brush3.gbr'
'brushes\Splatter Brush4.gbr'
'brushes\Splatter Brush5.gbr'
'brushes\Splatter Brush6.gbr'
'brushes\Splatter Brush7.gbr'
'brushes\Splatter Brush8.gbr'
'brushes\Splatter Brush9.gbr'
'brushes\star002.gbr'
'brushes\starhalf.gbr'
'brushes\startrail.gbr'
'brushes\swirl001.gbr'
'brushes\swirls001.gbr'
'colorrc'
'contextrc'
'controllerrc'
'devicerc'
'dockrc'
'filters\GimpColorBalanceConfig.settings'
'filters\GimpCurvesConfig.settings'
'filters\GimpGegl-gegl-bloom-config.settings'
'filters\GimpGegl-gegl-channel-mixer-config.settings'
'filters\GimpGegl-gegl-color-temperature-config.settings'
'filters\GimpGegl-gegl-color-to-alpha-config.settings'
'filters\GimpGegl-gegl-dropshadow-config.settings'
'filters\GimpGegl-gegl-exposure-config.settings'
'filters\GimpGegl-gegl-focus-blur-config.settings'
'filters\GimpGegl-gegl-gaussian-blur-config.settings'
'filters\GimpGegl-gegl-high-pass-config.settings'
'filters\GimpGegl-gegl-hue-chroma-config.settings'
'filters\GimpGegl-gegl-lens-flare-config.settings'
'filters\GimpGegl-gegl-long-shadow-config.settings'
'filters\GimpGegl-gegl-median-blur-config.settings'
'filters\GimpGegl-gegl-oilify-config.settings'
'filters\GimpGegl-gegl-rgb-clip-config.settings'
'filters\GimpGegl-gegl-saturation-config.settings'
'filters\GimpGegl-gegl-shadows-highlights-config.settings'
'filters\GimpGegl-gegl-variable-blur-config.settings'
'filters\GimpGegl-gimp-colorize-config.settings'
'filters\GimpGegl-gimp-desaturate-config.settings'
'filters\GimpGegl-gimp-threshold-config.settings'
'filters\GimpHueSaturationConfig.settings'
'filters\GimpLevelsConfig.settings'
'fonts\4shadowo.ttf'
'fonts\A Drink For All Ages.TTF'
'fonts\AAJAX.TTF'
'fonts\Aarcover.ttf'
'fonts\AARDV.TTF'
'fonts\Abduction.ttf'
'fonts\abduction2002.ttf'
'fonts\ABODE___.TTF'
'fonts\abscibi_.ttf'
'fonts\abscii__.ttf'
'fonts\ACCELERA.TTF'
'fonts\ACID.TTF'
'fonts\acidrefl.ttf'
'fonts\acmesab.TTF'
'fonts\acmesai.TTF'
'fonts\Action Man Bold Italic.ttf'
'fonts\Action Man Extended Bold.ttf'
'fonts\Action Man Extended Italic.ttf'
'fonts\Action Man Italic.ttf'
'fonts\Action Man Shaded Italic.ttf'
'fonts\Action Man.ttf'
'fonts\actionj.ttf'
'fonts\Actionwd.ttf'
'fonts\Actionwi.ttf'
'fonts\Action_Force.ttf'
'fonts\AdamFont.TTF'
'fonts\ADAMN.TTF'
'fonts\ADD-SHAD.TTF'
'fonts\addcityboy.TTF'
'fonts\AddSpeedy.ttf'
'fonts\ADISPORT.TTF'
'fonts\Advert-Italic.ttf'
'fonts\Advert-Regular.ttf'
'fonts\aescrawl.ttf'
'fonts\aesymatt.ttf'
'fonts\Aethv2c.ttf'
'fonts\Aethv2i.ttf'
'fonts\african.ttf'
'fonts\AFTEDCI_.TTF'
'fonts\AfterShock.ttf'
'fonts\agenda__.ttf'
'fonts\aggstock.ttf'
'fonts\Aileenation.ttf'
'fonts\aira.ttf'
'fonts\airaa.ttf'
'fonts\airab.ttf'
'fonts\AIRABM.FON'
'fonts\airali.ttf'
'fonts\AIRCONDI.TTF'
'fonts\airmoles.ttf'
'fonts\aironeb.ttf'
'fonts\aironec.ttf'
'fonts\AIRSTREA.TTF'
'fonts\Alanden_.ttf'
'fonts\ALBAM___.TTF'
'fonts\ALBA____.TTF'
'fonts\ALBED___.TTF'
'fonts\Alcohole.ttf'
'fonts\ALDBIT2.FON'
'fonts\ALDO6.TTF'
'fonts\ALDOM2.TTF'
'fonts\ALEAWBB_.TTF'
'fonts\alex.ttf'
'fonts\alex3d.ttf'
'fonts\ALEXA.TTF'
'fonts\ALEXBM.FON'
'fonts\alexei.ttf'
'fonts\alexl.ttf'
'fonts\alexlci.ttf'
'fonts\Alexlco.ttf'
'fonts\Alexlcoi.ttf'
'fonts\alexle.ttf'
'fonts\ALFABET_.ttf'
'fonts\AlfredDrake.ttf'
'fonts\ALFREDO.TTF'
'fonts\Alfred_24.ttf'
'fonts\ALIEEB__.TTF'
'fonts\ALIEESB_.TTF'
'fonts\ALIEESI_.TTF'
'fonts\Alien-Encounters-Solid-Bold-Italic.ttf'
'fonts\Alien-Encounters-Solid-Bold.ttf'
'fonts\Alien-Encounters-Solid-Italic.ttf'
'fonts\alienmarks.ttf'
'fonts\ALIENSAT.TTF'
'fonts\ALLED___.TTF'
'fonts\ALMAGRO_.TTF'
'fonts\ALMAI___.TTF'
'fonts\almonte.ttf'
'fonts\almontew.ttf'
'fonts\Alpha-Silouettes 3.ttf'
'fonts\AlphaFridgeMagnets.ttf'
'fonts\AlphaMaleModern.ttf'
'fonts\AlphaRope.ttf'
'fonts\Alphav2.ttf'
'fonts\AlphaWood.ttf'
'fonts\ALPHC___.TTF'
'fonts\ALPHMA__.TTF'
'fonts\ALPNI___.TTF'
'fonts\ALPNMAIN.TTF'
'fonts\alsscrp.ttf'
'fonts\alterna.ttf'
'fonts\amalgama.ttf'
'fonts\amarurgt.ttf'
'fonts\ambages.ttf'
'fonts\Ambrosia.ttf'
'fonts\Amerdexp.ttf'
'fonts\Amerdsc__.ttf'
'fonts\AMERDUB_.TTF'
'fonts\American Life Normal.ttf'
'fonts\AMERIKA_.ttf'
'fonts\amiga4ever pro.ttf'
'fonts\Amina.ttf'
'fonts\amor.ttf'
'fonts\AMOST___.TTF'
'fonts\AMSTHN__.TTF'
'fonts\AnasthesiaItalic.ttf'
'fonts\Anatevka Caps.ttf'
'fonts\ANCREON.TTF'
'fonts\Anderson Four Feather Falls.ttf'
'fonts\Anderson The Mysterons.ttf'
'fonts\ANDIRONO.TTF'
'fonts\androidnation_b.ttf'
'fonts\Anger is a gift.ttf'
'fonts\AngieGroovin.ttf'
'fonts\AngieImpressing.ttf'
'fonts\AngiePierced.ttf'
'fonts\ANGLEPOI.TTF'
'fonts\angltrr.ttf'
'fonts\Angular.ttf'
'fonts\animeace.ttf'
'fonts\animeace_b.ttf'
'fonts\anirm___.ttf'
'fonts\annifont.ttf'
'fonts\ANODETONOONE.TTF'
'fonts\Another_.ttf'
'fonts\AnthologY.ttf'
'fonts\Anthracite.ttf'
'fonts\ANTIESTA.TTF'
'fonts\antimony.TTF'
'fonts\ANTSYPAN.TTF'
'fonts\ANUNE___.TTF'
'fonts\AONCC___.TTF'
'fonts\apocalypse.ttf'
'fonts\APPETITE.TTF'
'fonts\Apple Butter.ttf'
'fonts\AppleGaramond-Bold.ttf'
'fonts\AppleGaramond-Italic.ttf'
'fonts\Aquarit.ttf'
'fonts\ARABOLIC.TTF'
'fonts\ARBEKA__.TTF'
'fonts\ARBEL___.TTF'
'fonts\ARCADE.TTF'
'fonts\ARCADECLASSIC.TTF'
'fonts\ARCADE_R.TTF'
'fonts\arcanum.ttf'
'fonts\arcanum_b.ttf'
'fonts\ARCHBLC_.TTF'
'fonts\Archbli_.ttf'
'fonts\ARCHBLR_.TTF'
'fonts\ARE YOU HUNG UP.TTF'
'fonts\ARGOSY.TTF'
'fonts\ArgPriht.ttf'
'fonts\ARIZAN__.ttf'
'fonts\armalite.ttf'
'fonts\Armgedon.ttf'
'fonts\Army Hollow Condensed.ttf'
'fonts\Army Hollow.ttf'
'fonts\Army Thin.ttf'
'fonts\Army Wide.ttf'
'fonts\armybeans.ttf'
'fonts\ARROBATH.TTF'
'fonts\ARRRMB__.TTF'
'fonts\Artbrush.ttf'
'fonts\arthriti.ttf'
'fonts\Ascent 2 Stardom.ttf'
'fonts\asciid.``[fontvir.us``].ttf'
'fonts\ASENINE_.ttf'
'fonts\ASENST__.ttf'
'fonts\ASENW___.ttf'
'fonts\asie.ttf'
'fonts\ASMAN.TTF'
'fonts\AsmatFont2007.ttf'
'fonts\ASSEENONTV.ttf'
'fonts\ASSEENONTVSKEW.ttf'
'fonts\astronbi.ttf'
'fonts\ASWELL__.TTF'
'fonts\atauruse.ttf'
'fonts\ataurusei.ttf'
'fonts\ataurusp.ttf'
'fonts\atauruspi.ttf'
'fonts\ataxia.ttf'
'fonts\Atlas of the Magi.ttf'
'fonts\ATLASSOL.TTF'
'fonts\ATLAS___.TTF'
'fonts\AtoZ.ttf'
'fonts\ATTRACTMOREWOMEN.ttf'
'fonts\augie.ttf'
'fonts\AUNTBERT.TTF'
'fonts\AUSPROBE.TTF'
'fonts\Austrise.ttf'
'fonts\automin.ttf'
'fonts\AVATB___.TTF'
'fonts\Avond_01.ttf'
'fonts\Avond_06.ttf'
'fonts\Avond_07.ttf'
'fonts\Avond_09.ttf'
'fonts\Avond_12.ttf'
'fonts\Avond_14.ttf'
'fonts\Avond_15.ttf'
'fonts\Avond_17.ttf'
'fonts\Avond_18.ttf'
'fonts\Avond_19.ttf'
'fonts\Avqest.ttf'
'fonts\AwlScrawl.ttf'
'fonts\AXAXAX.TTF'
'fonts\Ayuma2yk.ttf'
'fonts\b5hollow.ttf'
'fonts\Babelfish.ttf'
'fonts\BABIND.TTF'
'fonts\BABYCAKE.ttf'
'fonts\BABYJEEP.TTF'
'fonts\BABYK___.TTF'
'fonts\Bachelor.ttf'
'fonts\BACKO___.TTF'
'fonts\Baldur Shadow.ttf'
'fonts\Baldur.ttf'
'fonts\BALLS___.TTF'
'fonts\BALTAR.ttf'
'fonts\bamfi.ttf'
'fonts\bamfout.ttf'
'fonts\bandless.ttf'
'fonts\BARBATRI.TTF'
'fonts\Barber_shop.ttf'
'fonts\barcoding.ttf'
'fonts\Barlos-Random.ttf'
'fonts\barrel.ttf'
'fonts\Barrio30.ttf'
'fonts\BASIF___.TTF'
'fonts\BatikDayakFont.ttf'
'fonts\batmfa__.ttf'
'fonts\BATS_26DRAGONS-ABADDON.ttf'
'fonts\Battlev2c.ttf'
'fonts\Battlev2e.ttf'
'fonts\Battlev2i.ttf'
'fonts\Battlev2l.ttf'
'fonts\Battlev2li.ttf'
'fonts\Battlev2p.ttf'
'fonts\Battlev2r.ttf'
'fonts\Battlev2s.ttf'
'fonts\Battlev2si.ttf'
'fonts\Battle_Beasts.ttf'
'fonts\BAUERG__.TTF'
'fonts\baveuse3.ttf'
'fonts\Bazzomba.ttf'
'fonts\Bbqcowmo.ttf'
'fonts\BDROCKET.TTF'
'fonts\beaggressive.ttf'
'fonts\beam3d.ttf'
'fonts\beambil.ttf'
'fonts\beambl.ttf'
'fonts\beamc.ttf'
'fonts\beame.ttf'
'fonts\beamil.ttf'
'fonts\BEANTOWN.TTF'
'fonts\BEARPAW_.TTF'
'fonts\Beast Wars.ttf'
'fonts\BeatnikHayseed.ttf'
'fonts\BEAUTYSC.TTF'
'fonts\Beccaria.ttf'
'fonts\BEDBUG.TTF'
'fonts\bediz___.ttf'
'fonts\Beethoven.ttf'
'fonts\BeethovenRougher.ttf'
'fonts\BEETLE.TTF'
'fonts\Beffle Medium.ttf'
'fonts\BELIEVER.TTF'
'fonts\belizarius.ttf'
'fonts\BELSHAW_.TTF'
'fonts\beneg___.ttf'
'fonts\BenjaminFranklin.ttf'
'fonts\BENNB___.TTF'
'fonts\BEOWULF_MODERN.ttf'
'fonts\berirg__.ttf'
'fonts\Beryliub.ttf'
'fonts\Beryliui.ttf'
'fonts\bewilder.ttf'
'fonts\bewildet.ttf'
'fonts\Beyond Wonderland.ttf'
'fonts\Bicycle.ttf'
'fonts\BicycleFancy.ttf'
'fonts\BigDots.ttf'
'fonts\BigElla.ttf'
'fonts\bigfish.ttf'
'fonts\BigSquareDots.ttf'
'fonts\BikerBones.ttf'
'fonts\Bikids.TTF'
'fonts\BILLH___.TTF'
'fonts\BIO.TTF'
'fonts\biocomc.ttf'
'fonts\biocome.ttf'
'fonts\BIOS.TTF'
'fonts\BIOST.TTF'
'fonts\Biotyp.ttf'
'fonts\Biotypgi.ttf'
'fonts\Biotypi.ttf'
'fonts\Biotypl.ttf'
'fonts\Biotypm.ttf'
'fonts\Biotypoi.ttf'
'fonts\Biotyps.ttf'
'fonts\BIRDLANB.ttf'
'fonts\bit01.ttf'
'fonts\BITING.TTF'
'fonts\BitLine15(sRB).TTF'
'fonts\Bizar Loved Triangles.ttf'
'fonts\BizarreBlack.ttf'
'fonts\bjorkfont.ttf'
'fonts\bknuckss.ttf'
'fonts\bknuckst.ttf'
'fonts\BLACKADD.TTF'
'fonts\BLACKBOYSONMOPEDS.ttf'
'fonts\BLACKFOR.TTF'
'fonts\Blacklettersh.ttf'
'fonts\BLACKNIT.TTF'
'fonts\Blacktop.ttf'
'fonts\BLACR___.TTF'
'fonts\Blade 2.ttf'
'fonts\BLADRMF_.TTF'
'fonts\blambotcustom.ttf'
'fonts\BLASPHEM.TTF'
'fonts\blasteet.ttf'
'fonts\blasteii.ttf'
'fonts\BLASTER.TTF'
'fonts\blasteri.ttf'
'fonts\Bleeding Freaks Demo.ttf'
'fonts\BLINDFOLD.TTF'
'fonts\Blobg98.ttf'
'fonts\BLOCKHEA.TTF'
'fonts\BLOCKSTE.TTF'
'fonts\BLOCKUP_.ttf'
'fonts\bloktilt.ttf'
'fonts\BLOODGUT.TTF'
'fonts\BLUECA.TTF'
'fonts\BLUECAKE.TTF'
'fonts\bluecond.ttf'
'fonts\bluehigl.ttf'
'fonts\BlueStone.ttf'
'fonts\BN [email protected]'
'fonts\BN-ArNoN.ttf'
'fonts\BN-BlurryDay.ttf'
'fonts\BN-OldFashion.ttf'
'fonts\BN-OuterLine.ttf'
'fonts\BN-Snake.ttf'
'fonts\BNEG98.ttf'
'fonts\BNFontBoy.ttf'
'fonts\BNKuktus.ttf'
'fonts\bobcayge.ttf'
'fonts\bobcaygr.ttf'
'fonts\BOMBARD_.otf'
'fonts\Bombing.ttf'
'fonts\Bonk.ttf'
'fonts\Bonkfat.ttf'
'fonts\Bonkoff.TTF'
'fonts\Bonkout.ttf'
'fonts\BONVIVER.TTF'
'fonts\BoobToob.ttf'
'fonts\BOOGNN__.TTF'
'fonts\BOOSTA__.TTF'
'fonts\BOOTEROF.ttf'
'fonts\BOOTERZZ.ttf'
'fonts\BORG9.TTF'
'fonts\BORON2.TTF'
'fonts\BOTTF___.TTF'
'fonts\bottix.ttf'
'fonts\BOYZRGRO.TTF'
'fonts\bradybun.ttf'
'fonts\BRAIS___.TTF'
'fonts\brandywi.ttf'
'fonts\BRASSAL_.ttf'
'fonts\BRASSST_.ttf'
'fonts\BRIC-A-B.TTF'
'fonts\BRINGTHANOIZE.TTF'
'fonts\BRITCN__.TTF'
'fonts\BritishOutline.ttf'
'fonts\BrocaineDecade.ttf'
'fonts\BROKEN74.TTF'
'fonts\BROKENTOYS.ttf'
'fonts\broken_planew.ttf'
'fonts\bronic.ttf'
'fonts\bronici.ttf'
'fonts\bronics.ttf'
'fonts\BROOKLYN.TTF'
'fonts\Brotherm.ttf'
'fonts\BRUCMT__.TTF'
'fonts\BRUCM___.TTF'
'fonts\BRUTALITY.TTF'
'fonts\BRUTALITYEXTRA.ttf'
'fonts\BUBBLEGUMS.TTF'
'fonts\Bubbly Frog Hollow.ttf'
'fonts\budeasy.ttf'
'fonts\Budhand.ttf'
'fonts\BUDMOB.TTF'
'fonts\BUENAN__.ttf'
'fonts\bulletho.ttf'
'fonts\bullpen3.ttf'
'fonts\bullpen_.ttf'
'fonts\BULWN___.TTF'
'fonts\bummer.ttf'
'fonts\bummer3d.ttf'
'fonts\bummer3di.ttf'
'fonts\bummerc.ttf'
'fonts\bummerci.ttf'
'fonts\bummerlai.ttf'
'fonts\bumped.ttf'
'fonts\Buried.ttf'
'fonts\BURLESQUE.TTF'
'fonts\BURNRBL_.TTF'
'fonts\BurrisShootOut.ttf'
'fonts\BuschGardenz.ttf'
'fonts\BUTTCA__.TTF'
'fonts\buttercr.ttf'
'fonts\bystar.ttf'
'fonts\BYTEB.FON'
'fonts\CACHT___.TTF'
'fonts\Cacophony Out Loud.ttf'
'fonts\CADDY.TTF'
'fonts\cadmi___.ttf'
'fonts\CAELDERA.TTF'
'fonts\CAFFEINE.TTF'
'fonts\cajunboogie.ttf'
'fonts\CALAVERA.TTF'
'fonts\calligula.ttf'
'fonts\CAMEOAPP.TTF'
'fonts\CANTD___.TTF'
'fonts\CAPTH___.ttf'
'fonts\Casket Breath.TTF'
'fonts\CASSZ___.TTF'
'fonts\Castro.ttf'
'fonts\CATHSGBR.TTF'
'fonts\CBGBFont.ttf'
'fonts\ccapshad.ttf'
'fonts\Celestial.ttf'
'fonts\celexa__.ttf'
'fonts\Cerbature.ttf'
'fonts\CertifiedItalic.ttf'
'fonts\CHACHIE_.TTF'
'fonts\ChainFontBlack.ttf'
'fonts\chancur.ttf'
'fonts\ChangChang.ttf'
'fonts\CHAR.TTF'
'fonts\CHARLIE.TTF'
'fonts\chary___.ttf'
'fonts\CHE-BITA.TTF'
'fonts\CHE-HBMB.TTF'
'fonts\CHEATIN.TTF'
'fonts\CHECKBK0.TTF'
'fonts\CHERL___.TTF'
'fonts\CHI-TOWN.TTF'
'fonts\CHICKENW.TTF'
'fonts\CHICM___.TTF'
'fonts\CHICORY_.TTF'
'fonts\CHICSA__.TTF'
'fonts\ChillyMoe.ttf'
'fonts\CHINESER.ttf'
'fonts\CHINESETAKEAWAY.ttf'
'fonts\chintzys.ttf'
'fonts\CHIZZH__.ttf'
'fonts\CHIZZWHO.ttf'
'fonts\CHIZZWO_.ttf'
'fonts\CHODAC__.ttf'
'fonts\Chonker.ttf'
'fonts\CHOWFUN_.TTF'
'fonts\CHR$(32).TTF'
'fonts\CHS_____.TTF'
'fonts\CHUBBY.TTF'
'fonts\chumbly.ttf'
'fonts\CHUNBL__.TTF'
'fonts\Chunk-a-Chip.ttf'
'fonts\Cinderel.ttf'
'fonts\CINEMA.TTF'
'fonts\circulat.ttf'
'fonts\CITYS___.TTF'
'fonts\clasict2.ttf'
'fonts\claw1.ttf'
'fonts\claw2.ttf'
'fonts\cleavttr.ttf'
'fonts\CLOSM___.TTF'
'fonts\COASTERP.TTF'
'fonts\collecrs.ttf'
'fonts\COLLEGE.TTF'
'fonts\COLLEGES.TTF'
'fonts\Colony Wars.ttf'
'fonts\COLWELLA.TTF'
'fonts\combuspl.ttf'
'fonts\COMEN___.TTF'
'fonts\COMEP___.TTF'
'fonts\COMICATE.TTF'
'fonts\Comicv2b.ttf'
'fonts\Comicv2c.ttf'
'fonts\Comicv2e.ttf'
'fonts\compc1o.ttf'
'fonts\compc1s.ttf'
'fonts\compc2o.ttf'
'fonts\compc3o.ttf'
'fonts\compc3s.ttf'
'fonts\COMPUTERAMOK.ttf'
'fonts\concv2.ttf'
'fonts\concv2l.ttf'
'fonts\concv2s.ttf'
'fonts\Condui2i.ttf'
'fonts\conduit2.ttf'
'fonts\CONGALIN.TTF'
'fonts\CONMANFAT.ttf'
'fonts\CONNECTI.TTF'
'fonts\CONTRA__.ttf'
'fonts\Convoy.ttf'
'fonts\CORAZON_.TTF'
'fonts\COSMAB__.TTF'
'fonts\COSMAEI_.TTF'
'fonts\COSMAOI_.TTF'
'fonts\COSMAO__.TTF'
'fonts\COSMOJUN.TTF'
'fonts\COVENTRY.TTF'
'fonts\Coving01.ttf'
'fonts\Coving03.ttf'
'fonts\Coving04.ttf'
'fonts\Coving06.ttf'
'fonts\Coving07.ttf'
'fonts\Coving09.ttf'
'fonts\Coving13.ttf'
'fonts\Coving22.ttf'
'fonts\Coving23.ttf'
'fonts\Coving26.ttf'
'fonts\Coving28.ttf'
'fonts\Coving31.ttf'
'fonts\Coving32.ttf'
'fonts\Cows In the US.ttf'
'fonts\CrappyGothic.ttf'
'fonts\Crass.ttf'
'fonts\CRAZH___.TTF'
'fonts\CREABBB_.TTF'
'fonts\CREABBRG.TTF'
'fonts\CREEL___.TTF'
'fonts\croisant.ttf'
'fonts\CRUMBLE_.TTF'
'fonts\CRYSTALR.ttf'
'fonts\Cryv2.ttf'
'fonts\Cryv2i.ttf'
'fonts\cyberia.ttf'
'fonts\Cybertron Metals.TTF'
'fonts\Cypher.ttf'
'fonts\dadha___.ttf'
'fonts\DAELNEU_.TTF'
'fonts\DAGGN___.TTF'
'fonts\Dalelands.ttf'
'fonts\Danceclub.ttf'
'fonts\DANUBE__.TTF'
'fonts\DANUB___.TTF'
'fonts\Dark Bastion.ttf'
'fonts\DARK.TTF'
'fonts\Darkh4.ttf'
'fonts\dashdot.ttf'
'fonts\dastardl.ttf'
'fonts\Datacut.ttf'
'fonts\DAYROM_X.ttf'
'fonts\dc_s.ttf'
'fonts\ddork.ttf'
'fonts\De-Futura.ttf'
'fonts\DEADJIM.TTF'
'fonts\decaa___.ttf'
'fonts\decadnce.ttf'
'fonts\decofree.ttf'
'fonts\degrassi.ttf'
'fonts\Dekadens.ttf'
'fonts\DELIRIUM.TTF'
'fonts\DELUXEDU.ttf'
'fonts\demon.ttf'
'fonts\DEPORTEE.TTF'
'fonts\DEPT.TTF'
'fonts\Deton.ttf'
'fonts\DEVOTION.TTF'
'fonts\dfdrsp_i.TTF'
'fonts\dfdrsp__.TTF'
'fonts\DickVanDyke.ttf'
'fonts\DickVanDykeHeavy.ttf'
'fonts\diego3d.ttf'
'fonts\DIEHLD__.ttf'
'fonts\DIESEL.TTF'
'fonts\Digircu_.ttf'
'fonts\Digire__.ttf'
'fonts\Digirtu_.ttf'
'fonts\digistrip.ttf'
'fonts\digistrip_i.ttf'
'fonts\DIGITALDREAM.TTF'
'fonts\DIGITALDREAMFAT.ttf'
'fonts\DIGITALDREAMFATNARROW.ttf'
'fonts\DIGITALDREAMFATSKEWNARROW.ttf'
'fonts\DIGITALDREAMSKEW.ttf'
'fonts\DIGITALDREAMSKEWNARROW.ttf'
'fonts\DIGITALE.TTF'
'fonts\DIGITEK.TTF'
'fonts\DIGNITY.TTF'
'fonts\Dimurph.ttf'
'fonts\Dirtdeco.ttf'
'fonts\DIRTYDOZ.TTF'
'fonts\discoduckv23d.ttf'
'fonts\discoduckv2ei.ttf'
'fonts\discol__.ttf'
'fonts\DISTGCI_.TTF'
'fonts\DISTGI__.TTF'
'fonts\DISTGOI_.TTF'
'fonts\DISTGORG.TTF'
'fonts\Divx.ttf'
'fonts\djcourag.ttf'
'fonts\DOCTORJE.TTF'
'fonts\DOMISC__.TTF'
'fonts\DomoAregato Normal.ttf'
'fonts\DONOTEATTHIS.TTF'
'fonts\DONOTEATTHISFAT.ttf'
'fonts\DONOTEATTHISITALIC.ttf'
'fonts\DOPEJAM.TTF'
'fonts\DORNEN__.TTF'
'fonts\Dpm.ttf'
'fonts\draggle.ttf'
'fonts\draggleo.ttf'
'fonts\Dread.ttf'
'fonts\DREAMOFME.TTF'
'fonts\dreamscar.ttf'
'fonts\drid.ttf'
'fonts\drido.ttf'
'fonts\dridsi.ttf'
'fonts\DROID___.ttf'
'fonts\DROSS2.TTF'
'fonts\DRUMSN__.TTF'
'fonts\DryGulchOpen.ttf'
'fonts\DSMAN.TTF'
'fonts\DUALITY_.TTF'
'fonts\Dubbem_2.ttf'
'fonts\dulet___.ttf'
'fonts\DURALITH.ttf'
'fonts\dynamic.ttf'
'fonts\DYNOMITE.TTF'
'fonts\DYNOS___.TTF'
'fonts\dystorqu.ttf'
'fonts\Earltik.ttf'
'fonts\EARTHQUA.TTF'
'fonts\EASTMARK.TTF'
'fonts\Eastwood.ttf'
'fonts\eccentrical.ttf'
'fonts\ECHELON_.TTF'
'fonts\EchoDeco.ttf'
'fonts\ECHO____.TTF'
'fonts\Eclipse.ttf'
'fonts\Eco2.ttf'
'fonts\EDENMI__.ttf'
'fonts\edmundis.ttf'
'fonts\edundot.ttf'
'fonts\EFENTINE.TTF'
'fonts\ELDORADO.TTF'
'fonts\ELECPIKL.TTF'
'fonts\ELECPKLB.TTF'
'fonts\electr.ttf'
'fonts\electrb.ttf'
'fonts\electrbi.ttf'
'fonts\electri.ttf'
'fonts\ELECTRIK.TTF'
'fonts\electrox.ttf'
'fonts\ELEKTORA.ttf'
'fonts\ELEPHANT.TTF'
'fonts\Elfarg98.ttf'
'fonts\elsewher.ttf'
'fonts\ELVIS___.TTF'
'fonts\EMBARGO2.TTF'
'fonts\Emulator.ttf'
'fonts\encappln.ttf'
'fonts\ENDANGER.TTF'
'fonts\EndeavourForever.ttf'
'fonts\ENDORALT.ttf'
'fonts\ENDOR___.ttf'
'fonts\enervate.ttf'
'fonts\engeboit.ttf'
'fonts\engeexbo.ttf'
'fonts\ENSIGN3.TTF'
'fonts\enthuse.ttf'
'fonts\enthuses.ttf'
'fonts\entlayrb.ttf'
'fonts\eraser.TTF'
'fonts\Eroded2020.ttf'
'fonts\Escapeb.ttf'
'fonts\ESCAPN__.TTF'
'fonts\ESKARGOT.ttf'
'fonts\ETHNOCEN.TTF'
'fonts\EVERETT.TTF'
'fonts\EXCEL.TTF'
'fonts\Excelateo.ttf'
'fonts\EXONERAT.TTF'
'fonts\Expls___.ttf'
'fonts\EXTASY__.ttf'
'fonts\FACEhi.TTF'
'fonts\FACEPLAN.TTF'
'fonts\FACETSNF.ttf'
'fonts\FACTOR2.TTF'
'fonts\FADGOD.ttf'
'fonts\FAKEP___.TTF'
'fonts\falsposr.ttf'
'fonts\famousfromage.ttf'
'fonts\Fancy Footwork.ttf'
'fonts\FANTOMET.TTF'
'fonts\FAREWELL.TTF'
'fonts\FARGAS__.TTF'
'fonts\fascii.ttf'
'fonts\fasciicr.ttf'
'fonts\fasciisc.ttf'
'fonts\fasciism.ttf'
'fonts\fasciitw.ttf'
'fonts\Fat-Free.ttf'
'fonts\FAT_____.TTF'
'fonts\Fear.ttf'
'fonts\fearless.ttf'
'fonts\fidgety.ttf'
'fonts\FIELDDAY.TTF'
'fonts\fifte___.ttf'
'fonts\FIGHTT3_.ttf'
'fonts\filthy_habits.ttf'
'fonts\FINALNEW.TTF'
'fonts\Firecat.ttf'
'fonts\FIREFLY_.TTF'
'fonts\First Crush.ttf'
'fonts\firstaid.TTF'
'fonts\FIRSTBLI.TTF'
'fonts\fkr_area51life.ttf'
'fonts\fleck.ttf'
'fonts\flip.ttf'
'fonts\flipside.ttf'
'fonts\Florsn03.ttf'
'fonts\Florsn04.ttf'
'fonts\Florsn05.ttf'
'fonts\Florsn06.ttf'
'fonts\Florsn08.ttf'
'fonts\Florsn12.ttf'
'fonts\Florsn13.ttf'
'fonts\Florsn14.ttf'
'fonts\Florsn16.ttf'
'fonts\Florsn17.ttf'
'fonts\Florsn19.ttf'
'fonts\Florsn29.ttf'
'fonts\Florsn31.ttf'
'fonts\Florsn32.ttf'
'fonts\Florsn34.ttf'
'fonts\Florsn35.ttf'
'fonts\Florsn42.ttf'
'fonts\Florsn46.ttf'
'fonts\Florsn47.ttf'
'fonts\Florsn48.ttf'
'fonts\FLUORIDE.TTF'
'fonts\FMUNIVER.TTF'
'fonts\FONT.TTF'
'fonts\FONTCIII.ttf'
'fonts\FONTCI__.TTF'
'fonts\FONTCOII.ttf'
'fonts\FONTCOIV.ttf'
'fonts\FontformerlyknownasFONT.ttf'
'fonts\fontoas_.ttf'
'fonts\Fontovision.ttf'
'fonts\FONTSHUI.TTF'
'fonts\FOOB____.TTF'
'fonts\forcible.ttf'
'fonts\Fortunaschwein.ttf'
'fonts\FORTY-SE.TTF'
'fonts\FRAGILEB.TTF'
'fonts\FRAKTMOD.TTF'
'fonts\Frantic.ttf'
'fonts\Freaa___.ttf'
'fonts\frenchgr.ttf'
'fonts\FRESHBOT.TTF'
'fonts\FRIGKAT3.ttf'
'fonts\FRIGKATC.ttf'
'fonts\FRIGKATL.ttf'
'fonts\FRIGKAT_.ttf'
'fonts\Frission.ttf'
'fonts\frizzed.ttf'
'fonts\FROMTHESTARSBK-ITALIC.OTF'
'fonts\FROMTHESTARSUL-ITALIC.OTF'
'fonts\FrootStand.ttf'
'fonts\froufrou.ttf'
'fonts\FROZEN.TTF'
'fonts\fruitopia.ttf'
'fonts\Fujita_demo.ttf'
'fonts\FUNDR___.TTF'
'fonts\FUNKS___.TTF'
'fonts\FUNNY.TTF'
'fonts\FunSized.ttf'
'fonts\fusion.ttf'
'fonts\fusioni.ttf'
'fonts\Fusty Luggs.ttf'
'fonts\FUTHA___.TTF'
'fonts\Future Sallow Wide.ttf'
'fonts\Future Sallow.ttf'
'fonts\Futurism.TTF'
'fonts\GAEIL1.TTF'
'fonts\gaelach.ttf'
'fonts\GAGARIN_.TTF'
'fonts\GAGASM__.TTF'
'fonts\GAGGERS_.TTF'
'fonts\Galant5.ttf'
'fonts\Galap___.ttf'
'fonts\galvaniz.ttf'
'fonts\gamma.ttf'
'fonts\gaposiso.ttf'
'fonts\GassyGaut.ttf'
'fonts\Gazzarelli.ttf'
'fonts\GearBox.ttf'
'fonts\geekabyte2.ttf'
'fonts\GemFont One.ttf'
'fonts\GEN4.TTF'
'fonts\GESSELE.TTF'
'fonts\GHOSTMEA.TTF'
'fonts\GIANTTIG.TTF'
'fonts\GILGOND_.ttf'
'fonts\GILGONK_.ttf'
'fonts\GILGONM_.ttf'
'fonts\GILGONT_.ttf'
'fonts\GILGON__.ttf'
'fonts\GILLIGAN.TTF'
'fonts\GINGP___.TTF'
'fonts\GLAZKRAK.TTF'
'fonts\GLIMSTIC.TTF'
'fonts\gm italic.ttf'
'fonts\gnarly.ttf'
'fonts\GOLDENGI.ttf'
'fonts\goodfisb.ttf'
'fonts\goodfisi.ttf'
'fonts\GOODTIME.ttf'
'fonts\Goofball.ttf'
'fonts\Gorlock  Bold.ttf'
'fonts\gosebmps.ttf'
'fonts\gossip.ttf'
'fonts\Gotham Nights.ttf'
'fonts\GOV.TTF'
'fonts\GOYAH___.TTF'
'fonts\gr8higts.ttf'
'fonts\GRADGN__.TTF'
'fonts\GRAMN___.TTF'
'fonts\GRAVD___.TTF'
'fonts\GRAVITY_.TTF'
'fonts\GREALN__.ttf'
'fonts\GreyWolf.ttf'
'fonts\GriffinBold.ttf'
'fonts\Grinched.ttf'
'fonts\GROOMB__.TTF'
'fonts\GROOMEB_.TTF'
'fonts\GROOMEUB.TTF'
'fonts\GROOMEU_.TTF'
'fonts\GROOMUB_.TTF'
'fonts\GROOMU__.TTF'
'fonts\GruntReaper.ttf'
'fonts\GUADALUP.TTF'
'fonts\guanine_.ttf'
'fonts\GUEVARA_.TTF'
'fonts\Gunhead Chick.TTF'
'fonts\gunmetl.ttf'
'fonts\GUNSHIP2.TTF'
'fonts\Gutcruncher.ttf'
'fonts\GYR4.TTF'
'fonts\gyrose.ttf'
'fonts\GYRUSSIA.TTF'
'fonts\HADALT__.ttf'
'fonts\HAMBH___.TTF'
'fonts\HammerheadOutline Italic.ttf'
'fonts\HAND-ME-.TTF'
'fonts\handmeds.ttf'
'fonts\Happening.ttf'
'fonts\HARDKAZE.TTF'
'fonts\HARLEQUI.TTF'
'fonts\HAUNTAOE.TTF'
'fonts\HAWAIIAH.TTF'
'fonts\HAWKEYE.TTF'
'fonts\hbevel.ttf'
'fonts\HEATWAVE.TTF'
'fonts\HEAVTUB_.TTF'
'fonts\heck.ttf'
'fonts\HEIDH___.ttf'
'fonts\HELVETICA-NORMAL.TTF'
'fonts\HEMIHEAD.TTF'
'fonts\HERAS___.TTF'
'fonts\HeroOfFools.ttf'
'fonts\HIBERNAT.TTF'
'fonts\HIGHFIVE.TTF'
'fonts\HOBBYHOR.TTF'
'fonts\holdyourbreath.ttf'
'fonts\Holiday.ttf'
'fonts\HOLIDAYH.TTF'
'fonts\HOLIDAY_.TTF'
'fonts\HOLLHBI_.TTF'
'fonts\HOLLHI__.TTF'
'fonts\hondafont.ttf'
'fonts\HONEJS__.ttf'
'fonts\HOOKEDON.TTF'
'fonts\HORNSWOG.TTF'
'fonts\Horsal__.ttf'
'fonts\HORSERAD.TTF'
'fonts\hotdog.ttf'
'fonts\hotpizza.ttf'
'fonts\Houdini.ttf'
'fonts\HOUSEPIPES Italic.ttf'
'fonts\hpunk.ttf'
'fonts\Huckle Buff.ttf'
'fonts\HURRYUP.TTF'
'fonts\hydro.ttf'
'fonts\hyperion.ttf'
'fonts\Hypmotizin.ttf'
'fonts\HYPNO.TTF'
'fonts\IAMSIMPL.TTF'
'fonts\ICICLECO.TTF'
'fonts\ICON.TTF'
'fonts\IDIOT___.TTF'
'fonts\IKARRG__.TTF'
'fonts\IKART___.TTF'
'fonts\IKARV___.TTF'
'fonts\illumination.ttf'
'fonts\IMPERFEC.TTF'
'fonts\IMPOS+30.ttf'
'fonts\IMPOS-30.ttf'
'fonts\IMPOS05_.ttf'
'fonts\IMPOS0__.ttf'
'fonts\IMPOS10_.ttf'
'fonts\IMPOSSD_.ttf'
'fonts\Impressed Metal.ttf'
'fonts\INDIGO.TTF'
'fonts\inertia.ttf'
'fonts\inevitab.ttf'
'fonts\infinityc.ttf'
'fonts\infinitye.ttf'
'fonts\infinityei.ttf'
'fonts\infinityg.ttf'
'fonts\infinityi.ttf'
'fonts\INFO5.TTF'
'fonts\initial.ttf'
'fonts\INKBURRO.TTF'
'fonts\inkswipe.ttf'
'fonts\inktank.ttf'
'fonts\INNES___.TTF'
'fonts\INNIO___.TTF'
'fonts\INSULA__.ttf'
'fonts\Intaglios.ttf'
'fonts\Internet.ttf'
'fonts\intshe.ttf'
'fonts\intshl.ttf'
'fonts\invisibl.ttf'
'fonts\irezumi_i.ttf'
'fonts\IRONMAN_.TTF'
'fonts\IronPipe.ttf'
'fonts\IRREP___.TTF'
'fonts\irritate.ttf'
'fonts\iwantc.ttf'
'fonts\j.d.ttf'
'fonts\JACKLB__.TTF'
'fonts\JackOLantern.ttf'
'fonts\Jambotan.ttf'
'fonts\JANGB___.TTF'
'fonts\Janne.ttf'
'fonts\Jannsh.ttf'
'fonts\japan.ttf'
'fonts\jargon.ttf'
'fonts\jasper.ttf'
'fonts\Jedi.ttf'
'fonts\JEEPNEY.TTF'
'fonts\Jerk.ttf'
'fonts\JERU.TTF'
'fonts\JETPLANE.TTF'
'fonts\Jiggery Pokery.ttf'
'fonts\JoeJack.ttf'
'fonts\Johndoe.ttf'
'fonts\JOINPD__.TTF'
'fonts\JollyRaunchy.ttf'
'fonts\JOSHF___.TTF'
'fonts\JOYCARDS.TTF'
'fonts\JOYSTIX.TTF'
'fonts\JUDGE2.TTF'
'fonts\jumboo.ttf'
'fonts\jumbooi.ttf'
'fonts\JUNGJ___.TTF'
'fonts\JUNGLEFE.TTF'
'fonts\junist.ttf'
'fonts\JUSTI.TTF'
'fonts\Kahless2p.ttf'
'fonts\kaliberx.ttf'
'fonts\KAMIKZOM.ttf'
'fonts\KANDIDE_.ttf'
'fonts\KARISMAI.ttf'
'fonts\KARISMA_.ttf'
'fonts\KARNIVOL.ttf'
'fonts\KARNIVOR.ttf'
'fonts\KARNIVSV.ttf'
'fonts\KATANA.TTF'
'fonts\KathleenBold.ttf'
'fonts\KEJ-CIRC.TTF'
'fonts\Kelt Caps Freehand.ttf'
'fonts\KentuckyFriedChickenFont.ttf'
'fonts\KERFUFFL.TTF'
'fonts\ketch___.ttf'
'fonts\Kharnorric.ttf'
'fonts\kidkosmic.ttf'
'fonts\kidkosmicb.ttf'
'fonts\King Arthur Special Normal.ttf'
'fonts\KingBus.ttf'
'fonts\KINGXMAS.TTF'
'fonts\kirbyss.ttf'
'fonts\KISMET-N.TTF'
'fonts\KK.TTF'
'fonts\KMKDSPKW.ttf'
'fonts\KMKDSPSH.ttf'
'fonts\KMKDSPT_.ttf'
'fonts\Kntkzgrb.ttf'
'fonts\KNUCKLED.TTF'
'fonts\Knucklesandwich.TTF'
'fonts\Knuffig.ttf'
'fonts\KOMIKAHN.ttf'
'fonts\KOMIKAH_.ttf'
'fonts\KOMIKJ__.ttf'
'fonts\KOMIKND_.ttf'
'fonts\KOMIKSLI.ttf'
'fonts\KOMTXKBI.ttf'
'fonts\KOMTXTI_.ttf'
'fonts\KOMTXTKB.ttf'
'fonts\KOMTXTKI.ttf'
'fonts\KOMTXTK_.ttf'
'fonts\KONFUCF_.ttf'
'fonts\KONFUC__.ttf'
'fonts\Konspiracy Theory.ttf'
'fonts\Kookaburra.ttf'
'fonts\krazynights.ttf'
'fonts\KREDIT1.TTF'
'fonts\KRUSH.TTF'
'fonts\kryptic.ttf'
'fonts\kurvatur.ttf'
'fonts\LACONICK.TTF'
'fonts\LADYSTAR.TTF'
'fonts\LAGNIAPP.TTF'
'fonts\LAKESHOR.TTF'
'fonts\lamebrai.ttf'
'fonts\land.ttf'
'fonts\lande.ttf'
'fonts\landi.ttf'
'fonts\Landwo.ttf'
'fonts\landwog.ttf'
'fonts\Larabieb.ttf'
'fonts\LARABIEF.TTF'
'fonts\larkspur.ttf'
'fonts\LASER4.TTF'
'fonts\later_on.ttf'
'fonts\Lazerbeam_s.TTF'
'fonts\LEDREALI.TTF'
'fonts\LED_REAL.TTF'
'fonts\LeeBeeSchwarz.ttf'
'fonts\LEGION.TTF'
'fonts\LESSERCO.TTF'
'fonts\LEWINSKY.TTF'
'fonts\LIBEL.TTF'
'fonts\LIBRIT__.ttf'
'fonts\licostrg.ttf'
'fonts\lifeisi.ttf'
'fonts\lifesubi.ttf'
'fonts\lifesupb.ttf'
'fonts\lifesupi.ttf'
'fonts\lifesupp.ttf'
'fonts\lion.ttf'
'fonts\lionc.ttf'
'fonts\lioni.ttf'
'fonts\lions.ttf'
'fonts\LIQUIDIS.TTF'
'fonts\LITTLELO.TTF'
'fonts\LIVINGBY.TTF'
'fonts\LLODE.TTF'
'fonts\LOCKERGN.TTF'
'fonts\LoisAnn.ttf'
'fonts\LongCoolGrandma.ttf'
'fonts\Love Parade widebold.ttf'
'fonts\LOVE.TTF'
'fonts\lowdown.ttf'
'fonts\LOWRBI__.TTF'
'fonts\LOWRB___.TTF'
'fonts\ltromatic italic.ttf'
'fonts\ltromatic.ttf'
'fonts\lucid2o.ttf'
'fonts\lucido.ttf'
'fonts\Lumpbump.ttf'
'fonts\LUNASOL.TTF'
'fonts\LUXO____.TTF'
'fonts\MadScience.ttf'
'fonts\Madscientist.ttf'
'fonts\madscrwl.ttf'
'fonts\MAEL____.TTF'
'fonts\MAILRAYS.TTF'
'fonts\MALACHE.TTF'
'fonts\MANDINGO.TTF'
'fonts\mangatb.ttf'
'fonts\MaranalloHigh.ttf'
'fonts\MaranalloHighItalic.ttf'
'fonts\MaranalloItalic.ttf'
'fonts\MarkerFinePoint.ttf'
'fonts\MarkyM.ttf'
'fonts\MARSHGAS.TTF'
'fonts\marspolice_i.ttf'
'fonts\MARYJCA_.ttf'
'fonts\MARYJGI_.ttf'
'fonts\MARYJLR_.ttf'
'fonts\MARYJO__.ttf'
'fonts\MARYJSC_.ttf'
'fonts\Massh__3.TTF'
'fonts\MASTODB_.ttf'
'fonts\MASTOD__.ttf'
'fonts\MATERHOR.TTF'
'fonts\MAXIS___.TTF'
'fonts\MCKLB___.ttf'
'fonts\MCKLM___.ttf'
'fonts\MCKLT___.ttf'
'fonts\MCKLW___.ttf'
'fonts\mechan.ttf'
'fonts\mechani.ttf'
'fonts\Melted Moments.ttf'
'fonts\METALORD.TTF'
'fonts\METRN___.TTF'
'fonts\mexcelle.ttf'
'fonts\MicroMbd.TTF'
'fonts\MIGHZCB_.TTF'
'fonts\MIGHZI__.TTF'
'fonts\mima4x4i.ttf'
'fonts\mimaalt1.ttf'
'fonts\mimafuse.ttf'
'fonts\minikstt.ttf'
'fonts\MINSPSW_.TTF'
'fonts\MIRISCH.TTF'
'fonts\mishmash.ttf'
'fonts\misirlou.ttf'
'fonts\MISTERFI.TTF'
'fonts\MISTRESA.ttf'
'fonts\MLTWNII_.ttf'
'fonts\MO.TTF'
'fonts\MOBCONCR.TTF'
'fonts\MOBILE4.TTF'
'fonts\Mobsters.ttf'
'fonts\MOLDPAPA.TTF'
'fonts\molten.ttf'
'fonts\mondored.TTF'
'fonts\MonkyBusiness.ttf'
'fonts\MONOFONT.TTF'
'fonts\monogb__.ttf'
'fonts\monog___.ttf'
'fonts\Monsterfreak.ttf'
'fonts\MONTP___.TTF'
'fonts\MOOCOWSW.TTF'
'fonts\Moog Boy.ttf'
'fonts\Morethanhuman.ttf'
'fonts\moronmis.ttf'
'fonts\morse.ttf'
'fonts\MORST.TTF'
'fonts\Moscoso.ttf'
'fonts\Mouser.ttf'
'fonts\Mouser_i.ttf'
'fonts\mouthbrebb.ttf'
'fonts\mouthbrebb_b.ttf'
'fonts\MrBubbleFont.ttf'
'fonts\mrgoodbaur.ttf'
'fonts\Much too loud.ttf'
'fonts\mufferaw.ttf'
'fonts\mypager.ttf'
'fonts\MYPUMA__.TTF'
'fonts\Mypuouo__.ttf'
'fonts\MYSTP___.TTF'
'fonts\NAFTA.TTF'
'fonts\nativei.ttf'
'fonts\naughts.ttf'
'fonts\nauvo___.ttf'
'fonts\necplusi.ttf'
'fonts\Negtiv12.ttf'
'fonts\NEO5.TTF'
'fonts\NERVT___.TTF'
'fonts\NETHERWO.TTF'
'fonts\neural.ttf'
'fonts\neuralol.ttf'
'fonts\NEUROCHR.TTF'
'fonts\NEUROPOL.TTF'
'fonts\NEURPOLI.TTF'
'fonts\NEVER.TTF'
'fonts\NEVESD__.TTF'
'fonts\NICKELOD.TTF'
'fonts\NICKERB1.TTF'
'fonts\NICKODE1.TTF'
'fonts\NIFE2.TTF'
'fonts\NIFER3.TTF'
'fonts\NIGHTCAP.TTF'
'fonts\NIGHTCOU.TTF'
'fonts\NIGHTPOR.TTF'
'fonts\nightsky.ttf'
'fonts\Nightwarrior.ttf'
'fonts\NIOBBL__.TTF'
'fonts\NIOBRG__.TTF'
'fonts\NIPANDTU.TTF'
'fonts\Noodlesoup.TTF'
'fonts\Nosfo___.ttf'
'fonts\nostalgi.ttf'
'fonts\notqr.ttf'
'fonts\novem___.ttf'
'fonts\no_problem.ttf'
'fonts\NUMBBN__.TTF'
'fonts\Nyctalopia.ttf'
'fonts\Nyctalopia_tilt.ttf'
'fonts\oberon.ttf'
'fonts\OBLIVIOU.TTF'
'fonts\obloquys.ttf'
'fonts\ODALISQU.TTF'
'fonts\offkiltr.ttf'
'fonts\Og.TTF'
'fonts\OHCRBRG_.TTF'
'fonts\Old Copperfield.ttf'
'fonts\Old Virus.ttf'
'fonts\OLLIC___.TTF'
'fonts\OLYMRG__.TTF'
'fonts\OMEGA5.TTF'
'fonts\ONCEINAW.TTF'
'fonts\oneway.ttf'
'fonts\OogieBoogie.ttf'
'fonts\OPIUM___.TTF'
'fonts\oposs___.ttf'
'fonts\orangefizzi.ttf'
'fonts\OUIJADOR.TTF'
'fonts\OURGANG.TTF'
'fonts\Outofsight.ttf'
'fonts\OUTRIGHT.TTF'
'fonts\Ozone.ttf'
'fonts\Pacmania.ttf'
'fonts\PALIMPUS.TTF'
'fonts\Panama.ttf'
'fonts\PANTSPAT.TTF'
'fonts\PARAAMIN.TTF'
'fonts\Parkvane.ttf'
'fonts\PARTB___.TTF'
'fonts\Pastern.ttf'
'fonts\PEATLOAF.TTF'
'fonts\PEEX____.TTF'
'fonts\Peinture Fraiche.ttf'
'fonts\Perdc.ttf'
'fonts\PERE.TTF'
'fonts\PERISPHE.TTF'
'fonts\Perlenkette.ttf'
'fonts\Permanent.ttf'
'fonts\PESSIMA_.TTF'
'fonts\Phantomime.ttf'
'fonts\PHARMACY.TTF'
'fonts\PHATP___.TTF'
'fonts\PheanisWickey.ttf'
'fonts\PICKABIL.TTF'
'fonts\PIECB___.TTF'
'fonts\pincers.ttf'
'fonts\PINNIEPO.TTF'
'fonts\PIONEER.TTF'
'fonts\Piranha.ttf'
'fonts\pizzabot.ttf'
'fonts\PLAND___.TTF'
'fonts\PLANETNS.TTF'
'fonts\Plasma01.ttf'
'fonts\Plasma02.ttf'
'fonts\Plasma05.ttf'
'fonts\Plasma06.ttf'
'fonts\Plasma07.ttf'
'fonts\Plasma08.ttf'
'fonts\Plasma09.ttf'
'fonts\Plasma15.ttf'
'fonts\PLASTIQU.TTF'
'fonts\PlatinumHubCapsSolid.ttf'
'fonts\PLATSCH 2 outline.ttf'
'fonts\PLATSCH 2.ttf'
'fonts\PLATSCH.ttf'
'fonts\Playtoy.ttf'
'fonts\pneumati.ttf'
'fonts\pneuwide.ttf'
'fonts\PointedlyMad.ttf'
'fonts\ponde___.ttf'
'fonts\Popsies.ttf'
'fonts\POPULARC.TTF'
'fonts\PORKH___.TTF'
'fonts\portcreb.ttf'
'fonts\POWDRFP_.ttf'
'fonts\POWDRFS_.ttf'
'fonts\powdwrk5.ttf'
'fonts\PRETS___.TTF'
'fonts\PRETU___.TTF'
'fonts\PRICK___.TTF'
'fonts\PRIMEMIN.TTF'
'fonts\PROJM___.TTF'
'fonts\PROPAGAN.ttf'
'fonts\PROTECTI.TTF'
'fonts\PSAUDI5.TTF'
'fonts\ptarm___.ttf'
'fonts\punkass_.ttf'
'fonts\PUNKA___.TTF'
'fonts\pupcat__.ttf'
'fonts\PYRA.TTF'
'fonts\pythia.ttf'
'fonts\QGEAR.TTF'
'fonts\qmarkcsi.ttf'
'fonts\qmarki.ttf'
'fonts\qmarks.ttf'
'fonts\QUADAPTO.TTF'
'fonts\QUADRANG.TTF'
'fonts\quadrcal.ttf'
'fonts\quandary.ttf'
'fonts\quantfh.ttf'
'fonts\quantflt.ttf'
'fonts\quanttap.ttf'
'fonts\quaranti.ttf'
'fonts\Quarki.ttf'
'fonts\Quarko.ttf'
'fonts\quarthin.ttf'
'fonts\quarti.ttf'
'fonts\Quarxi.ttf'
'fonts\Quarxo.ttf'
'fonts\QUASI___.TTF'
'fonts\queasy.ttf'
'fonts\quest2i.ttf'
'fonts\QUICK4.TTF'
'fonts\QUICKSIL.TTF'
'fonts\Quiff.ttf'
'fonts\quillexo.ttf'
'fonts\quillexs.ttf'
'fonts\QUINKIE_.TTF'
'fonts\quixotic.ttf'
'fonts\radgranny.ttf'
'fonts\RADIO.TTF'
'fonts\RADIORAN.TTF'
'fonts\radiosin.ttf'
'fonts\RAGEY.TTF'
'fonts\rambling.ttf'
'fonts\RAMMR___.TTF'
'fonts\RANXEROX.TTF'
'fonts\RAPHAEL_.TTF'
'fonts\RAPJACK_.TTF'
'fonts\Rattpick.ttf'
'fonts\ravcater.ttf'
'fonts\raveflire.ttf'
'fonts\Raveheart.ttf'
'fonts\RAZORKEE.TTF'
'fonts\realpol.ttf'
'fonts\reasonsh.ttf'
'fonts\Rebec4.ttf'
'fonts\Red Lightning.ttf'
'fonts\REDENSEK.TTF'
'fonts\REDHGB__.TTF'
'fonts\refluxed.TTF'
'fonts\reg.ttf'
'fonts\regc.ttf'
'fonts\rege.ttf'
'fonts\regi.ttf'
'fonts\rego.ttf'
'fonts\RELIEFTE.TTF'
'fonts\relishga.ttf'
'fonts\REP2CN__.ttf'
'fonts\REP4CNI_.ttf'
'fonts\REP5EXPI.ttf'
'fonts\REP5EXP_.ttf'
'fonts\REPKCNI_.ttf'
'fonts\REPKCN__.ttf'
'fonts\REPKEXP_.ttf'
'fonts\REPUB5I_.ttf'
'fonts\REPUB5__.ttf'
'fonts\REPUB___.ttf'
'fonts\REPUEXP_.ttf'
'fonts\RETALIAT.TTF'
'fonts\Retrochips.otf'
'fonts\RHUMBASC.TTF'
'fonts\RIALTO.TTF'
'fonts\Riddleprint.ttf'
'fonts\Ripple_0.ttf'
'fonts\Rival.ttf'
'fonts\ROBOKID_.TTF'
'fonts\ROBOKOZ.TTF'
'fonts\ROBOM___.TTF'
'fonts\RockFont.ttf'
'fonts\Rockmsf_.ttf'
'fonts\Rogue.ttf'
'fonts\Roguec.ttf'
'fonts\Rogued.ttf'
'fonts\Roguee.ttf'
'fonts\Roguei.ttf'
'fonts\ROLLOGLI.TTF'
'fonts\ROMEO.TTF'
'fonts\ROOSEVEL.TTF'
'fonts\ROTHWELL.TTF'
'fonts\rotundo.ttf'
'fonts\Roung___.ttf'
'fonts\Royalacid.ttf'
'fonts\RT_tower.TTF'
'fonts\RUBAE___.TTF'
'fonts\RUFF.TTF'
'fonts\RUNNINGS.TTF'
'fonts\runoff.ttf'
'fonts\RUNY-TUN.TTF'
'fonts\RxFO__.ttf'
'fonts\RxOF__.ttf'
'fonts\RxOZ__.ttf'
'fonts\RxZO__.ttf'
'fonts\sadfilms.ttf'
'fonts\sad_jane.ttf'
'fonts\SALIMC__.TTF'
'fonts\SAMARN__.TTF'
'fonts\SAMARO__.TTF'
'fonts\Samdan.ttf'
'fonts\SamdanCondensed.ttf'
'fonts\SANTBSB_.TTF'
'fonts\Sargoo.ttf'
'fonts\Satanick-Regular.ttf'
'fonts\SATURN__.TTF'
'fonts\sbblanco.ttf'
'fonts\scalines.ttf'
'fonts\Scatterbrained Restrained.ttf'
'fonts\SCHIZM__.TTF'
'fonts\scifi2ku.ttf'
'fonts\scifibit.ttf'
'fonts\scifix.ttf'
'fonts\scifixb.ttf'
'fonts\scifixbi.ttf'
'fonts\scifixo.ttf'
'fonts\scott___.ttf'
'fonts\SCREWBAL.ttf'
'fonts\SCRIPTIN.ttf'
'fonts\SCRUBADO.TTF'
'fonts\SCUME___.TTF'
'fonts\SEA7.TTF'
'fonts\SEOUC___.TTF'
'fonts\Seperate.ttf'
'fonts\Serial.ttf'
'fonts\Seriffic Grunge.ttf'
'fonts\Seventy Flares.ttf'
'fonts\SEVER2.TTF'
'fonts\sewer.TTF'
'fonts\sexsmith.ttf'
'fonts\SF Arborcrest Heavy.ttf'
'fonts\SF Arborcrest Light Oblique.ttf'
'fonts\SF Arborcrest Light.ttf'
'fonts\SF Arborcrest Medium Oblique.ttf'
'fonts\SF Arborcrest Medium.ttf'
'fonts\SF Arch Rival Bold Italic.ttf'
'fonts\SF Arch Rival Bold.ttf'
'fonts\SF Arch Rival Extended Bold.ttf'
'fonts\SF Arch Rival Extended.ttf'
'fonts\SF Arch Rival.ttf'
'fonts\SF Atarian System Bold.ttf'
'fonts\SF Atarian System Extended Bold.ttf'
'fonts\SF Atarian System Italic.ttf'
'fonts\SF Automaton Bold Oblique.ttf'
'fonts\SF Automaton Condensed Oblique.ttf'
'fonts\SF Automaton Extended Oblique.ttf'
'fonts\SF Automaton.ttf'
'fonts\SF Balloons.ttf'
'fonts\SF Baroquesque Extended Oblique.ttf'
'fonts\SF Baroquesque Extended.ttf'
'fonts\SF Baroquesque Oblique.ttf'
'fonts\SF Baroquesque.ttf'
'fonts\SF Beaverton Heavy.ttf'
'fonts\SF Beaverton Medium.ttf'
'fonts\SF Big Whiskey Bold.ttf'
'fonts\SF Big Whiskey Condensed Bold.ttf'
'fonts\SF Big Whiskey Extended Bold.ttf'
'fonts\SF Burlington Script Italic.ttf'
'fonts\SF Burlington Script SC Bold Italic.ttf'
'fonts\SF Burlington Script SC Italic.ttf'
'fonts\SF Burlington Script SC.ttf'
'fonts\SF Burlington Script.ttf'
'fonts\SF Cartoonist Hand Italic.ttf'
'fonts\SF Chaerilidae Bold.ttf'
'fonts\SF Chaerilidae Oblique.ttf'
'fonts\SF Chaerilidae Outline Oblique.ttf'
'fonts\SF Chaerilidae Shaded.ttf'
'fonts\SF Chrome Fenders Bold Oblique.ttf'
'fonts\SF Chrome Fenders Condensed.ttf'
'fonts\SF Chrome Fenders.ttf'
'fonts\SF Chromium 24 Oblique.ttf'
'fonts\SF Chromium 24 SC Bold Oblique.ttf'
'fonts\SF Chromium 24 SC Bold.ttf'
'fonts\SF Chromium 24 SC.ttf'
'fonts\SF Collegiate Italic.ttf'
'fonts\SF Collegiate Solid Bold.ttf'
'fonts\SF Collegiate.ttf'
'fonts\SF Comic Script Bold.ttf'
'fonts\SF Comic Script Condensed.ttf'
'fonts\SF Comic Script Extended.ttf'
'fonts\SF DecoTechno Bold.ttf'
'fonts\SF DecoTechno Condensed.ttf'
'fonts\SF DecoTechno Oblique.ttf'
'fonts\SF DecoTechno.ttf'
'fonts\SF Diego Sans Condensed.ttf'
'fonts\SF Diego Sans Oblique.ttf'
'fonts\SF Diego Sans Outline Oblique.ttf'
'fonts\SF Diego Sans Shaded Oblique.ttf'
'fonts\SF Diego Sans.ttf'
'fonts\SF DISTANT GALAXY ITALIC.TTF'
'fonts\SF Eccentric Opus Bold.ttf'
'fonts\SF Eccentric Opus Condensed Oblique.ttf'
'fonts\SF Eccentric Opus Shaded Oblique.ttf'
'fonts\SF Eccentric Opus.ttf'
'fonts\SF Electrotome Bold Oblique.ttf'
'fonts\SF Electrotome Bold.ttf'
'fonts\SF Electrotome Condensed Oblique.ttf'
'fonts\SF Electrotome Condensed.ttf'
'fonts\SF Electrotome Oblique.ttf'
'fonts\SF Electrotome Shaded Oblique.ttf'
'fonts\SF Electrotome Shaded.ttf'
'fonts\SF Electrotome.ttf'
'fonts\SF Espionage Heavy.ttf'
'fonts\SF Espionage Light Oblique.ttf'
'fonts\SF Espionage Medium.ttf'
'fonts\SF Espresso Shack Bold Italic.ttf'
'fonts\SF Espresso Shack Bold.ttf'
'fonts\SF Espresso Shack Condensed Bold.ttf'
'fonts\SF Ferretopia Bold.ttf'
'fonts\SF Ferretopia Shaded.ttf'
'fonts\SF Fortune Wheel Condensed.ttf'
'fonts\SF Fortune Wheel Extended Italic.ttf'
'fonts\SF Fortune Wheel Extended.ttf'
'fonts\SF Fortune Wheel Italic.ttf'
'fonts\SF Foxboro Script Bold Italic.ttf'
'fonts\SF Foxboro Script Bold.ttf'
'fonts\SF Foxboro Script Extended Bold Italic.ttf'
'fonts\SF Foxboro Script Extended.ttf'
'fonts\SF Gothican Oblique.ttf'
'fonts\SF Grandezza Heavy Oblique.ttf'
'fonts\SF Grandezza Heavy.ttf'
'fonts\SF Grandezza Medium Oblique.ttf'
'fonts\SF Grunge Sans Bold.ttf'
'fonts\SF Grunge Sans SC.ttf'
'fonts\SF Grunge Sans Shadow Italic.ttf'
'fonts\SF Grunge Sans Shadow.ttf'
'fonts\SF Grunge Sans.ttf'
'fonts\SF Hallucination Extreme.ttf'
'fonts\SF Hallucination Shadow.ttf'
'fonts\SF Hallucination.ttf'
'fonts\SF Intermosaic B Bold.ttf'
'fonts\SF Intermosaic B.ttf'
'fonts\SF Intermosaic.ttf'
'fonts\SF Intoxicated Blues Bold Oblique.ttf'
'fonts\SF Intoxicated Blues Bold.ttf'
'fonts\SF Intoxicated Blues Extended.ttf'
'fonts\SF Intoxicated Blues Oblique.ttf'
'fonts\SF Intoxicated Blues Shaded.ttf'
'fonts\SF Iron Gothic Bold Oblique.ttf'
'fonts\SF Iron Gothic Bold.ttf'
'fonts\SF Iron Gothic Extended.ttf'
'fonts\SF Iron Gothic.ttf'
'fonts\SF Ironsides Bold Italic.ttf'
'fonts\SF Ironsides Condensed Italic.ttf'
'fonts\SF Ironsides Condensed.ttf'
'fonts\SF Ironsides Extended.ttf'
'fonts\SF Ironsides.ttf'
'fonts\SF Juggernaut Condensed Bold Italic.ttf'
'fonts\SF Juggernaut Condensed Bold.ttf'
'fonts\SF Juggernaut.ttf'
'fonts\SF Junk Culture Condensed Oblique.ttf'
'fonts\SF Junk Culture Condensed.ttf'
'fonts\SF Junk Culture Oblique.ttf'
'fonts\SF Junk Culture Shaded.ttf'
'fonts\SF Laundromatic Bold Oblique.ttf'
'fonts\SF Laundromatic Bold.ttf'
'fonts\SF Laundromatic.ttf'
'fonts\SF Minced Meat Extended Oblique.ttf'
'fonts\SF Minced Meat Extended.ttf'
'fonts\SF Minced Meat Oblique.ttf'
'fonts\SF Minced Meat Shaded Oblique.ttf'
'fonts\SF Minced Meat Shaded.ttf'
'fonts\SF Movie Poster Bold Italic.ttf'
'fonts\SF Movie Poster Condensed Italic.ttf'
'fonts\SF Movie Poster Italic.ttf'
'fonts\SF Movie Poster.ttf'
'fonts\SF New Republic Bold.ttf'
'fonts\SF New Republic Italic.ttf'
'fonts\SF New Republic SC Bold.ttf'
'fonts\SF New Republic SC Italic.ttf'
'fonts\SF Obliquities Bold.ttf'
'fonts\SF Obliquities Extended Bold.ttf'
'fonts\SF Obliquities Outline.ttf'
'fonts\SF Obliquities.ttf'
'fonts\SF Old Republic Italic.ttf'
'fonts\SF Old Republic SC Bold.ttf'
'fonts\SF Old Republic.ttf'
'fonts\SF Orson Casual Light Oblique.ttf'
'fonts\SF Orson Casual Light.ttf'
'fonts\SF Orson Casual Shaded.ttf'
'fonts\SF Outer Limits Distorted.ttf'
'fonts\SF Outer Limits Extended.ttf'
'fonts\SF Outer Limits ExtUpright.ttf'
'fonts\SF Outer Limits.ttf'
'fonts\SF Pale Bottom Condensed Oblique.ttf'
'fonts\SF Pale Bottom Condensed.ttf'
'fonts\SF Pale Bottom Shaded.ttf'
'fonts\SF Piezolectric Condensed.ttf'
'fonts\SF Piezolectric Oblique.ttf'
'fonts\SF Pixelate Bold Oblique.ttf'
'fonts\SF Pixelate Oblique.ttf'
'fonts\SF Pixelate Shaded Bold.ttf'
'fonts\SF Pixelate Shaded Oblique.ttf'
'fonts\SF Planetary Orbiter Bold.ttf'
'fonts\SF Planetary Orbiter Outline Italic.ttf'
'fonts\SF Planetary Orbiter.ttf'
'fonts\SF Port McKenzie Bold Italic.ttf'
'fonts\SF Port McKenzie Extended Italic.ttf'
'fonts\SF Port McKenzie Extended.ttf'
'fonts\SF Port McKenzie Italic.ttf'
'fonts\SF Proverbial Gothic Condensed Oblique.ttf'
'fonts\SF Proverbial Gothic Oblique.ttf'
'fonts\SF Proverbial Gothic.ttf'
'fonts\SF Quartzite Bold Oblique.ttf'
'fonts\SF Quartzite Extended Oblique.ttf'
'fonts\SF Quartzite.ttf'
'fonts\SF Retroesque FX.ttf'
'fonts\SF Retroesque Shaded.ttf'
'fonts\SF Retroesque.ttf'
'fonts\SF RetroSplice Outline.ttf'
'fonts\SF RetroSplice SC.ttf'
'fonts\SF RetroSplice.ttf'
'fonts\SF Scribbled Sans Bold Italic.ttf'
'fonts\SF Scribbled Sans Italic.ttf'
'fonts\SF Scribbled Sans SC Bold Italic.ttf'
'fonts\SF Scribbled Sans SC Italic.ttf'
'fonts\SF Scribbled Sans SC.ttf'
'fonts\SF Shai Fontai Bold Oblique.ttf'
'fonts\SF Shai Fontai Bold.ttf'
'fonts\SF Shai Fontai Distressed Oblique.ttf'
'fonts\SF Shai Fontai Extended Oblique.ttf'
'fonts\SF Shai Fontai Extended.ttf'
'fonts\SF Slapstick Comic Shaded Oblique.ttf'
'fonts\SF Slapstick Comic Shaded.ttf'
'fonts\SF Star Dust Condensed.ttf'
'fonts\SF Star Dust Italic.ttf'
'fonts\SF Synthonic Pop Shaded Oblique.ttf'
'fonts\SF Telegraphic Italic.ttf'
'fonts\SF Toontime Shaded Italic.ttf'
'fonts\SF Toontime Shaded.ttf'
'fonts\SF Wasabi Condensed Bold.ttf'
'fonts\SF Wasabi Condensed Italic.ttf'
'fonts\SF Wasabi.ttf'
'fonts\SF Wonder Comic Blotch Italic.ttf'
'fonts\SF Wonder Comic Blotch.ttf'
'fonts\SF Wonder Comic Inline.ttf'
'fonts\SF Wonder Comic.ttf'
'fonts\SF Zero Gravity Condensed Bold Italic.ttf'
'fonts\SF Zero Gravity Condensed.ttf'
'fonts\SF Zero Gravity Italic.ttf'
'fonts\SF Zimmerman Italic.ttf'
'fonts\SHAKETHA.TTF'
'fonts\SHANLN__.TTF'
'fonts\SHOPLIFT.TTF'
'fonts\SHREDDED.TTF'
'fonts\Shredder.ttf'
'fonts\SID-THEK.TTF'
'fonts\SIDESHOW.TTF'
'fonts\Simpleman.ttf'
'fonts\Sirsrg__.ttf'
'fonts\SKATD___.TTF'
'fonts\Skeksis.ttf'
'fonts\Skunkline.ttf'
'fonts\Slap Happy.ttf'
'fonts\SLEEP.TTF'
'fonts\Slighrg_.ttf'
'fonts\Slimania Bold.ttf'
'fonts\Slimania.ttf'
'fonts\Slimania2.ttf'
'fonts\SLOEGIN.TTF'
'fonts\Smash.ttf'
'fonts\SNIGSET_.TTF'
'fonts\Snott Outline.ttf'
'fonts\Snott SemiBold.ttf'
'fonts\sofachri.ttf'
'fonts\sofachro.ttf'
'fonts\Softfade.TTF'
'fonts\SOLEMNIT.TTF'
'fonts\Something Fishy.ttf'
'fonts\somewhereinspace.TTF'
'fonts\Son_of__.ttf'
'fonts\SOUCISAN.TTF'
'fonts\SOVIET4.TTF'
'fonts\Space Chick.ttf'
'fonts\Space Woozies 3D.ttf'
'fonts\SPACECAD.TTF'
'fonts\spacefri.ttf'
'fonts\Spacej.ttf'
'fonts\SpaceOut.ttf'
'fonts\spaciouo.ttf'
'fonts\spacious.ttf'
'fonts\spastic2.ttf'
'fonts\SPATC___.TTF'
'fonts\SPECVBB_.TTF'
'fonts\Speeb___.TTF'
'fonts\Speec___.TTF'
'fonts\SPEEF___.TTF'
'fonts\SPEEN3__.TTF'
'fonts\SpitShine.ttf'
'fonts\Splash.ttf'
'fonts\SPRIT___.TTF'
'fonts\sqroute.ttf'
'fonts\SQUAUEB_.TTF'
'fonts\SQUAUN__.TTF'
'fonts\squitcher.ttf'
'fonts\SRSERVIC.TTF'
'fonts\STAMAJ__.TTF'
'fonts\STARF7.TTF'
'fonts\Starjout.ttf'
'fonts\Starn___.ttf'
'fonts\StartlingFont.ttf'
'fonts\Steamroller.ttf'
'fonts\STEINEM_.ttf'
'fonts\stenc_ex.ttf'
'fonts\STEREOFI.TTF'
'fonts\STEREOHI.TTF'
'fonts\STEREOPH.TTF'
'fonts\stocky.TTF'
'fonts\Strab___.ttf'
'fonts\Strande2.ttf'
'fonts\STRAPO__.TTF'
'fonts\STRCOMP_.ttf'
'fonts\STREETI_.ttf'
'fonts\STREET__.ttf'
'fonts\STREXPI_.ttf'
'fonts\STRRVIT_.ttf'
'fonts\STRTHIT_.ttf'
'fonts\STRUPR__.ttf'
'fonts\STRURIT_.ttf'
'fonts\Stuck___.ttf'
'fonts\STUNT3.TTF'
'fonts\STYROFOA.TTF'
'fonts\submergd.ttf'
'fonts\subpear_.ttf'
'fonts\SUBTEXT_.TTF'
'fonts\SUDBURY.TTF'
'fonts\Suicide.ttf'
'fonts\SUIGENER.TTF'
'fonts\sujetbi_.ttf'
'fonts\sujetb__.ttf'
'fonts\sujeti__.ttf'
'fonts\sujet___.ttf'
'fonts\SULPHUR_.TTF'
'fonts\SUNSET__.TTF'
'fonts\SUPER.TTF'
'fonts\SUPERFLY.TTF'
'fonts\SUPERGLU.TTF'
'fonts\Surfpi__.ttf'
'fonts\Surfpunx.ttf'
'fonts\SWEETASC.TTF'
'fonts\SWINGER_.TTF'
'fonts\SWINKYDA.TTF'
'fonts\SYBIG___.TTF'
'fonts\TAGSX___.TTF'
'fonts\tallpaul.ttf'
'fonts\Tantrum Tongue.ttf'
'fonts\TAPEWORM.TTF'
'fonts\TASTC___.TTF'
'fonts\TattooLetteringBlack.ttf'
'fonts\Teazer.ttf'
'fonts\TEENAGEA.TTF'
'fonts\teenbdit.ttf'
'fonts\teenital.ttf'
'fonts\teen____.ttf'
'fonts\telephas.ttf'
'fonts\TERRA-X_.TTF'
'fonts\TERRA3.TTF'
'fonts\ThaiPedicure.ttf'
'fonts\Thedrips.ttf'
'fonts\Therfont.ttf'
'fonts\thunder2s.ttf'
'fonts\Thundercats.ttf'
'fonts\THURSDOO.TTF'
'fonts\TiltAWhirl.ttf'
'fonts\TINSNIPS.TTF'
'fonts\TOBINTAX.TTF'
'fonts\Today___.ttf'
'fonts\TOFU.TTF'
'fonts\TOMMYGUN.TTF'
'fonts\tonik.ttf'
'fonts\TOONEYNO.TTF'
'fonts\TORKBI__.TTF'
'fonts\TouristTrap.ttf'
'fonts\TRACE4.TTF'
'fonts\Transmaidens.ttf'
'fonts\TRAPPERJ.TTF'
'fonts\Treamd.ttf'
'fonts\TRIBAL__.ttf'
'fonts\tribn___.TTF'
'fonts\TRIBTWO_.ttf'
'fonts\Trubble.ttf'
'fonts\tsextolo.ttf'
'fonts\tuesday.ttf'
'fonts\TURBRIP_.TTF'
'fonts\turmoil.ttf'
'fonts\TURNBB__.TTF'
'fonts\Turok.ttf'
'fonts\Turtles.ttf'
'fonts\tussleeo.ttf'
'fonts\tussleo.ttf'
'fonts\TYPEE.TTF'
'fonts\typoderm.ttf'
'fonts\U26frg__.ttf'
'fonts\ubiquity.ttf'
'fonts\UFRAYD.TTF'
'fonts\UGLYL___.TTF'
'fonts\Ultrasonik.ttf'
'fonts\unanimo.ttf'
'fonts\Uncey.ttf'
'fonts\underwho.ttf'
'fonts\UNDIC___.TTF'
'fonts\Unfinished1.TTF'
'fonts\Unfinished2.TTF'
'fonts\UNI2.TTF'
'fonts\UNICORN.TTF'
'fonts\UNIONCIT.TTF'
'fonts\UniTortred.ttf'
'fonts\Universalfruitcake.ttf'
'fonts\UNIVOX.TTF'
'fonts\unrespon.ttf'
'fonts\UNSTEADY.TTF'
'fonts\Untidy Italic Skrawl.ttf'
'fonts\Unxgala.ttf'
'fonts\Unxgalaw.ttf'
'fonts\Unxgalo.ttf'
'fonts\URSB____.TTF'
'fonts\usa.ttf'
'fonts\usac2.ttf'
'fonts\usalft.ttf'
'fonts\USENETA.ttf'
'fonts\vahikab.ttf'
'fonts\vahikac.ttf'
'fonts\valium.ttf'
'fonts\vaporbsi.ttf'
'fonts\Vector.ttf'
'fonts\VIPESSI_.TTF'
'fonts\VIPNAGOR.TTF'
'fonts\visitor2.ttf'
'fonts\volatil1.ttf'
'fonts\vtcorona.ttf'
'fonts\VURT.TTF'
'fonts\W.J.P___.TTF'
'fonts\Wacko.ttf'
'fonts\WAKIW___.TTF'
'fonts\WAR2.TTF'
'fonts\wayward.ttf'
'fonts\waywards.ttf'
'fonts\Wbx_nero.ttf'
'fonts\weatherd.ttf'
'fonts\Welbut__.ttf'
'fonts\WHACUW__.ttf'
'fonts\WHATA.TTF'
'fonts\whiffy.ttf'
'fonts\WHOOPASS.TTF'
'fonts\Whoosit.ttf'
'fonts\WILD ONES PERSONAL USE.TTF'
'fonts\wincing.ttf'
'fonts\Wolf4bi.ttf'
'fonts\Wolf4o.ttf'
'fonts\Wormfont.ttf'
'fonts\Worm____.ttf'
'fonts\xcelv3.ttf'
'fonts\xcelv3si.ttf'
'fonts\XENOWORT.TTF'
'fonts\xirod.ttf'
'fonts\XOLTO.TTF'
'fonts\Xposed.ttf'
'fonts\Y2K_analog_legacy_italic.ttf'
'fonts\YADOU.TTF'
'fonts\yesterda.ttf'
'fonts\Yndu.ttf'
'fonts\YnduPro.ttf'
'fonts\YOLDA___.TTF'
'fonts\YONDERRE.TTF'
'fonts\yoshi bold.ttf'
'fonts\yoshi.ttf'
'fonts\You Are Loved.ttf'
'fonts\younz___.ttf'
'fonts\YouRookMarbelous.ttf'
'fonts\Ysgarth.ttf'
'fonts\zektonit.ttf'
'fonts\zephyreg.ttf'
'fonts\ZHANGQA_.TTF'
'fonts\ZipperbluesBlack.ttf'
'fonts\ZipperbluesOutline.ttf'
'fonts\zirconia.ttf'
'fonts\ZOINKFAT.TTF'
'fonts\zolofbi_.ttf'
'fonts\zolofi__.ttf'
'fonts\Zolofn_.ttf'
'fonts\zolofse_.ttf'
'fonts\ZooWoodcutsM.ttf'
'fonts\ZUDJI___.TTF'
'fonts\zurklezo.ttf'
'fonts\ZYBIT.FON'
'gimprc'
'gtkrc'
'internal-data\custom.ggr'
'menurc'
'parasiterc'
'plug-ins\dbp'
'plug-ins\fix-ca'
'plug-ins\gimp-lqr-plugin'
'plug-ins\gimpmask'
'plug-ins\plugin-heal-selection.py'
'plug-ins\plugin-heal-transparency.py'
'plug-ins\plugin-map-style.py'
'plug-ins\plugin-render-texture.py'
'plug-ins\plugin-resynth-enlarge.py'
'plug-ins\plugin-resynth-fill-pattern.py'
'plug-ins\plugin-resynth-sharpen.py'
'plug-ins\plugin-uncrop.py'
'plug-ins\plug_in_lqr_iter'
'plug-ins\resynthesizer'
'plug-ins\resynthesizer_gui'
'plug-ins\separate'
'plug-ins\separate_import'
'plug-ins\streak'
'plug-ins\wavelet-denoise'
'plug-ins\webexport'
'pluginrc'
'profilerc'
'sessionrc'
'splashes\photogimp-diolinux-splash.png'
'tags.xml'
'templaterc'
'themerc'
'tool-options\gimp-airbrush-tool'
'tool-options\gimp-align-tool'
'tool-options\gimp-brightness-contrast-tool'
'tool-options\gimp-bucket-fill-tool'
'tool-options\gimp-by-color-select-tool'
'tool-options\gimp-cage-tool'
'tool-options\gimp-clone-tool'
'tool-options\gimp-color-picker-tool'
'tool-options\gimp-convolve-tool'
'tool-options\gimp-crop-tool'
'tool-options\gimp-curves-tool'
'tool-options\gimp-dodge-burn-tool'
'tool-options\gimp-ellipse-select-tool'
'tool-options\gimp-eraser-tool'
'tool-options\gimp-flip-tool'
'tool-options\gimp-foreground-select-tool'
'tool-options\gimp-free-select-tool'
'tool-options\gimp-fuzzy-select-tool'
'tool-options\gimp-gegl-tool'
'tool-options\gimp-gradient-tool'
'tool-options\gimp-handle-transform-tool'
'tool-options\gimp-heal-tool'
'tool-options\gimp-ink-tool'
'tool-options\gimp-iscissors-tool'
'tool-options\gimp-levels-tool'
'tool-options\gimp-measure-tool'
'tool-options\gimp-move-tool'
'tool-options\gimp-mypaint-brush-tool'
'tool-options\gimp-offset-tool'
'tool-options\gimp-operation-tool'
'tool-options\gimp-paintbrush-tool'
'tool-options\gimp-pencil-tool'
'tool-options\gimp-perspective-clone-tool'
'tool-options\gimp-perspective-tool'
'tool-options\gimp-rect-select-tool'
'tool-options\gimp-rotate-tool'
'tool-options\gimp-scale-tool'
'tool-options\gimp-shear-tool'
'tool-options\gimp-smudge-tool'
'tool-options\gimp-text-tool'
'tool-options\gimp-threshold-tool'
'tool-options\gimp-transform-3d-tool'
'tool-options\gimp-unified-transform-tool'
'tool-options\gimp-vector-tool'
'tool-options\gimp-warp-tool'
'tool-options\gimp-zoom-tool'
'toolrc'
'unitrc'
)

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status

Discussion for the PhotoGIMP Package

Ground Rules:

  • This discussion is only about PhotoGIMP and the PhotoGIMP package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or PhotoGIMP, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus