1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0026298: Visualization, OpenGl_Text - make font resolution configurable.

Add THE_DEFAULT_RESOLUTION static const parameter to Graphic3d_RenderingParams.
Add resolution to Graphic3d_RenderingParams.
Drop redundant variables from OpenGl_Workspace.
Add a new parameter to Graphic3d_GraphicDriver::TextSize method (and to OpenGl_GraphicDriver).
Add a new parameter to OpenGl_Text::Render() and to OpenGl_Text::render() methods.
OpenGl_Text::FontKey() considers a resolution (PPI) now.
Add a new argument '-resolution' (sets a pixel density) in the 'VRenderParams' draw-command.
This commit is contained in:
isk 2015-09-29 12:17:58 +03:00 committed by bugmaster
parent 5b0f2540d7
commit 4b1c8733e8
12 changed files with 115 additions and 44 deletions

View File

@ -776,9 +776,10 @@ Standard_Integer AIS_ColorScale::TextHeight (const TCollection_ExtendedString& t
//======================================================================= //=======================================================================
void AIS_ColorScale::TextSize (const TCollection_ExtendedString& theText, const Standard_Integer theHeight, Standard_Integer& theWidth, Standard_Integer& theAscent, Standard_Integer& theDescent) const void AIS_ColorScale::TextSize (const TCollection_ExtendedString& theText, const Standard_Integer theHeight, Standard_Integer& theWidth, Standard_Integer& theAscent, Standard_Integer& theDescent) const
{ {
const Handle(Graphic3d_CView)& aView = GetContext()->CurrentViewer()->ActiveView()->View();
Standard_ShortReal aWidth(10.0), anAscent(1.0), aDescent(1.0); Standard_ShortReal aWidth(10.0), anAscent(1.0), aDescent(1.0);
TCollection_AsciiString aText (theText.ToExtString(), '?'); TCollection_AsciiString aText (theText.ToExtString(), '?');
GetContext()->CurrentViewer()->Driver()->TextSize (aText.ToCString(),(Standard_ShortReal)theHeight,aWidth,anAscent,aDescent); GetContext()->CurrentViewer()->Driver()->TextSize (aView, aText.ToCString(), (Standard_ShortReal)theHeight, aWidth, anAscent, aDescent);
theWidth = (Standard_Integer)aWidth; theWidth = (Standard_Integer)aWidth;
theAscent = (Standard_Integer)anAscent; theAscent = (Standard_Integer)anAscent;
theDescent = (Standard_Integer)aDescent; theDescent = (Standard_Integer)aDescent;

View File

@ -112,7 +112,7 @@ public:
//! @return true on success //! @return true on success
Standard_EXPORT bool Init (const NCollection_String& theFontPath, Standard_EXPORT bool Init (const NCollection_String& theFontPath,
const unsigned int thePointSize, const unsigned int thePointSize,
const unsigned int theResolution = 72); const unsigned int theResolution);
//! Initialize the font. //! Initialize the font.
//! @param theFontName the font name //! @param theFontName the font name

View File

@ -99,8 +99,13 @@ public:
virtual Standard_ShortReal DefaultTextHeight() const = 0; virtual Standard_ShortReal DefaultTextHeight() const = 0;
//! call_togl_textsize2d //! Computes text width.
virtual void TextSize (const Standard_CString AText, const Standard_ShortReal AHeight, Standard_ShortReal& AWidth, Standard_ShortReal& AnAscent, Standard_ShortReal& ADescent) const = 0; virtual void TextSize (const Handle(Graphic3d_CView)& theView,
const Standard_CString theText,
const Standard_ShortReal theHeight,
Standard_ShortReal& theWidth,
Standard_ShortReal& theAscent,
Standard_ShortReal& theDescent) const = 0;
//! Add a new top-level z layer with ID <theLayerId> for //! Add a new top-level z layer with ID <theLayerId> for
//! the view. Z layers allow drawing structures in higher layers //! the view. Z layers allow drawing structures in higher layers

View File

@ -25,6 +25,8 @@
class Graphic3d_RenderingParams class Graphic3d_RenderingParams
{ {
public: public:
//! Default pixels density.
static const unsigned int THE_DEFAULT_RESOLUTION = 72u;
//! Default number of samples per pixel. //! Default number of samples per pixel.
static const Standard_Integer THE_DEFAULT_SPP = 1; static const Standard_Integer THE_DEFAULT_SPP = 1;
@ -60,7 +62,9 @@ public:
StereoMode (Graphic3d_StereoMode_QuadBuffer), StereoMode (Graphic3d_StereoMode_QuadBuffer),
AnaglyphFilter (Anaglyph_RedCyan_Optimized), AnaglyphFilter (Anaglyph_RedCyan_Optimized),
ToReverseStereo (Standard_False) ToReverseStereo (Standard_False),
Resolution (THE_DEFAULT_RESOLUTION)
{ {
const Graphic3d_Vec4 aZero (0.0f, 0.0f, 0.0f, 0.0f); const Graphic3d_Vec4 aZero (0.0f, 0.0f, 0.0f, 0.0f);
AnaglyphLeft .SetRow (0, Graphic3d_Vec4 (1.0f, 0.0f, 0.0f, 0.0f)); AnaglyphLeft .SetRow (0, Graphic3d_Vec4 (1.0f, 0.0f, 0.0f, 0.0f));
@ -93,6 +97,12 @@ public:
Graphic3d_Mat4 AnaglyphRight; //!< right anaglyph filter (in normalized colorspace), Color = AnaglyphRight * theColorRight + AnaglyphLeft * theColorLeft; Graphic3d_Mat4 AnaglyphRight; //!< right anaglyph filter (in normalized colorspace), Color = AnaglyphRight * theColorRight + AnaglyphLeft * theColorLeft;
Standard_Boolean ToReverseStereo; //!< flag to reverse stereo pair, FALSE by default Standard_Boolean ToReverseStereo; //!< flag to reverse stereo pair, FALSE by default
unsigned int Resolution; //!< Pixels density (PPI), defines scaling factor for parameters like text size
//!< (when defined in screen-space units rather than in 3D) to be properly displayed
//!< on device (screen / printer). 72 is default value.
//!< Note that using difference resolution in different Views in same Viewer
//!< will lead to performance regression (for example, text will be recreated every time).
}; };
#endif // _Graphic3d_RenderingParams_HeaderFile #endif // _Graphic3d_RenderingParams_HeaderFile

View File

@ -472,11 +472,12 @@ void OpenGl_GraphicDriver::SetBuffersNoSwap (const Standard_Boolean theIsNoSwap)
// function : TextSize // function : TextSize
// purpose : // purpose :
// ======================================================================= // =======================================================================
void OpenGl_GraphicDriver::TextSize (const Standard_CString theText, void OpenGl_GraphicDriver::TextSize (const Handle(Graphic3d_CView)& theView,
const Standard_ShortReal theHeight, const Standard_CString theText,
Standard_ShortReal& theWidth, const Standard_ShortReal theHeight,
Standard_ShortReal& theAscent, Standard_ShortReal& theWidth,
Standard_ShortReal& theDescent) const Standard_ShortReal& theAscent,
Standard_ShortReal& theDescent) const
{ {
const Handle(OpenGl_Context)& aCtx = GetSharedContext(); const Handle(OpenGl_Context)& aCtx = GetSharedContext();
if (aCtx.IsNull()) if (aCtx.IsNull())
@ -506,7 +507,7 @@ void OpenGl_GraphicDriver::TextSize (const Standard_CString theText,
aTextAspect.SetAspect(aDefaultContextText); aTextAspect.SetAspect(aDefaultContextText);
TCollection_ExtendedString anExtText = theText; TCollection_ExtendedString anExtText = theText;
NCollection_String aText = (Standard_Utf16Char* )anExtText.ToExtString(); NCollection_String aText = (Standard_Utf16Char* )anExtText.ToExtString();
OpenGl_Text::StringSize (aCtx, aText, aTextAspect, aTextParam, theWidth, theAscent, theDescent); OpenGl_Text::StringSize(aCtx, aText, aTextAspect, aTextParam, theView->RenderingParams().Resolution, theWidth, theAscent, theDescent);
} }
//======================================================================= //=======================================================================

View File

@ -132,7 +132,12 @@ public:
public: public:
Standard_EXPORT void TextSize (const Standard_CString AText,const Standard_ShortReal AHeight,Standard_ShortReal& AWidth,Standard_ShortReal& AnAscent,Standard_ShortReal& ADescent) const; Standard_EXPORT void TextSize (const Handle(Graphic3d_CView)& theView,
const Standard_CString theText,
const Standard_ShortReal theHeight,
Standard_ShortReal& theWidth,
Standard_ShortReal& theAscent,
Standard_ShortReal& theDescent) const;
Standard_EXPORT Standard_Integer InquirePlaneLimit(); Standard_EXPORT Standard_Integer InquirePlaneLimit();

View File

@ -342,6 +342,7 @@ void OpenGl_Text::StringSize (const Handle(OpenGl_Context)& theCtx,
const NCollection_String& theText, const NCollection_String& theText,
const OpenGl_AspectText& theTextAspect, const OpenGl_AspectText& theTextAspect,
const OpenGl_TextParam& theParams, const OpenGl_TextParam& theParams,
const unsigned int theResolution,
Standard_ShortReal& theWidth, Standard_ShortReal& theWidth,
Standard_ShortReal& theAscent, Standard_ShortReal& theAscent,
Standard_ShortReal& theDescent) Standard_ShortReal& theDescent)
@ -349,8 +350,8 @@ void OpenGl_Text::StringSize (const Handle(OpenGl_Context)& theCtx,
theWidth = 0.0f; theWidth = 0.0f;
theAscent = 0.0f; theAscent = 0.0f;
theDescent = 0.0f; theDescent = 0.0f;
const TCollection_AsciiString aFontKey = FontKey (theTextAspect, theParams.Height); const TCollection_AsciiString aFontKey = FontKey (theTextAspect, theParams.Height, theResolution);
Handle(OpenGl_Font) aFont = FindFont (theCtx, theTextAspect, theParams.Height, aFontKey); Handle(OpenGl_Font) aFont = FindFont (theCtx, theTextAspect, theParams.Height, theResolution, aFontKey);
if (aFont.IsNull() || !aFont->IsValid()) if (aFont.IsNull() || !aFont->IsValid())
{ {
return; return;
@ -426,7 +427,8 @@ void OpenGl_Text::Render (const Handle(OpenGl_Workspace)& theWorkspace) const
aCtx, aCtx,
*aTextAspect, *aTextAspect,
*theWorkspace->HighlightColor, *theWorkspace->HighlightColor,
*theWorkspace->HighlightColor); *theWorkspace->HighlightColor,
theWorkspace->View()->RenderingParams().Resolution);
} }
else else
{ {
@ -434,7 +436,8 @@ void OpenGl_Text::Render (const Handle(OpenGl_Workspace)& theWorkspace) const
aCtx, aCtx,
*aTextAspect, *aTextAspect,
aTextAspect->Color(), aTextAspect->Color(),
aTextAspect->SubtitleColor()); aTextAspect->SubtitleColor(),
theWorkspace->View()->RenderingParams().Resolution);
} }
aCtx->BindProgram (NULL); aCtx->BindProgram (NULL);
@ -458,9 +461,10 @@ void OpenGl_Text::Render (const Handle(OpenGl_Workspace)& theWorkspace) const
// ======================================================================= // =======================================================================
void OpenGl_Text::Render (const Handle(OpenGl_PrinterContext)& thePrintCtx, void OpenGl_Text::Render (const Handle(OpenGl_PrinterContext)& thePrintCtx,
const Handle(OpenGl_Context)& theCtx, const Handle(OpenGl_Context)& theCtx,
const OpenGl_AspectText& theTextAspect) const const OpenGl_AspectText& theTextAspect,
const unsigned int theResolution) const
{ {
render (thePrintCtx, theCtx, theTextAspect, theTextAspect.Color(), theTextAspect.SubtitleColor()); render (thePrintCtx, theCtx, theTextAspect, theTextAspect.Color(), theTextAspect.SubtitleColor(), theResolution);
} }
// ======================================================================= // =======================================================================
@ -609,11 +613,13 @@ void OpenGl_Text::drawText (const Handle(OpenGl_PrinterContext)& ,
// purpose : // purpose :
// ======================================================================= // =======================================================================
TCollection_AsciiString OpenGl_Text::FontKey (const OpenGl_AspectText& theAspect, TCollection_AsciiString OpenGl_Text::FontKey (const OpenGl_AspectText& theAspect,
const Standard_Integer theHeight) const Standard_Integer theHeight,
const unsigned int theResolution)
{ {
const Font_FontAspect anAspect = (theAspect.FontAspect() != Font_FA_Undefined) ? theAspect.FontAspect() : Font_FA_Regular; const Font_FontAspect anAspect = (theAspect.FontAspect() != Font_FA_Undefined) ? theAspect.FontAspect() : Font_FA_Regular;
return theAspect.FontName() return theAspect.FontName()
+ TCollection_AsciiString(":") + Standard_Integer(anAspect) + TCollection_AsciiString(":") + Standard_Integer(anAspect)
+ TCollection_AsciiString(":") + Standard_Integer(theResolution)
+ TCollection_AsciiString(":") + theHeight; + TCollection_AsciiString(":") + theHeight;
} }
@ -624,6 +630,7 @@ TCollection_AsciiString OpenGl_Text::FontKey (const OpenGl_AspectText& theAspect
Handle(OpenGl_Font) OpenGl_Text::FindFont (const Handle(OpenGl_Context)& theCtx, Handle(OpenGl_Font) OpenGl_Text::FindFont (const Handle(OpenGl_Context)& theCtx,
const OpenGl_AspectText& theAspect, const OpenGl_AspectText& theAspect,
const Standard_Integer theHeight, const Standard_Integer theHeight,
const unsigned int theResolution,
const TCollection_AsciiString theKey) const TCollection_AsciiString theKey)
{ {
Handle(OpenGl_Font) aFont; Handle(OpenGl_Font) aFont;
@ -643,7 +650,7 @@ Handle(OpenGl_Font) OpenGl_Text::FindFont (const Handle(OpenGl_Context)& theCtx,
{ {
aFontFt = new Font_FTFont (NULL); aFontFt = new Font_FTFont (NULL);
if (aFontFt->Init (aRequestedFont->FontPath()->ToCString(), theHeight)) if (aFontFt->Init (aRequestedFont->FontPath()->ToCString(), theHeight, theResolution))
{ {
aFont = new OpenGl_Font (aFontFt, theKey); aFont = new OpenGl_Font (aFontFt, theKey);
if (!aFont->Init (theCtx)) if (!aFont->Init (theCtx))
@ -693,14 +700,17 @@ void OpenGl_Text::render (const Handle(OpenGl_PrinterContext)& thePrintCtx,
const Handle(OpenGl_Context)& theCtx, const Handle(OpenGl_Context)& theCtx,
const OpenGl_AspectText& theTextAspect, const OpenGl_AspectText& theTextAspect,
const TEL_COLOUR& theColorText, const TEL_COLOUR& theColorText,
const TEL_COLOUR& theColorSubs) const const TEL_COLOUR& theColorSubs,
const unsigned int theResolution) const
{ {
if (myString.IsEmpty()) if (myString.IsEmpty())
{ {
return; return;
} }
const TCollection_AsciiString aFontKey = FontKey (theTextAspect, myParams.Height); // Note that using difference resolution in different Views in same Viewer
// will lead to performance regression (for example, text will be recreated every time).
const TCollection_AsciiString aFontKey = FontKey (theTextAspect, myParams.Height, theResolution);
if (!myFont.IsNull() if (!myFont.IsNull()
&& !myFont->ResourceKey().IsEqual (aFontKey)) && !myFont->ResourceKey().IsEqual (aFontKey))
{ {
@ -710,7 +720,7 @@ void OpenGl_Text::render (const Handle(OpenGl_PrinterContext)& thePrintCtx,
if (myFont.IsNull()) if (myFont.IsNull())
{ {
myFont = FindFont (theCtx, theTextAspect, myParams.Height, aFontKey); myFont = FindFont (theCtx, theTextAspect, myParams.Height, theResolution, aFontKey);
} }
if (!myFont->WasInitialized()) if (!myFont->WasInitialized())
{ {

View File

@ -25,6 +25,7 @@
#include <TCollection_ExtendedString.hxx> #include <TCollection_ExtendedString.hxx>
#include <Graphic3d_Vertex.hxx> #include <Graphic3d_Vertex.hxx>
#include <Graphic3d_HorizontalTextAlignment.hxx> #include <Graphic3d_HorizontalTextAlignment.hxx>
#include <Graphic3d_RenderingParams.hxx>
#include <Graphic3d_VerticalTextAlignment.hxx> #include <Graphic3d_VerticalTextAlignment.hxx>
#include <gp_Ax2.hxx> #include <gp_Ax2.hxx>
@ -75,12 +76,14 @@ public: //! @name methods for compatibility with layers
//! Create key for shared resource //! Create key for shared resource
Standard_EXPORT static TCollection_AsciiString FontKey (const OpenGl_AspectText& theAspect, Standard_EXPORT static TCollection_AsciiString FontKey (const OpenGl_AspectText& theAspect,
const Standard_Integer theHeight); const Standard_Integer theHeight,
const unsigned int theResolution);
//! Find shared resource for specified font or initialize new one //! Find shared resource for specified font or initialize new one
Standard_EXPORT static Handle(OpenGl_Font) FindFont (const Handle(OpenGl_Context)& theCtx, Standard_EXPORT static Handle(OpenGl_Font) FindFont (const Handle(OpenGl_Context)& theCtx,
const OpenGl_AspectText& theAspect, const OpenGl_AspectText& theAspect,
const Standard_Integer theHeight, const Standard_Integer theHeight,
const unsigned int theResolution,
const TCollection_AsciiString theKey); const TCollection_AsciiString theKey);
//! Compute text width //! Compute text width
@ -88,6 +91,7 @@ public: //! @name methods for compatibility with layers
const NCollection_String& theText, const NCollection_String& theText,
const OpenGl_AspectText& theTextAspect, const OpenGl_AspectText& theTextAspect,
const OpenGl_TextParam& theParams, const OpenGl_TextParam& theParams,
const unsigned int theResolution,
Standard_ShortReal& theWidth, Standard_ShortReal& theWidth,
Standard_ShortReal& theAscent, Standard_ShortReal& theAscent,
Standard_ShortReal& theDescent); Standard_ShortReal& theDescent);
@ -101,7 +105,8 @@ public: //! @name methods for compatibility with layers
//! Perform rendering //! Perform rendering
Standard_EXPORT void Render (const Handle(OpenGl_PrinterContext)& thePrintCtx, Standard_EXPORT void Render (const Handle(OpenGl_PrinterContext)& thePrintCtx,
const Handle(OpenGl_Context)& theCtx, const Handle(OpenGl_Context)& theCtx,
const OpenGl_AspectText& theTextAspect) const; const OpenGl_AspectText& theTextAspect,
const unsigned int theResolution = Graphic3d_RenderingParams::THE_DEFAULT_RESOLUTION) const;
protected: protected:
@ -132,7 +137,8 @@ private:
const Handle(OpenGl_Context)& theCtx, const Handle(OpenGl_Context)& theCtx,
const OpenGl_AspectText& theTextAspect, const OpenGl_AspectText& theTextAspect,
const TEL_COLOUR& theColorText, const TEL_COLOUR& theColorText,
const TEL_COLOUR& theColorSubs) const; const TEL_COLOUR& theColorSubs,
const unsigned int theResolution) const;
protected: protected:

View File

@ -53,7 +53,6 @@ namespace
static const OpenGl_AspectLine myDefaultAspectLine; static const OpenGl_AspectLine myDefaultAspectLine;
static const OpenGl_AspectFace myDefaultAspectFace; static const OpenGl_AspectFace myDefaultAspectFace;
static const OpenGl_AspectMarker myDefaultAspectMarker; static const OpenGl_AspectMarker myDefaultAspectMarker;
static const OpenGl_AspectText myDefaultAspectText;
static const OpenGl_TextParam myDefaultTextParam = static const OpenGl_TextParam myDefaultTextParam =
{ {
@ -156,10 +155,6 @@ OpenGl_Workspace::OpenGl_Workspace (OpenGl_View* theView, const Handle(OpenGl_Wi
AspectFace_applied (NULL), AspectFace_applied (NULL),
AspectMarker_set (&myDefaultAspectMarker), AspectMarker_set (&myDefaultAspectMarker),
AspectMarker_applied (NULL), AspectMarker_applied (NULL),
AspectText_set (&myDefaultAspectText),
AspectText_applied (NULL),
TextParam_set (&myDefaultTextParam),
TextParam_applied (NULL),
ViewMatrix_applied (&myDefaultMatrix), ViewMatrix_applied (&myDefaultMatrix),
StructureMatrix_applied (&myDefaultMatrix), StructureMatrix_applied (&myDefaultMatrix),
myCullingMode (TelCullUndefined), myCullingMode (TelCullUndefined),
@ -252,10 +247,6 @@ void OpenGl_Workspace::ResetAppliedAspect()
AspectFace_applied = NULL; AspectFace_applied = NULL;
AspectMarker_set = &myDefaultAspectMarker; AspectMarker_set = &myDefaultAspectMarker;
AspectMarker_applied = NULL; AspectMarker_applied = NULL;
AspectText_set = &myDefaultAspectText;
AspectText_applied = NULL;
TextParam_set = &myDefaultTextParam;
TextParam_applied = NULL;
PolygonOffset_applied = THE_DEFAULT_POFFSET; PolygonOffset_applied = THE_DEFAULT_POFFSET;
myCullingMode = TelCullUndefined; myCullingMode = TelCullUndefined;
@ -1063,7 +1054,6 @@ const OpenGl_AspectText* OpenGl_Workspace::AspectText (const Standard_Boolean th
if (theWithApply) if (theWithApply)
{ {
AspectText_applied = AspectText_set; AspectText_applied = AspectText_set;
TextParam_applied = TextParam_set;
} }
return AspectText_set; return AspectText_set;

View File

@ -177,17 +177,11 @@ public:
Standard_EXPORT const OpenGl_AspectMarker* SetAspectMarker (const OpenGl_AspectMarker* theAspect); Standard_EXPORT const OpenGl_AspectMarker* SetAspectMarker (const OpenGl_AspectMarker* theAspect);
Standard_EXPORT const OpenGl_AspectText* SetAspectText (const OpenGl_AspectText* theAspect); Standard_EXPORT const OpenGl_AspectText* SetAspectText (const OpenGl_AspectText* theAspect);
void SetTextParam (const OpenGl_TextParam* theParam) { TextParam_set = theParam; }
//// THESE METHODS ARE EXPORTED AS THEY PROVIDE STATE INFO TO USERDRAW //// THESE METHODS ARE EXPORTED AS THEY PROVIDE STATE INFO TO USERDRAW
Standard_EXPORT const OpenGl_AspectLine* AspectLine (const Standard_Boolean theWithApply); Standard_EXPORT const OpenGl_AspectLine* AspectLine (const Standard_Boolean theWithApply);
Standard_EXPORT const OpenGl_AspectFace* AspectFace (const Standard_Boolean theWithApply); Standard_EXPORT const OpenGl_AspectFace* AspectFace (const Standard_Boolean theWithApply);
Standard_EXPORT const OpenGl_AspectMarker* AspectMarker (const Standard_Boolean theWithApply); Standard_EXPORT const OpenGl_AspectMarker* AspectMarker (const Standard_Boolean theWithApply);
Standard_EXPORT const OpenGl_AspectText* AspectText (const Standard_Boolean theWithApply); Standard_EXPORT const OpenGl_AspectText* AspectText (const Standard_Boolean theWithApply);
inline const OpenGl_TextParam* AspectTextParams() const
{
return TextParam_applied;
}
//! Clear the applied aspect state. //! Clear the applied aspect state.
void ResetAppliedAspect(); void ResetAppliedAspect();
@ -274,8 +268,6 @@ protected: //! @name fields related to status
const OpenGl_AspectMarker *AspectMarker_set, *AspectMarker_applied; const OpenGl_AspectMarker *AspectMarker_set, *AspectMarker_applied;
const OpenGl_AspectText *AspectText_set, *AspectText_applied; const OpenGl_AspectText *AspectText_set, *AspectText_applied;
const OpenGl_TextParam *TextParam_set, *TextParam_applied;
const OpenGl_Matrix* ViewMatrix_applied; const OpenGl_Matrix* ViewMatrix_applied;
const OpenGl_Matrix* StructureMatrix_applied; const OpenGl_Matrix* StructureMatrix_applied;

View File

@ -8444,6 +8444,25 @@ static Standard_Integer VRenderParams (Draw_Interpretor& theDI,
return 1; return 1;
} }
} }
else if (aFlag == "-resolution")
{
if (++anArgIter >= theArgNb)
{
std::cerr << "Error: wrong syntax at argument '" << anArg << "'\n";
return 1;
}
TCollection_AsciiString aResolution (theArgVec[anArgIter]);
if (aResolution.IsIntegerValue())
{
aView->ChangeRenderingParams().Resolution = static_cast<unsigned int> (Draw::Atoi (aResolution.ToCString()));
}
else
{
std::cout << "Error: wrong syntax at argument'" << anArg << "'.\n";
return 1;
}
}
else else
{ {
std::cout << "Error: wrong syntax, unknown flag '" << anArg << "'\n"; std::cout << "Error: wrong syntax, unknown flag '" << anArg << "'\n";
@ -9164,6 +9183,7 @@ void ViewerTest::ViewerCommands(Draw_Interpretor& theCommands)
"\n '-env on|off' Enables/disables environment map background" "\n '-env on|off' Enables/disables environment map background"
"\n '-shadingModel model' Controls shading model from enumeration" "\n '-shadingModel model' Controls shading model from enumeration"
"\n color, flat, gouraud, phong" "\n color, flat, gouraud, phong"
"\n '-resolution value' Sets a new pixels density (PPI), defines scaling factor for parameters like text size"
"\n Unlike vcaps, these parameters dramatically change visual properties." "\n Unlike vcaps, these parameters dramatically change visual properties."
"\n Command is intended to control presentation quality depending on" "\n Command is intended to control presentation quality depending on"
"\n hardware capabilities and performance.", "\n hardware capabilities and performance.",

31
tests/3rdparty/fonts/C1 vendored Normal file
View File

@ -0,0 +1,31 @@
puts "============"
puts "OCC26298 make font resolution configurable"
puts "============"
puts ""
pload VISUALIZATION
vfont add [locate_data_file DejaVuSans.ttf] SansFont
vclear
vclose all
vinit
vtop
vrenderparams -resolution 72
vdrawtext t0 TopLeftText -pos -100 100 0 -font SansFont -color yellow -valign top -halign left
vdrawtext t1 CenterText -pos 0 0 0 -font SansFont -color green -valign center -halign center
vdrawtext t2 BottomRightText -pos 100 -100 0 -font SansFont -color red -valign bottom -halign right
vfit
vdump $imagedir/${casename}_1.png
vrenderparams -resolution 96
vdump $imagedir/${casename}_2.png
vrenderparams -resolution 144
vdump $imagedir/${casename}_3.png