FontFile
Repository source: FontFile
Description¶
The example uses an external font file. There are many sources of TrueType fonts. Here is one source.
Question
If you have a question about this example, please use the VTK Discourse Forum
Code¶
FontFile.cxx
#include <vtkActor2D.h>
#include <vtkNamedColors.h>
#include <vtkNew.h>
#include <vtkProperty.h>
#include <vtkRenderWindow.h>
#include <vtkRenderWindowInteractor.h>
#include <vtkRenderer.h>
#include <vtkTextMapper.h>
#include <vtkTextProperty.h>
#include <vtksys/SystemTools.hxx>
#include <iostream>
#include <sstream>
#include <string>
int main(int argc, char* argv[])
{
if (argc < 2)
{
std::cerr << "Usage: " << argv[1] << " font.ttf e.g. CopyPaste.ttf"
<< std::endl;
return EXIT_FAILURE;
}
std::string fontFile(argv[1]);
std::stringstream str;
str << "Font: "
<< vtksys::SystemTools::GetFilenameWithoutExtension(std::string(argv[1]))
<< "\n"
<< "Sample multiline\ntext rendered\nusing FreeTypeTools.";
int width = 640;
int height = 480;
vtkNew<vtkNamedColors> colors;
vtkNew<vtkTextMapper> mapper;
vtkNew<vtkActor2D> actor;
actor->SetPosition(width / 2, height / 2);
actor->SetMapper(mapper);
mapper->GetTextProperty()->BoldOff();
;
mapper->GetTextProperty()->SetFontSize(50);
mapper->GetTextProperty()->SetColor(
colors->GetColor3d("MistyRose").GetData());
mapper->GetTextProperty()->SetJustificationToCentered();
mapper->GetTextProperty()->SetVerticalJustificationToCentered();
mapper->GetTextProperty()->SetFontFamily(VTK_FONT_FILE);
mapper->GetTextProperty()->SetFontFile(fontFile.c_str());
mapper->SetInput(str.str().c_str());
vtkNew<vtkRenderer> renderer;
renderer->SetBackground(colors->GetColor3d("DimGray").GetData());
vtkNew<vtkRenderWindow> renderWindow;
renderWindow->SetSize(width, height);
renderWindow->AddRenderer(renderer);
renderWindow->SetWindowName("FontFile");
vtkNew<vtkRenderWindowInteractor> interactor;
interactor->SetRenderWindow(renderWindow);
renderer->AddActor(actor);
renderWindow->Render();
interactor->Initialize();
interactor->Start();
return EXIT_SUCCESS;
}
CMakeLists.txt¶
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
project(FontFile)
find_package(VTK COMPONENTS
CommonColor
CommonCore
InteractionStyle
RenderingContextOpenGL2
RenderingCore
RenderingFreeType
RenderingGL2PSOpenGL2
RenderingOpenGL2
)
if (NOT VTK_FOUND)
message(FATAL_ERROR "FontFile: Unable to find the VTK build folder.")
endif()
# Prevent a "command line is too long" failure in Windows.
set(CMAKE_NINJA_FORCE_RESPONSE_FILE "ON" CACHE BOOL "Force Ninja to use response files.")
add_executable(FontFile MACOSX_BUNDLE FontFile.cxx )
target_link_libraries(FontFile PRIVATE ${VTK_LIBRARIES}
)
# vtk_module_autoinit is needed
vtk_module_autoinit(
TARGETS FontFile
MODULES ${VTK_LIBRARIES}
)
Download and Build FontFile¶
Click here to download FontFile and its CMakeLists.txt file. Once the tarball FontFile.tar has been downloaded and extracted,
cd FontFile/build
If VTK is installed:
cmake ..
If VTK is not installed but compiled on your system, you will need to specify the path to your VTK build:
cmake -DVTK_DIR:PATH=/home/me/vtk_build ..
Build the project:
make
and run it:
./FontFile
WINDOWS USERS
Be sure to add the VTK bin directory to your path. This will resolve the VTK dll's at run time.