37#include <QTextBoundaryFinder>
42 if ( alignment & Qt::AlignLeft )
44 else if ( alignment & Qt::AlignRight )
46 else if ( alignment & Qt::AlignHCenter )
48 else if ( alignment & Qt::AlignJustify )
57 if ( alignment & Qt::AlignTop )
59 else if ( alignment & Qt::AlignBottom )
61 else if ( alignment & Qt::AlignVCenter )
64 else if ( alignment & Qt::AlignBaseline )
72 return static_cast< int >(
c.convertToPainterUnits( size, unit, mapUnitScale ) + 0.5 );
92 drawDocument( rect, lFormat, metrics.
document(), metrics, context, alignment, vAlignment, rotation, mode, flags );
97 const QgsTextFormat tmpFormat = updateShadowPosition( format );
115 drawParts( rect, rotation, horizontalAlignment, verticalAlignment, document, metrics, context, tmpFormat, components, mode );
123 lFormat = updateShadowPosition( lFormat );
159 lFormat = updateShadowPosition( lFormat );
166 drawDocumentOnLine( line, lFormat, document, context, offsetAlongLine, offsetFromLine );
171 QPolygonF labelBaselineCurve = line;
180#if GEOS_VERSION_MAJOR==3 && GEOS_VERSION_MINOR<11
181 if ( offsetFromLine < 0 )
184 std::unique_ptr < QgsLineString > reversed( offsetCurve->reversed() );
188 offsetCurve = std::move( reversed );
192 labelBaselineCurve = offsetCurve->asQPolygonF();
197 const QFont baseFont = format.
scaledFont( context, fontScale );
198 const double letterSpacing = baseFont.letterSpacing() / fontScale;
199 const double wordSpacing = baseFont.wordSpacing() / fontScale;
201 QStringList graphemes;
202 QVector< QgsTextCharacterFormat > graphemeFormats;
203 QVector< QgsTextDocumentMetrics > graphemeMetrics;
205 for (
const QgsTextBlock &block : std::as_const( document ) )
210 for (
const QString &grapheme : fragmentGraphemes )
212 graphemes.append( grapheme );
213 graphemeFormats.append( fragment.characterFormat() );
223 QVector< double > characterWidths( graphemes.count() );
224 QVector< double > characterHeights( graphemes.count() );
225 QVector< double > characterDescents( graphemes.count() );
226 QFont previousNonSuperSubScriptFont;
228 for (
int i = 0; i < graphemes.count(); i++ )
233 double graphemeFirstCharHorizontalAdvanceWithLetterSpacing = 0;
234 double graphemeFirstCharHorizontalAdvance = 0;
235 double graphemeHorizontalAdvance = 0;
236 double characterDescent = 0;
237 double characterHeight = 0;
240 QFont graphemeFont = baseFont;
244 previousNonSuperSubScriptFont = graphemeFont;
251 previousNonSuperSubScriptFont = graphemeFont;
272 previousNonSuperSubScriptFont = graphemeFont;
275 const QFontMetricsF graphemeFontMetrics( graphemeFont );
276 graphemeFirstCharHorizontalAdvance = graphemeFontMetrics.horizontalAdvance( QString( graphemes[i].at( 0 ) ) ) / fontScale;
277 graphemeFirstCharHorizontalAdvanceWithLetterSpacing = graphemeFontMetrics.horizontalAdvance( graphemes[i].at( 0 ) ) / fontScale + letterSpacing;
278 graphemeHorizontalAdvance = graphemeFontMetrics.horizontalAdvance( QString( graphemes[i] ) ) / fontScale;
279 characterDescent = graphemeFontMetrics.descent() / fontScale;
280 characterHeight = graphemeFontMetrics.height() / fontScale;
282 qreal wordSpaceFix = qreal( 0.0 );
283 if ( graphemes[i] == QLatin1String(
" " ) )
287 wordSpaceFix = ( nxt < graphemes.count() && graphemes[nxt] != QLatin1String(
" " ) ) ? wordSpacing : qreal( 0.0 );
292 if ( graphemes[i].length() == 1 &&
293 !
qgsDoubleNear( graphemeFirstCharHorizontalAdvance, graphemeFirstCharHorizontalAdvanceWithLetterSpacing ) )
296 wordSpaceFix -= wordSpacing;
299 const double charWidth = graphemeHorizontalAdvance + wordSpaceFix;
300 characterWidths[i] = charWidth;
301 characterHeights[i] = characterHeight;
302 characterDescents[i] = characterDescent;
305 QgsPrecalculatedTextMetrics metrics( graphemes, std::move( characterWidths ), std::move( characterHeights ), std::move( characterDescents ) );
309 metrics, labelBaselineCurve, offsetAlongLine,
316 if ( placement->graphemePlacement.empty() )
323 QHash< int, QgsTextRenderer::Component > components;
324 components.reserve( placement->graphemePlacement.size() );
327 QgsTextRenderer::Component component;
328 component.origin = QPointF( grapheme.x, grapheme.y );
329 component.rotation = -grapheme.angle;
335 component.origin.rx() += verticalOffset * std::cos( grapheme.angle + M_PI_2 );
336 component.origin.ry() += verticalOffset * std::sin( grapheme.angle + M_PI_2 );
339 components.insert( grapheme.graphemeIndex, component );
347 const QgsTextRenderer::Component &component = components[grapheme.graphemeIndex ];
357 const QgsTextRenderer::Component &component = components[grapheme.graphemeIndex ];
374 const QgsTextRenderer::Component &component = components[grapheme.graphemeIndex ];
427 component.dpiRatio = 1.0;
428 component.origin = rect.topLeft();
429 component.rotation = rotation;
430 component.size = rect.size();
431 component.hAlign = alignment;
439 double xc = rect.width() / 2.0;
440 double yc = rect.height() / 2.0;
442 double angle = -rotation;
443 double xd = xc * std::cos( angle ) - yc * std::sin( angle );
444 double yd = xc * std::sin( angle ) + yc * std::cos( angle );
446 component.center = QPointF( component.origin.x() + xd, component.origin.y() + yd );
450 component.center = rect.center();
453 switch ( vAlignment )
475 drawTextInternal( parts, context, format, component,
477 alignment, vAlignment, mode );
498 component.dpiRatio = 1.0;
499 component.origin = origin;
500 component.rotation = rotation;
501 component.hAlign = alignment;
505 QgsTextRenderer::drawBackground( context, component, format, metrics, mode );
515 drawTextInternal( parts, context, format, component,
525 return QFontMetricsF( format.
scaledFont( context, scaleFactor ), context.
painter() ? context.
painter()->device() : nullptr );
532 QPainter *p = context.
painter();
537 if ( component.rotation >= -315 && component.rotation < -90 )
541 else if ( component.rotation >= -90 && component.rotation < -45 )
559 std::optional< QgsScopedRenderContextReferenceScaleOverride > referenceScaleOverride;
570 referenceScaleOverride.reset();
573 path.setFillRule( Qt::WindingFill );
575 double height = component.size.height();
576 switch ( orientation )
587 double partYOffset = component.offset.y() * scaleFactor;
590 double partLastDescent = 0;
592 int fragmentIndex = 0;
595 const QFont fragmentFont = metrics.
fragmentFont( component.blockIndex, component.firstFragmentIndex + fragmentIndex );
596 const double letterSpacing = fragmentFont.letterSpacing() / scaleFactor;
598 const QFontMetricsF fragmentMetrics( fragmentFont );
600 const double fragmentYOffset = metrics.
fragmentVerticalOffset( component.blockIndex, fragmentIndex, mode );
603 for (
const QString &part : parts )
605 double partXOffset = ( blockMaximumCharacterWidth - ( fragmentMetrics.horizontalAdvance( part ) / scaleFactor - letterSpacing ) ) / 2;
606 partYOffset += fragmentMetrics.ascent() / scaleFactor;
607 path.addText( partXOffset, partYOffset + fragmentYOffset, fragmentFont, part );
608 partYOffset += letterSpacing;
610 partLastDescent = fragmentMetrics.descent() / scaleFactor;
614 height = partYOffset + partLastDescent;
615 advance = partYOffset - component.offset.y() * scaleFactor;
620 QColor bufferColor = buffer.
color();
621 bufferColor.setAlphaF( buffer.
opacity() );
622 QPen pen( bufferColor );
623 pen.setWidthF( penSize * scaleFactor );
625 QColor tmpColor( bufferColor );
629 tmpColor.setAlpha( 0 );
635 buffp.begin( &buffPict );
639 std::unique_ptr< QgsPaintEffect > tmpEffect( buffer.
paintEffect()->
clone() );
641 tmpEffect->begin( context );
642 context.
painter()->setPen( pen );
643 context.
painter()->setBrush( tmpColor );
644 if ( scaleFactor != 1.0 )
645 context.
painter()->scale( 1 / scaleFactor, 1 / scaleFactor );
646 context.
painter()->drawPath( path );
647 if ( scaleFactor != 1.0 )
648 context.
painter()->scale( scaleFactor, scaleFactor );
649 tmpEffect->end( context );
655 if ( scaleFactor != 1.0 )
656 buffp.scale( 1 / scaleFactor, 1 / scaleFactor );
658 buffp.setBrush( tmpColor );
659 buffp.drawPath( path );
665 QgsTextRenderer::Component bufferComponent = component;
666 bufferComponent.origin = QPointF( 0.0, 0.0 );
667 bufferComponent.picture = buffPict;
668 bufferComponent.pictureBuffer = penSize / 2.0;
669 bufferComponent.size.setHeight( height );
673 bufferComponent.offset.setY( - bufferComponent.size.height() );
675 drawShadow( context, bufferComponent, format );
683 p->setCompositionMode( buffer.
blendMode() );
687 p->scale( component.dpiRatio, component.dpiRatio );
689 p->drawPicture( 0, 0, buffPict );
691 return advance / scaleFactor;
711 path.setFillRule( Qt::WindingFill );
718 std::optional< QgsScopedRenderContextReferenceScaleOverride > referenceScaleOverride;
729 referenceScaleOverride.reset();
732 int fragmentIndex = 0;
735 if ( !fragment.isWhitespace() && !fragment.isImage() )
737 const QFont fragmentFont = metrics.
fragmentFont( component.blockIndex, fragmentIndex );
739 const double fragmentYOffset = metrics.
fragmentVerticalOffset( component.blockIndex, fragmentIndex, mode );
740 path.addText( xOffset, fragmentYOffset, fragmentFont, fragment.text() );
747 QColor bufferColor( Qt::gray );
748 bufferColor.setAlphaF( mask.
opacity() );
752 brush.setColor( bufferColor );
753 pen.setColor( bufferColor );
754 pen.setWidthF( penSize * scaleFactor );
761 p->scale( component.dpiRatio, component.dpiRatio );
767 if ( scaleFactor != 1.0 )
768 context.
painter()->scale( 1 / scaleFactor, 1 / scaleFactor );
769 context.
painter()->setPen( pen );
770 context.
painter()->setBrush( brush );
771 context.
painter()->drawPath( path );
772 if ( scaleFactor != 1.0 )
773 context.
painter()->scale( scaleFactor, scaleFactor );
778 if ( scaleFactor != 1.0 )
779 p->scale( 1 / scaleFactor, 1 / scaleFactor );
781 p->setBrush( brush );
783 if ( scaleFactor != 1.0 )
784 p->scale( scaleFactor, scaleFactor );
792 if ( doc.
size() == 0 )
795 return textWidth( context, format, doc );
812 for (
const QString &line : textLines )
816 lines.append(
wrappedText( context, line, maxLineWidth, format ) );
820 lines.append( line );
825 return textHeight( context, format, doc, mode );
832 bool isNullSize =
false;
833 const QFont baseFont = format.
scaledFont( context, scaleFactor, &isNullSize );
837 const QFontMetrics fm( baseFont );
838 const double height = ( character.isNull() ? fm.height() : fm.boundingRect( character ).height() ) / scaleFactor;
840 if ( !includeEffects )
843 double maxExtension = 0;
872 return height + maxExtension;
880 const QStringList multiLineSplit = text.split(
'\n' );
882 return currentTextWidth > width;
887 const QStringList lines = text.split(
'\n' );
888 QStringList outLines;
889 for (
const QString &line : lines )
894 const QStringList words = line.split(
' ' );
895 QStringList linesToProcess;
896 QString wordsInCurrentLine;
897 for (
const QString &word : words )
902 if ( !wordsInCurrentLine.isEmpty() )
903 linesToProcess << wordsInCurrentLine;
904 wordsInCurrentLine.clear();
905 linesToProcess << word;
909 if ( !wordsInCurrentLine.isEmpty() )
910 wordsInCurrentLine.append(
' ' );
911 wordsInCurrentLine.append( word );
914 if ( !wordsInCurrentLine.isEmpty() )
915 linesToProcess << wordsInCurrentLine;
917 for (
const QString &line : std::as_const( linesToProcess ) )
919 QString remainingText = line;
920 int lastPos = remainingText.lastIndexOf(
' ' );
921 while ( lastPos > -1 )
931 outLines << remainingText.left( lastPos );
932 remainingText = remainingText.mid( lastPos + 1 );
935 lastPos = remainingText.lastIndexOf(
' ', lastPos - 1 );
937 outLines << remainingText;
968 QPainter *prevP = context.
painter();
969 QPainter *p = context.
painter();
970 std::unique_ptr< QgsPaintEffect > tmpEffect;
974 tmpEffect->begin( context );
983 const double originAdjustRotationRadians = -component.rotation;
986 component.rotation = -( component.rotation * 180 / M_PI );
987 component.rotationOffset =
992 component.rotation = 0.0;
993 component.rotationOffset = background.
rotation();
1002 double width = documentSize.width();
1003 double height = documentSize.height();
1010 switch ( component.hAlign )
1014 component.center = QPointF( component.origin.x() + width / 2.0,
1015 component.origin.y() + height / 2.0 );
1019 component.center = QPointF( component.origin.x() + component.size.width() / 2.0,
1020 component.origin.y() + height / 2.0 );
1024 component.center = QPointF( component.origin.x() + component.size.width() - width / 2.0,
1025 component.origin.y() + height / 2.0 );
1032 bool isNullSize =
false;
1033 QFontMetricsF fm( format.
scaledFont( context, scaleFactor, &isNullSize ) );
1034 double originAdjust = isNullSize ? 0 : ( fm.ascent() / scaleFactor / 2.0 - fm.leading() / scaleFactor / 2.0 );
1035 switch ( component.hAlign )
1039 component.center = QPointF( component.origin.x() + width / 2.0,
1040 component.origin.y() - height / 2.0 + originAdjust );
1044 component.center = QPointF( component.origin.x(),
1045 component.origin.y() - height / 2.0 + originAdjust );
1049 component.center = QPointF( component.origin.x() - width / 2.0,
1050 component.origin.y() - height / 2.0 + originAdjust );
1057 const double dx = component.center.x() - component.origin.x();
1058 const double dy = component.center.y() - component.origin.y();
1059 component.center.setX( component.origin.x() + ( std::cos( originAdjustRotationRadians ) * dx - std::sin( originAdjustRotationRadians ) * dy ) );
1060 component.center.setY( component.origin.y() + ( std::sin( originAdjustRotationRadians ) * dx + std::cos( originAdjustRotationRadians ) * dy ) );
1070 component.size = QSizeF( width, height );
1075 switch ( background.
type() )
1088 double sizeOut = 0.0;
1099 sizeOut = std::max( component.size.width(), component.size.height() );
1103 sizeOut += bufferSize * 2;
1109 if ( sizeOut < 1.0 )
1112 std::unique_ptr< QgsMarkerSymbol > renderedSymbol;
1116 map[QStringLiteral(
"name" )] = background.
svgFile().trimmed();
1117 map[QStringLiteral(
"size" )] = QString::number( sizeOut );
1119 map[QStringLiteral(
"angle" )] = QString::number( 0.0 );
1127 map[QStringLiteral(
"fill" )] = background.
fillColor().name();
1128 map[QStringLiteral(
"outline" )] = background.
strokeColor().name();
1129 map[QStringLiteral(
"outline-width" )] = QString::number( background.
strokeWidth() );
1136 QVariantMap shdwmap( map );
1137 shdwmap[QStringLiteral(
"fill" )] = shadow.
color().name();
1138 shdwmap[QStringLiteral(
"outline" )] = shadow.
color().name();
1139 shdwmap[QStringLiteral(
"size" )] = QString::number( sizeOut );
1144 svgp.begin( &svgPict );
1161 svgShdwM->
renderPoint( QPointF( sizeOut / 2, -sizeOut / 2 ), svgShdwContext );
1164 component.picture = svgPict;
1166 component.pictureBuffer = 0.0;
1168 component.size = QSizeF( sizeOut, sizeOut );
1169 component.offset = QPointF( 0.0, 0.0 );
1175 p->translate( component.center.x(), component.center.y() );
1176 p->rotate( component.rotation );
1179 p->translate( QPointF( xoff, yoff ) );
1180 p->rotate( component.rotationOffset );
1181 p->translate( -sizeOut / 2, sizeOut / 2 );
1183 drawShadow( context, component, format );
1185 renderedSymbol.reset( );
1193 renderedSymbol->setSize( sizeOut );
1197 renderedSymbol->setOpacity( renderedSymbol->opacity() * background.
opacity() );
1205 p->setCompositionMode( background.
blendMode() );
1207 p->translate( component.center.x(), component.center.y() );
1208 p->rotate( component.rotation );
1211 p->translate( QPointF( xoff, yoff ) );
1212 p->rotate( component.rotationOffset );
1216 renderedSymbol->renderPoint( QPointF( 0, 0 ), &f, context );
1217 renderedSymbol->stopRender( context );
1218 p->setCompositionMode( QPainter::CompositionMode_SourceOver );
1228 double w = component.size.width();
1229 double h = component.size.height();
1250 h = std::sqrt( std::pow( w, 2 ) + std::pow( h, 2 ) );
1256 h = h * M_SQRT1_2 * 2;
1257 w = w * M_SQRT1_2 * 2;
1265 w += bufferWidth * 2;
1266 h += bufferHeight * 2;
1270 QRectF rect( -w / 2.0, - h / 2.0, w, h );
1272 if ( rect.isNull() )
1278 p->translate( QPointF( component.center.x(), component.center.y() ) );
1279 p->rotate( component.rotation );
1282 p->translate( QPointF( xoff, yoff ) );
1283 p->rotate( component.rotationOffset );
1289 QTransform t = QTransform::fromScale( 10, 10 );
1291 QTransform ti = t.inverted();
1298 path.addRoundedRect( rect, background.
radii().width(), background.
radii().height(), Qt::RelativeSize );
1304 path.addRoundedRect( rect, xRadius, yRadius );
1310 path.addEllipse( rect );
1312 QPolygonF tempPolygon = path.toFillPolygon( t );
1313 QPolygonF polygon = ti.map( tempPolygon );
1315 QPainter *oldp = context.
painter();
1318 shapep.begin( &shapePict );
1321 std::unique_ptr< QgsFillSymbol > renderedSymbol;
1323 renderedSymbol->setOpacity( renderedSymbol->opacity() * background.
opacity() );
1327 renderedSymbol->renderPolygon( polygon,
nullptr, &f, context );
1328 renderedSymbol->stopRender( context );
1335 component.picture = shapePict;
1338 component.size = rect.size();
1339 component.offset = QPointF( rect.width() / 2, -rect.height() / 2 );
1340 drawShadow( context, component, format );
1345 p->setCompositionMode( background.
blendMode() );
1349 p->scale( component.dpiRatio, component.dpiRatio );
1351 p->drawPicture( 0, 0, shapePict );
1352 p->setCompositionMode( QPainter::CompositionMode_SourceOver );
1359 tmpEffect->end( context );
1368 QPainter *p = context.
painter();
1369 const double componentWidth = component.size.width();
1370 const double componentHeight = component.size.height();
1371 const double xOffset = component.offset.x();
1372 const double yOffset = component.offset.y();
1373 double pictbuffer = component.pictureBuffer;
1382 radius /= ( mapUnits ? context.
scaleFactor() / component.dpiRatio : 1 );
1383 radius =
static_cast< int >( radius + 0.5 );
1387 double blurBufferClippingScale = 3.75;
1388 int blurbuffer = ( radius > 17 ? 16 : radius ) * blurBufferClippingScale;
1390 QImage blurImg( componentWidth + ( pictbuffer * 2.0 ) + ( blurbuffer * 2.0 ),
1391 componentHeight + ( pictbuffer * 2.0 ) + ( blurbuffer * 2.0 ),
1392 QImage::Format_ARGB32_Premultiplied );
1396 int minBlurImgSize = 1;
1400 int maxBlurImgSize = 40000;
1401 if ( blurImg.isNull()
1402 || ( blurImg.width() < minBlurImgSize || blurImg.height() < minBlurImgSize )
1403 || ( blurImg.width() > maxBlurImgSize || blurImg.height() > maxBlurImgSize ) )
1406 blurImg.fill( QColor( Qt::transparent ).rgba() );
1408 if ( !pictp.begin( &blurImg ) )
1410 pictp.setRenderHints( QPainter::Antialiasing | QPainter::SmoothPixmapTransform );
1411 QPointF imgOffset( blurbuffer + pictbuffer + xOffset,
1412 blurbuffer + pictbuffer + componentHeight + yOffset );
1414 pictp.drawPicture( imgOffset,
1415 component.picture );
1418 pictp.setCompositionMode( QPainter::CompositionMode_SourceIn );
1419 pictp.fillRect( blurImg.rect(), shadow.
color() );
1423 if ( shadow.
blurRadius() > 0.0 && radius > 0 )
1431 picti.begin( &blurImg );
1432 picti.setBrush( Qt::Dense7Pattern );
1433 QPen imgPen( QColor( 0, 0, 255, 255 ) );
1434 imgPen.setWidth( 1 );
1435 picti.setPen( imgPen );
1436 picti.setOpacity( 0.1 );
1437 picti.drawRect( 0, 0, blurImg.width(), blurImg.height() );
1444 double angleRad = shadow.
offsetAngle() * M_PI / 180;
1452 angleRad -= ( component.rotation * M_PI / 180 + component.rotationOffset * M_PI / 180 );
1455 QPointF transPt( -offsetDist * std::cos( angleRad + M_PI_2 ),
1456 -offsetDist * std::sin( angleRad + M_PI_2 ) );
1462 p->setRenderHint( QPainter::SmoothPixmapTransform );
1465 p->setCompositionMode( shadow.
blendMode() );
1467 p->setOpacity( shadow.
opacity() );
1469 double scale = shadow.
scale() / 100.0;
1471 p->scale( scale, scale );
1472 if ( component.useOrigin )
1474 p->translate( component.origin.x(), component.origin.y() );
1476 p->translate( transPt );
1477 p->translate( -imgOffset.x(),
1479 p->drawImage( 0, 0, blurImg );
1486 p->setBrush( Qt::NoBrush );
1487 QPen imgPen( QColor( 255, 0, 0, 10 ) );
1488 imgPen.setWidth( 2 );
1489 imgPen.setStyle( Qt::DashLine );
1490 p->setPen( imgPen );
1491 p->scale( scale, scale );
1492 if ( component.useOrigin() )
1494 p->translate( component.origin().x(), component.origin().y() );
1496 p->translate( transPt );
1497 p->translate( -imgOffset.x(),
1499 p->drawRect( 0, 0, blurImg.width(), blurImg.height() );
1504 p->setBrush( Qt::NoBrush );
1505 QPen componentRectPen( QColor( 0, 255, 0, 70 ) );
1506 componentRectPen.setWidth( 1 );
1507 if ( component.useOrigin() )
1509 p->translate( component.origin().x(), component.origin().y() );
1511 p->setPen( componentRectPen );
1512 p->drawRect( QRect( -xOffset, -componentHeight - yOffset, componentWidth, componentHeight ) );
1521 const Component &component,
1533 std::optional< QgsScopedRenderContextReferenceScaleOverride > referenceScaleOverride;
1544 referenceScaleOverride.reset();
1546 double rotation = 0;
1547 const Qgis::TextOrientation orientation = calculateRotationAndOrientationForComponent( format, component, rotation );
1548 switch ( orientation )
1552 drawTextInternalHorizontal( context, format, components, mode, component, document, metrics, fontScale, alignment, vAlignment, rotation );
1561 drawTextInternalVertical( context, format,
Qgis::TextComponent::Buffer, mode, component, document, metrics, fontScale, alignment, vAlignment, rotation );
1563 drawTextInternalVertical( context, format,
Qgis::TextComponent::Text, mode, component, document, metrics, fontScale, alignment, vAlignment, rotation );
1569Qgis::TextOrientation QgsTextRenderer::calculateRotationAndOrientationForComponent(
const QgsTextFormat &format,
const QgsTextRenderer::Component &component,
double &rotation )
1571 rotation = -component.rotation * 180 / M_PI;
1578 if ( rotation >= -315 && rotation < -90 )
1583 else if ( rotation >= -90 && rotation < -45 )
1599void QgsTextRenderer::calculateExtraSpacingForLineJustification(
const double spaceToDistribute,
const QgsTextBlock &block,
double &extraWordSpace,
double &extraLetterSpace )
1602 QTextBoundaryFinder
finder( QTextBoundaryFinder::Word, blockText );
1604 int wordBoundaries = 0;
1605 while (
finder.toNextBoundary() != -1 )
1607 if (
finder.boundaryReasons() & QTextBoundaryFinder::StartOfItem )
1611 if ( wordBoundaries > 0 )
1614 extraWordSpace = spaceToDistribute / wordBoundaries;
1619 QTextBoundaryFinder
finder( QTextBoundaryFinder::Grapheme, blockText );
1622 int graphemeBoundaries = 0;
1623 while (
finder.toNextBoundary() != -1 )
1625 if (
finder.boundaryReasons() & QTextBoundaryFinder::StartOfItem )
1626 graphemeBoundaries++;
1629 if ( graphemeBoundaries > 0 )
1631 extraLetterSpace = spaceToDistribute / graphemeBoundaries;
1636void QgsTextRenderer::applyExtraSpacingForLineJustification( QFont &font,
double extraWordSpace,
double extraLetterSpace )
1638 const double prevWordSpace = font.wordSpacing();
1639 font.setWordSpacing( prevWordSpace + extraWordSpace );
1640 const double prevLetterSpace = font.letterSpacing();
1641 font.setLetterSpacing( QFont::AbsoluteSpacing, prevLetterSpace + extraLetterSpace );
1645void QgsTextRenderer::renderBlockHorizontal(
const QgsTextBlock &block,
int blockIndex,
1648 QPainter *painter,
bool forceRenderAsPaths,
1649 double fontScale,
double extraWordSpace,
double extraLetterSpace,
1655 int fragmentIndex = 0;
1659 if ( !fragment.isWhitespace() && !fragment.isImage() )
1661 QFont fragmentFont = metrics.
fragmentFont( blockIndex, fragmentIndex );
1664 applyExtraSpacingForLineJustification( fragmentFont, extraWordSpace * fontScale, extraLetterSpace * fontScale );
1668 QColor textColor = fragment.characterFormat().textColor().isValid() ? fragment.characterFormat().textColor() : format.
color();
1669 textColor.setAlphaF( fragment.characterFormat().textColor().isValid() ? textColor.alphaF() * format.
opacity() : format.opacity() );
1671 if ( deferredRenderBlock )
1673 DeferredRenderFragment renderFragment;
1674 renderFragment.color = textColor;
1675 if ( forceRenderAsPaths )
1677 renderFragment.path.setFillRule( Qt::WindingFill );
1678 renderFragment.path.addText( xOffset, yOffset, fragmentFont, fragment.text() );
1680 renderFragment.font = fragmentFont;
1681 renderFragment.point = QPointF( xOffset, yOffset );
1682 renderFragment.text = fragment.text();
1683 deferredRenderBlock->fragments.append( renderFragment );
1685 else if ( forceRenderAsPaths )
1687 painter->setBrush( textColor );
1689 path.setFillRule( Qt::WindingFill );
1690 path.addText( xOffset, yOffset, fragmentFont, fragment.text() );
1691 painter->drawPath( path );
1695 painter->setPen( textColor );
1696 painter->setFont( fragmentFont );
1697 painter->drawText( QPointF( xOffset, yOffset ), fragment.text() );
1700 else if ( fragment.isImage() )
1702 bool fitsInCache =
false;
1704 const double imageHeight = metrics.
fragmentFixedHeight( blockIndex, fragmentIndex, mode ) * fontScale;
1707 QSize(
static_cast< int >( std::round( imageWidth ) ),
1708 static_cast< int >( std::round( imageHeight ) ) ),
1712 const double yOffset = imageBaseline - image.height();
1713 if ( !image.isNull() )
1714 painter->drawImage( QPointF( xOffset, yOffset ), image );
1745 if ( format.
font().underline()
1746 || format.
font().overline()
1747 || format.
font().strikeOut()
1748 || std::any_of( document.begin(), document.end(), [](
const QgsTextBlock & block )
1750 return std::any_of( block.begin(), block.end(), []( const QgsTextFragment & fragment )
1752 return fragment.characterFormat().underline() == QgsTextCharacterFormat::BooleanValue::SetTrue
1753 || fragment.characterFormat().overline() == QgsTextCharacterFormat::BooleanValue::SetTrue
1754 || fragment.characterFormat().strikeOut() == QgsTextCharacterFormat::BooleanValue::SetTrue;
1767 return std::any_of( document.begin(), document.end(), [](
const QgsTextBlock & block )
1769 return std::any_of( block.begin(), block.end(), []( const QgsTextFragment & fragment )
1771 return fragment.isImage();
1780 const QStringList textLines = document.
toPlainText();
1784 double targetWidth = 0.0;
1789 targetWidth = documentSize.width();
1795 targetWidth = component.size.width();
1799 double verticalAlignOffset = 0;
1803 const double overallHeight = documentSize.height();
1804 switch ( vAlignment )
1811 verticalAlignOffset = ( component.size.height() - overallHeight ) * 0.5 + metrics.
blockVerticalMargin( - 1 );
1815 verticalAlignOffset = ( component.size.height() - overallHeight ) + metrics.
blockVerticalMargin( - 1 );
1825 const bool usePathsForText = usePathsToRender( context, format, document );
1829 std::unique_ptr< std::vector< DeferredRenderBlock > > deferredBlocks;
1836 if ( requiresMultiPassRendering )
1838 deferredBlocks = std::make_unique< std::vector< DeferredRenderBlock > >();
1839 deferredBlocks->reserve( document.
size() );
1850 || textLines.size() > 1 );
1852 const bool isFinalLineInParagraph = ( blockIndex == document.
size() - 1 )
1853 || document.
at( blockIndex + 1 ).
toPlainText().trimmed().isEmpty();
1855 const double blockHeight = metrics.
blockHeight( blockIndex );
1857 DeferredRenderBlock *deferredBlock =
nullptr;
1858 if ( requiresMultiPassRendering && deferredBlocks )
1860 deferredBlocks->emplace_back( DeferredRenderBlock() );
1861 deferredBlock = &deferredBlocks->back();
1862 deferredBlock->fragments.reserve( block.
size() );
1867 context.
painter()->translate( component.origin );
1869 context.
painter()->rotate( rotation );
1874 maskPainter->save();
1875 maskPainter->translate( component.origin );
1877 maskPainter->rotate( rotation );
1881 double xMultiLineOffset = 0.0;
1882 double blockWidth = metrics.
blockWidth( blockIndex );
1883 double extraWordSpace = 0;
1884 double extraLetterSpace = 0;
1885 if ( adjustForAlignment )
1887 double labelWidthDiff = 0;
1888 switch ( blockAlignment )
1895 labelWidthDiff = targetWidth - blockWidth - metrics.
blockRightMargin( blockIndex );
1899 if ( !isFinalLineInParagraph && targetWidth > blockWidth )
1901 calculateExtraSpacingForLineJustification( targetWidth - blockWidth, block, extraWordSpace, extraLetterSpace );
1902 blockWidth = targetWidth;
1918 xMultiLineOffset = labelWidthDiff;
1923 switch ( blockAlignment )
1926 xMultiLineOffset = labelWidthDiff - targetWidth;
1930 xMultiLineOffset = labelWidthDiff - targetWidth / 2.0;
1947 const double baseLineOffset = metrics.
baselineOffset( blockIndex, mode );
1949 const QPointF blockOrigin( xMultiLineOffset, baseLineOffset + verticalAlignOffset );
1950 if ( deferredBlock )
1951 deferredBlock->origin = blockOrigin;
1953 context.
painter()->translate( blockOrigin );
1955 maskPainter->translate( blockOrigin );
1957 Component subComponent;
1958 subComponent.block = block;
1959 subComponent.blockIndex = blockIndex;
1960 subComponent.
size = QSizeF( blockWidth, blockHeight );
1961 subComponent.offset = QPointF( 0.0, -metrics.
ascentOffset() );
1962 subComponent.rotation = -component.rotation * 180 / M_PI;
1963 subComponent.rotationOffset = 0.0;
1964 subComponent.extraWordSpacing = extraWordSpace * fontScale;
1965 subComponent.extraLetterSpacing = extraLetterSpace * fontScale;
1966 if ( deferredBlock )
1967 deferredBlock->component = subComponent;
1972 QgsTextRenderer::drawMask( context, subComponent, format, metrics, mode );
1980 const bool needsPaths = usePathsForText
1984 std::optional< QgsScopedRenderContextReferenceScaleOverride > referenceScaleOverride;
1992 referenceScaleOverride.reset();
2001 context.
painter()->scale( subComponent.dpiRatio, subComponent.dpiRatio );
2003 context.
painter()->scale( 1 / fontScale, 1 / fontScale );
2004 context.
painter()->setPen( Qt::NoPen );
2005 context.
painter()->setBrush( Qt::NoBrush );
2006 renderBlockHorizontal( block, blockIndex, metrics, context, format, context.
painter(), needsPaths,
2007 fontScale, extraWordSpace, extraLetterSpace, mode, deferredBlock );
2010 maskPainter->restore();
2015 if ( deferredBlocks )
2017 renderDeferredBlocks(
2018 context, format, components, *deferredBlocks, usePathsForText, fontScale, component, rotation
2026 const std::vector< DeferredRenderBlock > &deferredBlocks,
2027 bool usePathsForText,
2029 const Component &component,
2034 renderDeferredBuffer( context, format, components, deferredBlocks, fontScale, component, rotation );
2041 renderDeferredShadowForText( context, format, deferredBlocks, fontScale, component, rotation );
2050 renderDeferredText( context, deferredBlocks, usePathsForText, fontScale, component, rotation );
2054void QgsTextRenderer::renderDeferredShadowForText(
QgsRenderContext &context,
2056 const std::vector< DeferredRenderBlock > &deferredBlocks,
2058 const Component &component,
2063 context.
painter()->translate( component.origin );
2065 context.
painter()->rotate( rotation );
2067 context.
painter()->setPen( Qt::NoPen );
2068 context.
painter()->setBrush( Qt::NoBrush );
2070 for (
const DeferredRenderBlock &block : deferredBlocks )
2072 Component subComponent = block.component;
2074 QPainter painter( &subComponent.picture );
2075 painter.setPen( Qt::NoPen );
2076 painter.setBrush( Qt::NoBrush );
2077 painter.scale( 1 / fontScale, 1 / fontScale );
2079 for (
const DeferredRenderFragment &fragment : std::as_const( block.fragments ) )
2081 if ( !fragment.path.isEmpty() )
2083 painter.setBrush( fragment.color );
2084 painter.drawPath( fragment.path );
2088 painter.setPen( fragment.color );
2089 painter.setFont( fragment.font );
2090 painter.drawText( fragment.point, fragment.text );
2095 subComponent.pictureBuffer = 1.0;
2096 subComponent.origin = QPointF( 0.0, 0.0 );
2097 const QRectF pictureBoundingRect = subComponent.picture.boundingRect();
2098 subComponent.size = pictureBoundingRect.size();
2099 subComponent.offset = QPointF( -pictureBoundingRect.left(), -pictureBoundingRect.height() - pictureBoundingRect.top() );
2101 context.
painter()->translate( block.origin );
2102 drawShadow( context, subComponent, format );
2103 context.
painter()->translate( -block.origin );
2110 const std::vector< DeferredRenderBlock > &deferredBlocks,
2112 const Component &component,
2122 std::unique_ptr< QPicture > bufferPicture;
2123 std::unique_ptr< QPainter > bufferPainter;
2124 QPainter *prevPainter = context.
painter();
2125 if ( needsShadowOnBuffer )
2127 bufferPicture = std::make_unique< QPicture >();
2128 bufferPainter = std::make_unique< QPainter >( bufferPicture.get() );
2132 std::unique_ptr< QgsPaintEffect > tmpEffect;
2136 tmpEffect->begin( context );
2141 QPen pen( bufferColor );
2146 pen.setWidthF( penSize * fontScale );
2148 context.
painter()->setPen( pen );
2153 bufferColor.setAlpha( 0 );
2155 context.
painter()->setBrush( bufferColor );
2157 context.
painter()->translate( component.origin );
2159 context.
painter()->rotate( rotation );
2166 for (
const DeferredRenderBlock &block : deferredBlocks )
2168 context.
painter()->translate( block.origin );
2169 context.
painter()->scale( 1 / fontScale, 1 / fontScale );
2170 for (
const DeferredRenderFragment &fragment : std::as_const( block.fragments ) )
2172 context.
painter()->drawPath( fragment.path );
2174 context.
painter()->scale( fontScale, fontScale );
2175 context.
painter()->translate( -block.origin );
2180 tmpEffect->end( context );
2183 if ( needsShadowOnBuffer && bufferPicture )
2185 bufferPainter->end();
2186 bufferPainter.reset();
2189 QgsTextRenderer::Component bufferComponent = component;
2190 bufferComponent.origin = QPointF( 0.0, 0.0 );
2191 bufferComponent.picture = *bufferPicture;
2192 bufferComponent.pictureBuffer = penSize / 2.0;
2193 const QRectF bufferBoundingBox = bufferPicture->boundingRect();
2194 bufferComponent.size = bufferBoundingBox.size();
2195 bufferComponent.offset = QPointF( -bufferBoundingBox.left(), -bufferBoundingBox.height() - bufferBoundingBox.top() );
2197 drawShadow( context, bufferComponent, format );
2206 context.
painter()->scale( component.dpiRatio, component.dpiRatio );
2212 const std::vector< DeferredRenderBlock > &deferredBlocks,
2213 bool usePathsForText,
2215 const Component &component,
2220 context.
painter()->translate( component.origin );
2222 context.
painter()->rotate( rotation );
2224 context.
painter()->setPen( Qt::NoPen );
2225 context.
painter()->setBrush( Qt::NoBrush );
2228 for (
const DeferredRenderBlock &block : deferredBlocks )
2230 context.
painter()->translate( block.origin );
2231 context.
painter()->scale( 1 / fontScale, 1 / fontScale );
2233 for (
const DeferredRenderFragment &fragment : std::as_const( block.fragments ) )
2235 if ( usePathsForText )
2237 context.
painter()->setBrush( fragment.color );
2238 context.
painter()->drawPath( fragment.path );
2242 context.
painter()->setPen( fragment.color );
2243 context.
painter()->setFont( fragment.font );
2244 context.
painter()->drawText( fragment.point, fragment.text );
2248 context.
painter()->scale( fontScale, fontScale );
2249 context.
painter()->translate( -block.origin );
2253void QgsTextRenderer::drawTextInternalVertical(
QgsRenderContext &context,
const QgsTextFormat &format,
Qgis::TextComponents components,
Qgis::TextLayoutMode mode,
const QgsTextRenderer::Component &component,
const QgsTextDocument &document,
const QgsTextDocumentMetrics &metrics,
double fontScale,
Qgis::TextHorizontalAlignment hAlignment,
Qgis::TextVerticalAlignment,
double rotation )
2256 const QStringList textLines = document.
toPlainText();
2258 std::optional< QgsScopedRenderContextReferenceScaleOverride > referenceScaleOverride;
2269 referenceScaleOverride.reset();
2272 const double actualTextWidth = documentSize.width();
2273 double textRectWidth = 0.0;
2279 textRectWidth = actualTextWidth;
2285 textRectWidth = component.size.width();
2289 int maxLineLength = 0;
2290 for (
const QString &line : std::as_const( textLines ) )
2292 maxLineLength = std::max( maxLineLength,
static_cast<int>( line.length() ) );
2295 const double actualLabelHeight = documentSize.height();
2305 context.
painter()->translate( component.origin );
2307 context.
painter()->rotate( rotation );
2312 maskPainter->save();
2313 maskPainter->translate( component.origin );
2315 maskPainter->rotate( rotation );
2322 if ( adjustForAlignment )
2324 double hAlignmentOffset = 0;
2325 switch ( hAlignment )
2328 hAlignmentOffset = ( textRectWidth - actualTextWidth ) * 0.5;
2332 hAlignmentOffset = textRectWidth - actualTextWidth;
2346 xOffset += hAlignmentOffset;
2354 double yOffset = 0.0;
2360 if ( rotation >= -405 && rotation < -180 )
2364 else if ( rotation >= 0 && rotation < 45 )
2366 xOffset -= actualTextWidth;
2372 yOffset = -actualLabelHeight;
2377 yOffset = -actualLabelHeight;
2387 context.
painter()->translate( QPointF( xOffset, yOffset ) );
2389 double currentBlockYOffset = 0;
2390 int fragmentIndex = 0;
2398 const QFont fragmentFont = metrics.
fragmentFont( blockIndex, fragmentIndex );
2400 QFontMetricsF fragmentMetrics( fragmentFont );
2402 const double letterSpacing = fragmentFont.letterSpacing() / fontScale;
2403 const double labelHeight = fragmentMetrics.ascent() / fontScale + ( fragmentMetrics.ascent() / fontScale + letterSpacing ) * ( line.length() - 1 );
2405 Component subComponent;
2407 subComponent.blockIndex = blockIndex;
2408 subComponent.firstFragmentIndex = fragmentIndex;
2409 subComponent.size = QSizeF( blockMaximumCharacterWidth, labelHeight + fragmentMetrics.descent() / fontScale );
2410 subComponent.offset = QPointF( 0.0, currentBlockYOffset );
2411 subComponent.rotation = -component.rotation * 180 / M_PI;
2412 subComponent.rotationOffset = 0.0;
2419 QgsTextRenderer::drawMask( context, subComponent, format );
2425 currentBlockYOffset += QgsTextRenderer::drawBuffer( context, subComponent, format, metrics, mode );
2431 path.setFillRule( Qt::WindingFill );
2433 double partYOffset = 0.0;
2434 for (
const QString &part : parts )
2436 double partXOffset = ( blockMaximumCharacterWidth - ( fragmentMetrics.horizontalAdvance( part ) / fontScale - letterSpacing ) ) / 2;
2437 partYOffset += fragmentMetrics.ascent() / fontScale;
2438 path.addText( partXOffset * fontScale, partYOffset * fontScale, fragmentFont, part );
2439 partYOffset += letterSpacing;
2445 textp.begin( &textPict );
2446 textp.setPen( Qt::NoPen );
2447 QColor textColor = fragment.characterFormat().textColor().isValid() ? fragment.characterFormat().textColor() : format.
color();
2448 textColor.setAlphaF( fragment.characterFormat().textColor().isValid() ? textColor.alphaF() * format.
opacity() : format.
opacity() );
2449 textp.setBrush( textColor );
2450 textp.scale( 1 / fontScale, 1 / fontScale );
2451 textp.drawPath( path );
2462 subComponent.picture = textPict;
2463 subComponent.pictureBuffer = 0.0;
2464 subComponent.origin = QPointF( 0.0, currentBlockYOffset );
2465 const double prevY = subComponent.offset.y();
2466 subComponent.offset = QPointF( 0, -subComponent.size.height() );
2467 subComponent.useOrigin =
true;
2468 QgsTextRenderer::drawShadow( context, subComponent, format );
2469 subComponent.useOrigin =
false;
2470 subComponent.offset = QPointF( 0, prevY );
2480 context.
painter()->scale( subComponent.dpiRatio, subComponent.dpiRatio );
2484 context.
painter()->translate( 0, currentBlockYOffset );
2486 context.
painter()->drawPicture( 0, 0, textPict );
2487 currentBlockYOffset += partYOffset;
2493 maskPainter->restore();
2511 if ( pixelSize < 50 )
2512 return 200 / pixelSize;
2515 else if ( pixelSize > 200 )
2516 return 200 / pixelSize;
TextLayoutMode
Text layout modes.
@ Labeling
Labeling-specific layout mode.
@ Point
Text at point of origin layout mode.
@ RectangleAscentBased
Similar to Rectangle mode, but uses ascents only when calculating font and line heights.
@ RectangleCapHeightBased
Similar to Rectangle mode, but uses cap height only when calculating font heights for the first line ...
@ Rectangle
Text within rectangle layout mode.
QFlags< TextRendererFlag > TextRendererFlags
TextOrientation
Text orientations.
@ Vertical
Vertically oriented text.
@ RotationBased
Horizontally or vertically oriented text based on rotation (only available for map labeling)
@ Horizontal
Horizontally oriented text.
@ Round
Use rounded joins.
@ Normal
Adjacent characters are positioned in the standard way for text in the writing system in use.
@ SubScript
Characters are placed below the base line for normal text.
@ SuperScript
Characters are placed above the base line for normal text.
@ PreferText
Render text as text objects, unless doing so results in rendering artifacts or poor quality rendering...
@ AlwaysOutlines
Always render text using path objects (AKA outlines/curves). This setting guarantees the best quality...
@ AlwaysText
Always render text as text objects. While this mode preserves text objects as text for post-processin...
RenderUnit
Rendering size units.
@ Percentage
Percentage of another measurement (e.g., canvas size, feature size)
@ Unknown
Mixed or unknown units.
@ ApplyScalingWorkaroundForTextRendering
Whether a scaling workaround designed to stablise the rendering of small font sizes (or for painters ...
@ RenderBlocking
Render and load remote sources in the same thread to ensure rendering remote sources (svg and images)...
TextVerticalAlignment
Text vertical alignment.
@ VerticalCenter
Center align.
QFlags< TextComponent > TextComponents
Text components.
TextHorizontalAlignment
Text horizontal alignment.
@ WrapLines
Automatically wrap long lines of text.
TextComponent
Text components.
@ Buffer
Buffer component.
@ Background
Background shape.
static QgsImageCache * imageCache()
Returns the application's image cache, used for caching resampled versions of raster images.
A class to manager painter saving and restoring required for effect drawing.
QgsFeature feature() const
Convenience function for retrieving the feature for the context, if set.
QgsFields fields() const
Convenience function for retrieving the fields for the context, if set.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
QgsFillSymbol * clone() const override
Returns a deep copy of this symbol.
Does vector analysis using the geos library and handles import, export, exception handling*.
QImage pathAsImage(const QString &path, const QSize size, const bool keepAspectRatio, const double opacity, bool &fitsInCache, bool blocking=false, double targetDpi=96, int frameNumber=-1, bool *isMissing=nullptr)
Returns the specified path rendered as an image.
Line string geometry type, with support for z-dimension and m-values.
static QgsLineString * fromQPolygonF(const QPolygonF &polygon)
Returns a new linestring from a QPolygonF polygon input.
Struct for storing maximum and minimum scales for measurements in map units.
A marker symbol type, for rendering Point and MultiPoint geometries.
QgsMarkerSymbol * clone() const override
Returns a deep copy of this symbol.
bool enabled() const
Returns whether the effect is enabled.
virtual QgsPaintEffect * clone() const =0
Duplicates an effect by creating a deep copy of the effect.
A class to manage painter saving and restoring required for drawing on a different painter (mask pain...
static void applyScaleFixForQPictureDpi(QPainter *painter)
Applies a workaround to a painter to avoid an issue with incorrect scaling when drawing QPictures.
static void drawPicture(QPainter *painter, const QPointF &point, const QPicture &picture)
Draws a picture onto a painter, correctly applying workarounds to avoid issues with incorrect scaling...
static QStringList splitToGraphemes(const QString &text)
Splits a text string to a list of graphemes, which are the smallest allowable character divisions in ...
Contains precalculated properties regarding text metrics for text to be renderered at a later stage.
void setGraphemeFormats(const QVector< QgsTextCharacterFormat > &formats)
Sets the character formats associated with the text graphemes().
bool hasActiveProperties() const final
Returns true if the collection has any active properties, or false if all properties within the colle...
Contains information about the context of a rendering operation.
double scaleFactor() const
Returns the scaling factor for the render to convert painter units to physical sizes.
bool useAdvancedEffects() const
Returns true if advanced effects such as blend modes such be used.
void setScaleFactor(double factor)
Sets the scaling factor for the render to convert painter units to physical sizes.
double convertToPainterUnits(double size, Qgis::RenderUnit unit, const QgsMapUnitScale &scale=QgsMapUnitScale(), Qgis::RenderSubcomponentProperty property=Qgis::RenderSubcomponentProperty::Generic) const
Converts a size from the specified units to painter units (pixels).
QPainter * painter()
Returns the destination QPainter for the render operation.
void setPainterFlagsUsingContext(QPainter *painter=nullptr) const
Sets relevant flags on a destination painter, using the flags and settings currently defined for the ...
QgsExpressionContext & expressionContext()
Gets the expression context.
bool isGuiPreview() const
Returns the Gui preview mode.
Qgis::TextRenderFormat textRenderFormat() const
Returns the text render format, which dictates how text is rendered (e.g.
const QgsMapToPixel & mapToPixel() const
Returns the context's map to pixel transform, which transforms between map coordinates and device coo...
QPainter * maskPainter(int id=0)
Returns a mask QPainter for the render operation.
void setMapToPixel(const QgsMapToPixel &mtp)
Sets the context's map to pixel transform, which transforms between map coordinates and device coordi...
int currentMaskId() const
Returns the current mask id, which can be used with maskPainter()
void setPainter(QPainter *p)
Sets the destination QPainter for the render operation.
Qgis::RenderContextFlags flags() const
Returns combination of flags used for rendering.
Scoped object for saving and restoring a QPainter object's state.
Scoped object for temporary override of the symbologyReferenceScale property of a QgsRenderContext.
static QString substituteVerticalCharacters(QString string)
Returns a string with characters having vertical representation form substituted.
static QgsSymbolLayer * create(const QVariantMap &properties=QVariantMap())
Creates the symbol.
void renderPoint(QPointF point, QgsSymbolRenderContext &context) override
Renders a marker at the specified point.
static void blurImageInPlace(QImage &image, QRect rect, int radius, bool alphaOnly)
Blurs an image in place, e.g. creating Qt-independent drop shadows.
static double estimateMaxSymbolBleed(QgsSymbol *symbol, const QgsRenderContext &context)
Returns the maximum estimated bleed for the symbol.
Container for settings relating to a text background object.
QgsMapUnitScale strokeWidthMapUnitScale() const
Returns the map unit scale object for the shape stroke width.
RotationType rotationType() const
Returns the method used for rotating the background shape.
QString svgFile() const
Returns the absolute path to the background SVG file, if set.
QSizeF size() const
Returns the size of the background shape.
QSizeF radii() const
Returns the radii used for rounding the corners of shapes.
QgsMapUnitScale radiiMapUnitScale() const
Returns the map unit scale object for the shape radii.
Qgis::RenderUnit radiiUnit() const
Returns the units used for the shape's radii.
QPainter::CompositionMode blendMode() const
Returns the blending mode used for drawing the background shape.
@ SizeBuffer
Shape size is determined by adding a buffer margin around text.
bool enabled() const
Returns whether the background is enabled.
double opacity() const
Returns the background shape's opacity.
double rotation() const
Returns the rotation for the background shape, in degrees clockwise.
QColor fillColor() const
Returns the color used for filing the background shape.
SizeType sizeType() const
Returns the method used to determine the size of the background shape (e.g., fixed size or buffer aro...
Qgis::RenderUnit strokeWidthUnit() const
Returns the units used for the shape's stroke width.
ShapeType type() const
Returns the type of background shape (e.g., square, ellipse, SVG).
double strokeWidth() const
Returns the width of the shape's stroke (stroke).
@ ShapeMarkerSymbol
Marker symbol.
@ ShapeSquare
Square - buffered sizes only.
@ ShapeRectangle
Rectangle.
Qgis::RenderUnit offsetUnit() const
Returns the units used for the shape's offset.
QColor strokeColor() const
Returns the color used for outlining the background shape.
QgsFillSymbol * fillSymbol() const
Returns the fill symbol to be rendered in the background.
QgsMapUnitScale sizeMapUnitScale() const
Returns the map unit scale object for the shape size.
Qgis::RenderUnit sizeUnit() const
Returns the units used for the shape's size.
@ RotationOffset
Shape rotation is offset from text rotation.
@ RotationFixed
Shape rotation is a fixed angle.
QgsMarkerSymbol * markerSymbol() const
Returns the marker symbol to be rendered in the background.
const QgsPaintEffect * paintEffect() const
Returns the current paint effect for the background shape.
QgsMapUnitScale offsetMapUnitScale() const
Returns the map unit scale object for the shape offset.
QPointF offset() const
Returns the offset used for drawing the background shape.
Qgis::TextHorizontalAlignment horizontalAlignment() const
Returns the format horizontal alignment.
bool hasHorizontalAlignmentSet() const
Returns true if the format has an explicit horizontal alignment set.
Represents a block of text consisting of one or more QgsTextFragment objects.
int size() const
Returns the number of fragments in the block.
QString toPlainText() const
Converts the block to plain text.
const QgsTextBlockFormat & blockFormat() const
Returns the block formatting for the fragment.
Container for settings relating to a text buffer.
Qgis::RenderUnit sizeUnit() const
Returns the units for the buffer size.
Qt::PenJoinStyle joinStyle() const
Returns the buffer join style.
double size() const
Returns the size of the buffer.
QgsMapUnitScale sizeMapUnitScale() const
Returns the map unit scale object for the buffer size.
bool enabled() const
Returns whether the buffer is enabled.
double opacity() const
Returns the buffer opacity.
bool fillBufferInterior() const
Returns whether the interior of the buffer will be filled in.
const QgsPaintEffect * paintEffect() const
Returns the current paint effect for the buffer.
QColor color() const
Returns the color of the buffer.
QPainter::CompositionMode blendMode() const
Returns the blending mode used for drawing the buffer.
Stores information relating to individual character formatting.
void updateFontForFormat(QFont &font, const QgsRenderContext &context, double scaleFactor=1.0) const
Updates the specified font in place, applying character formatting options which are applicable on a ...
Qgis::TextCharacterVerticalAlignment verticalAlignment() const
Returns the format vertical alignment.
bool hasVerticalAlignmentSet() const
Returns true if the format has an explicit vertical alignment set.
double fontPointSize() const
Returns the font point size, or -1 if the font size is not set and should be inherited.
Contains pre-calculated metrics of a QgsTextDocument.
double verticalOrientationXOffset(int blockIndex) const
Returns the vertical orientation x offset for the specified block.
double fragmentVerticalOffset(int blockIndex, int fragmentIndex, Qgis::TextLayoutMode mode) const
Returns the vertical offset from a text block's baseline which should be applied to the fragment at t...
double blockMaximumDescent(int blockIndex) const
Returns the maximum descent encountered in the specified block.
QSizeF documentSize(Qgis::TextLayoutMode mode, Qgis::TextOrientation orientation) const
Returns the overall size of the document.
double blockRightMargin(int blockIndex) const
Returns the margin for the right side of the specified block index.
static QgsTextDocumentMetrics calculateMetrics(const QgsTextDocument &document, const QgsTextFormat &format, const QgsRenderContext &context, double scaleFactor=1.0, const QgsTextDocumentRenderContext &documentContext=QgsTextDocumentRenderContext())
Returns precalculated text metrics for a text document, when rendered using the given base format and...
QFont fragmentFont(int blockIndex, int fragmentIndex) const
Returns the calculated font for the fragment at the specified block and fragment indices.
double blockMaximumCharacterWidth(int blockIndex) const
Returns the maximum character width for the specified block.
double baselineOffset(int blockIndex, Qgis::TextLayoutMode mode) const
Returns the offset from the top of the document to the text baseline for the given block index.
double fragmentFixedHeight(int blockIndex, int fragmentIndex, Qgis::TextLayoutMode mode) const
Returns the fixed height of the fragment at the specified block and fragment index,...
double blockLeftMargin(int blockIndex) const
Returns the margin for the left side of the specified block index.
double blockHeight(int blockIndex) const
Returns the height of the block at the specified index.
double fragmentHorizontalAdvance(int blockIndex, int fragmentIndex, Qgis::TextLayoutMode mode) const
Returns the horizontal advance of the fragment at the specified block and fragment index.
bool isNullFontSize() const
Returns true if the metrics could not be calculated because the text format has a null font size.
const QgsTextDocument & document() const
Returns the document associated with the calculated metrics.
double blockWidth(int blockIndex) const
Returns the width of the block at the specified index.
double ascentOffset() const
Returns the ascent offset of the first block in the document.
double blockVerticalMargin(int blockIndex) const
Returns the vertical margin for the specified block index.
Encapsulates the context in which a text document is to be rendered.
void setFlags(Qgis::TextRendererFlags flags)
Sets associated text renderer flags.
void setMaximumWidth(double width)
Sets the maximum width (in painter units) for rendered text.
Represents a document consisting of one or more QgsTextBlock objects.
const QgsTextBlock & at(int index) const
Returns the block at the specified index.
QStringList toPlainText() const
Returns a list of plain text lines of text representing the document.
int size() const
Returns the number of blocks in the document.
void append(const QgsTextBlock &block)
Appends a block to the document.
static QgsTextDocument fromTextAndFormat(const QStringList &lines, const QgsTextFormat &format)
Constructor for QgsTextDocument consisting of a set of lines, respecting settings from a text format.
void applyCapitalization(Qgis::Capitalization capitalization)
Applies a capitalization style to the document's text.
Container for all settings relating to text rendering.
QgsMapUnitScale sizeMapUnitScale() const
Returns the map unit scale object for the size.
void updateDataDefinedProperties(QgsRenderContext &context)
Updates the format by evaluating current values of data defined properties.
QgsPropertyCollection & dataDefinedProperties()
Returns a reference to the format's property collection, used for data defined overrides.
QFont scaledFont(const QgsRenderContext &context, double scaleFactor=1.0, bool *isZeroSize=nullptr) const
Returns a font with the size scaled to match the format's size settings (including units and map unit...
QPainter::CompositionMode blendMode() const
Returns the blending mode used for drawing the text.
Qgis::Capitalization capitalization() const
Returns the text capitalization style.
QgsTextMaskSettings & mask()
Returns a reference to the masking settings.
QgsTextBackgroundSettings & background()
Returns a reference to the text background settings.
Qgis::RenderUnit sizeUnit() const
Returns the units for the size of rendered text.
double opacity() const
Returns the text's opacity.
Qgis::TextOrientation orientation() const
Returns the orientation of the text.
double size() const
Returns the size for rendered text.
QgsTextShadowSettings & shadow()
Returns a reference to the text drop shadow settings.
QColor color() const
Returns the color that text will be rendered in.
QFont font() const
Returns the font used for rendering text.
QgsTextBufferSettings & buffer()
Returns a reference to the text buffer settings.
Stores a fragment of document along with formatting overrides to be used when rendering the fragment.
Container for settings relating to a selective masking around a text.
Qgis::RenderUnit sizeUnit() const
Returns the units for the buffer size.
QgsMapUnitScale sizeMapUnitScale() const
Returns the map unit scale object for the buffer size.
double size() const
Returns the size of the buffer.
QgsPaintEffect * paintEffect() const
Returns the current paint effect for the mask.
double opacity() const
Returns the mask's opacity.
bool enabled() const
Returns whether the mask is enabled.
Qt::PenJoinStyle joinStyle() const
Returns the buffer join style.
Contains placement information for a single grapheme in a curved text layout.
@ RespectPainterOrientation
Curved text will be placed respecting the painter orientation, and the actual line direction will be ...
@ TruncateStringWhenLineIsTooShort
When a string is too long for the line, truncate characters instead of aborting the placement.
@ UseBaselinePlacement
Generate placement based on the character baselines instead of centers.
static std::unique_ptr< CurvePlacementProperties > generateCurvedTextPlacement(const QgsPrecalculatedTextMetrics &metrics, const QPolygonF &line, double offsetAlongLine, LabelLineDirection direction=RespectPainterOrientation, double maxConcaveAngle=-1, double maxConvexAngle=-1, CurvedTextFlags flags=CurvedTextFlags())
Calculates curved text placement properties.
static void drawDocumentOnLine(const QPolygonF &line, const QgsTextFormat &format, const QgsTextDocument &document, QgsRenderContext &context, double offsetAlongLine=0, double offsetFromLine=0)
Draws a text document along a line using the specified settings.
static Qgis::TextVerticalAlignment convertQtVAlignment(Qt::Alignment alignment)
Converts a Qt vertical alignment flag to a Qgis::TextVerticalAlignment value.
static double textWidth(const QgsRenderContext &context, const QgsTextFormat &format, const QStringList &textLines, QFontMetricsF *fontMetrics=nullptr)
Returns the width of a text based on a given format.
static void drawDocument(const QRectF &rect, const QgsTextFormat &format, const QgsTextDocument &document, const QgsTextDocumentMetrics &metrics, QgsRenderContext &context, Qgis::TextHorizontalAlignment horizontalAlignment=Qgis::TextHorizontalAlignment::Left, Qgis::TextVerticalAlignment verticalAlignment=Qgis::TextVerticalAlignment::Top, double rotation=0, Qgis::TextLayoutMode mode=Qgis::TextLayoutMode::Rectangle, Qgis::TextRendererFlags flags=Qgis::TextRendererFlags())
Draws a text document within a rectangle using the specified settings.
static int sizeToPixel(double size, const QgsRenderContext &c, Qgis::RenderUnit unit, const QgsMapUnitScale &mapUnitScale=QgsMapUnitScale())
Calculates pixel size (considering output size should be in pixel or map units, scale factors and opt...
static Q_DECL_DEPRECATED void drawPart(const QRectF &rect, double rotation, Qgis::TextHorizontalAlignment alignment, const QStringList &textLines, QgsRenderContext &context, const QgsTextFormat &format, Qgis::TextComponent part, bool drawAsOutlines=true)
Draws a single component of rendered text using the specified settings.
static void drawText(const QRectF &rect, double rotation, Qgis::TextHorizontalAlignment alignment, const QStringList &textLines, QgsRenderContext &context, const QgsTextFormat &format, bool drawAsOutlines=true, Qgis::TextVerticalAlignment vAlignment=Qgis::TextVerticalAlignment::Top, Qgis::TextRendererFlags flags=Qgis::TextRendererFlags(), Qgis::TextLayoutMode mode=Qgis::TextLayoutMode::Rectangle)
Draws text within a rectangle using the specified settings.
static bool textRequiresWrapping(const QgsRenderContext &context, const QString &text, double width, const QgsTextFormat &format)
Returns true if the specified text requires line wrapping in order to fit within the specified width ...
static QFontMetricsF fontMetrics(QgsRenderContext &context, const QgsTextFormat &format, double scaleFactor=1.0)
Returns the font metrics for the given text format, when rendered in the specified render context.
static void drawTextOnLine(const QPolygonF &line, const QString &text, QgsRenderContext &context, const QgsTextFormat &format, double offsetAlongLine=0, double offsetFromLine=0)
Draws text along a line using the specified settings.
static double calculateScaleFactorForFormat(const QgsRenderContext &context, const QgsTextFormat &format)
Returns the scale factor used for upscaling font sizes and downscaling destination painter devices.
static QStringList wrappedText(const QgsRenderContext &context, const QString &text, double width, const QgsTextFormat &format)
Wraps a text string to multiple lines, such that each individual line will fit within the specified w...
static double textHeight(const QgsRenderContext &context, const QgsTextFormat &format, const QStringList &textLines, Qgis::TextLayoutMode mode=Qgis::TextLayoutMode::Point, QFontMetricsF *fontMetrics=nullptr, Qgis::TextRendererFlags flags=Qgis::TextRendererFlags(), double maxLineWidth=0)
Returns the height of a text based on a given format.
static constexpr double SUPERSCRIPT_SUBSCRIPT_FONT_SIZE_SCALING_FACTOR
Scale factor to use for super or subscript text which doesn't have an explicit font size set.
static Qgis::TextHorizontalAlignment convertQtHAlignment(Qt::Alignment alignment)
Converts a Qt horizontal alignment flag to a Qgis::TextHorizontalAlignment value.
Container for settings relating to a text shadow.
int offsetAngle() const
Returns the angle for offsetting the position of the shadow from the text.
bool enabled() const
Returns whether the shadow is enabled.
int scale() const
Returns the scaling used for the drop shadow (in percentage of original size).
Qgis::RenderUnit offsetUnit() const
Returns the units used for the shadow's offset.
void setShadowPlacement(QgsTextShadowSettings::ShadowPlacement placement)
Sets the placement for the drop shadow.
double opacity() const
Returns the shadow's opacity.
QgsMapUnitScale blurRadiusMapUnitScale() const
Returns the map unit scale object for the shadow blur radius.
QColor color() const
Returns the color of the drop shadow.
@ ShadowBuffer
Draw shadow under buffer.
@ ShadowShape
Draw shadow under background shape.
@ ShadowLowest
Draw shadow below all text components.
@ ShadowText
Draw shadow under text.
QgsTextShadowSettings::ShadowPlacement shadowPlacement() const
Returns the placement for the drop shadow.
Qgis::RenderUnit blurRadiusUnit() const
Returns the units used for the shadow's blur radius.
double offsetDistance() const
Returns the distance for offsetting the position of the shadow from the text.
QPainter::CompositionMode blendMode() const
Returns the blending mode used for drawing the drop shadow.
QgsMapUnitScale offsetMapUnitScale() const
Returns the map unit scale object for the shadow offset distance.
bool blurAlphaOnly() const
Returns whether only the alpha channel for the shadow will be blurred.
bool offsetGlobal() const
Returns true if the global shadow offset will be used.
double blurRadius() const
Returns the blur radius for the shadow.
static Q_INVOKABLE QString encodeUnit(Qgis::DistanceUnit unit)
Encodes a distance unit to a string.
double ANALYSIS_EXPORT angle(QgsPoint *p1, QgsPoint *p2, QgsPoint *p3, QgsPoint *p4)
Calculates the angle between two segments (in 2 dimension, z-values are ignored)
Contains geos related utilities and functions.
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
#define BUILTIN_UNREACHABLE
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference)
QList< QgsSymbolLayer * > QgsSymbolLayerList