28#include <wx/filename.h>
29#include <wx/mstream.h>
30#include <wx/zstream.h>
31#include <wx/wfstream.h>
32#include <wx/datstrm.h>
33#include <wx/tokenzr.h>
47#include <fmt/format.h>
48#include <fmt/chrono.h>
49#include <fmt/ranges.h>
62#define GLM_ENABLE_EXPERIMENTAL
64#include <glm/gtx/euler_angles.hpp>
76 bool is_ascii7 =
true;
78 for(
size_t ii = 0; ii < aText.Len(); ii++ )
80 if( aText[ii] >= 0x7F )
91 for(
unsigned ii = 0; ii < aText.Len(); ii++ )
93 unsigned int code = aText[ii];
116 for(
size_t ii = 0; ii < aText.Len(); ii++ )
118 unsigned int code = aText[ii];
119 result += fmt::format(
"{:04X}", code);
131 std::string buf = fmt::format(
"{:g}", aValue );
135 if( buf.find(
'e' ) != std::string::npos || buf.find(
'E' ) != std::string::npos )
136 buf = fmt::format(
"{:.10f}", aValue );
138 if( buf.find(
'.' ) != std::string::npos )
141 while( buf.size() > 1 && buf.back() ==
'0' )
145 if( !buf.empty() && buf.back() ==
'.' )
160 result.reserve( aBytes.size() * 4 + 2 );
163 for(
unsigned char byte : aBytes )
165 if(
byte ==
'(' ||
byte ==
')' ||
byte ==
'\\' )
168 result.push_back(
static_cast<char>(
byte ) );
170 else if( byte < 32 || byte > 126 )
172 fmt::format_to( std::back_inserter(
result ),
"\\{:03o}",
byte );
176 result.push_back(
static_cast<char>(
byte ) );
228 wxASSERT_MSG( aWidth > 0,
"Plotter called to set negative pen width" );
245 r = ( r * a ) + ( 1 - a );
246 g = ( g * a ) + ( 1 - a );
247 b = ( b * a ) + ( 1 - a );
250 fmt::println(
m_workFile,
"{} {} {} rg {} {} {} RG",
260 std::vector<int> pattern;
291 bool allZero = std::all_of( pattern.begin(), pattern.end(), [](
int v ) { return v == 0; } );
293 if( pattern.empty() || allZero )
299 fmt::println(
m_workFile,
"[{}] 0 d", fmt::join( pattern,
" " ) );
312 if( aCornerRadius > 0 )
324 if( size.
x == 0 && size.
y == 0 )
336 std::vector<VECTOR2I> cornerList;
338 cornerList.emplace_back( p1.
x, p1.
y );
339 cornerList.emplace_back( p2.
x, p1.
y );
340 cornerList.emplace_back( p2.
x, p2.
y );
341 cornerList.emplace_back( p1.
x, p2.
y );
342 cornerList.emplace_back( p1.
x, p1.
y );
344 PlotPoly( cornerList, fill, width,
nullptr );
357 paintOp = width > 0 ?
'B' :
'f';
359 fmt::println(
m_workFile,
"{} {} {} {} re {}",
393 double magic =
radius * 0.551784;
398 "{} {} {} {} {} {} c "
399 "{} {} {} {} {} {} c "
400 "{} {} {} {} {} {} c "
401 "{} {} {} {} {} {} c {}",
425 const EDA_ANGLE& aAngle,
double aRadius )
427 std::vector<VECTOR2D>
path;
434 EDA_ANGLE endAngle = startAngle - aAngle;
439 if( startAngle > endAngle )
440 std::swap( startAngle, endAngle );
443 start.
x =
KiROUND( aCenter.
x + aRadius * ( -startAngle ).Cos() );
444 start.
y =
KiROUND( aCenter.
y + aRadius * ( -startAngle ).Sin() );
449 end.x =
KiROUND( aCenter.
x + aRadius * ( -ii ).Cos() );
450 end.y =
KiROUND( aCenter.
y + aRadius * ( -ii ).Sin() );
454 end.x =
KiROUND( aCenter.
x + aRadius * ( -endAngle ).Cos() );
455 end.y =
KiROUND( aCenter.
y + aRadius * ( -endAngle ).Sin() );
475 std::vector<VECTOR2D>
path =
arcPath( aCenter, aStartAngle, aAngle, aRadius );
477 if(
path.size() >= 2 )
482 for(
int ii = 1; ii < (int)
path.size(); ++ii )
509 if( aCornerList.size() <= 1 )
520 for(
unsigned ii = 1; ii < aCornerList.size(); ii++ )
529 else if( aWidth == 0 )
540 std::set<size_t> handledArcs;
541 std::vector<VECTOR2D>
path;
547 size_t arcIndex = aLineChain.
ArcIndex( ii );
549 if( !handledArcs.contains( arcIndex ) )
551 handledArcs.insert( arcIndex );
556 for(
const VECTOR2D& pt : std::ranges::reverse_view( arc_path ) )
557 path.emplace_back( pt );
568 if(
path.size() <= 1 )
574 for(
int ii = 1; ii < (int)
path.size(); ++ii )
583 else if( aWidth == 0 )
613 plume ==
'D' ?
'l' :
'm' );
624 VECTOR2I pix_size( aImage.GetWidth(), aImage.GetHeight() );
627 VECTOR2D drawsize( aScaleFactor * pix_size.
x, aScaleFactor * pix_size.
y );
630 VECTOR2I start( aPos.
x - drawsize.
x / 2, aPos.
y + drawsize.
y / 2 );
634 auto findHandleForImage =
635 [&](
const wxImage& aCurrImage ) ->
int
639 if(
image.IsSameAs( aCurrImage ) )
642 if(
image.GetWidth() != aCurrImage.GetWidth() )
645 if(
image.GetHeight() != aCurrImage.GetHeight() )
648 if(
image.GetType() != aCurrImage.GetType() )
651 if(
image.HasAlpha() != aCurrImage.HasAlpha() )
654 if(
image.HasMask() != aCurrImage.HasMask()
655 ||
image.GetMaskRed() != aCurrImage.GetMaskRed()
656 ||
image.GetMaskGreen() != aCurrImage.GetMaskGreen()
657 ||
image.GetMaskBlue() != aCurrImage.GetMaskBlue() )
662 int pixCount =
image.GetWidth() *
image.GetHeight();
664 if( memcmp(
image.GetData(), aCurrImage.GetData(), pixCount * 3 ) != 0 )
667 if(
image.HasAlpha() && memcmp(
image.GetAlpha(), aCurrImage.GetAlpha(), pixCount ) != 0 )
676 int imgHandle = findHandleForImage( aImage );
678 if( imgHandle == -1 )
694 fmt::println(
m_workFile,
"q {} 0 0 {} {} {} cm",
700 fmt::println(
m_workFile,
"/Im{} Do", imgHandle );
746 fmt::print(
m_outputFile,
"<< /Length {} 0 R >>\nstream\n",
751 fmt::print(
m_outputFile,
"<< /Length {} 0 R /Filter /FlateDecode >>\nstream\n",
777 unsigned char *inbuf =
new unsigned char[stream_len];
779 int rc = fread( inbuf, 1, stream_len,
m_workFile );
780 wxASSERT( rc == stream_len );
792 out_count = stream_len;
798 wxMemoryOutputStream memos(
nullptr, std::max( 2000l, stream_len ) ) ;
808 wxZlibOutputStream zos( memos, wxZ_BEST_COMPRESSION, wxZLIB_ZLIB );
810 zos.Write( inbuf, stream_len );
813 wxStreamBuffer* sb = memos.GetOutputStreamBuffer();
815 out_count = sb->Tell();
816 fwrite( sb->GetBufferStart(), 1, out_count,
m_outputFile );
831 const wxString& aParentPageNumber,
const wxString& aParentPageName )
837 m_pageName = aPageName.IsEmpty() ? wxString::Format(
_(
"Page %s" ),
839 : wxString::Format(
_(
"%s (Page %s)" ),
844 : wxString::Format(
_(
"%s (Page %s)" ),
867 "{} 0 0 {} 0 0 cm 1 J 1 j 0 0 0 rg 0 0 0 RG {} w",
875void WriteImageStream(
const wxImage& aImage, wxDataOutputStream& aOut,
const wxColor& bg,
bool colorMode )
877 int w = aImage.GetWidth();
878 int h = aImage.GetHeight();
880 for(
int y = 0; y < h; y++ )
882 for(
int x = 0; x < w; x++ )
884 unsigned char r = aImage.GetRed( x, y ) & 0xFF;
885 unsigned char g = aImage.GetGreen( x, y ) & 0xFF;
886 unsigned char b = aImage.GetBlue( x, y ) & 0xFF;
888 if( aImage.HasMask() )
890 if( r == aImage.GetMaskRed() && g == aImage.GetMaskGreen() && b == aImage.GetMaskBlue() )
907 unsigned char grey =
KiROUND( r * 0.2126 + g * 0.7152 + b * 0.0722 );
918 int w = aImage.GetWidth();
919 int h = aImage.GetHeight();
921 if( aImage.HasMask() )
923 for(
int y = 0; y < h; y++ )
925 for(
int x = 0; x < w; x++ )
927 unsigned char a = 255;
928 unsigned char r = aImage.GetRed( x, y );
929 unsigned char g = aImage.GetGreen( x, y );
930 unsigned char b = aImage.GetBlue( x, y );
932 if( r == aImage.GetMaskRed() && g == aImage.GetMaskGreen() && b == aImage.GetMaskBlue() )
939 else if( aImage.HasAlpha() )
942 aOut.Write8( aImage.GetAlpha(), size );
961 const double PTsPERMIL = 0.072;
964 auto iuToPdfUserSpace =
977 retval.
x = ( psPaperSize.
x - pos.
x );
986 std::vector<int> annotHandles;
992 const BOX2I& box = linkPair.first;
993 const wxString& url = linkPair.second;
1000 userSpaceBox.
SetEnd( topRight );
1009 const BOX2I& box = menuPair.first;
1010 const std::vector<wxString>& urls = menuPair.second;
1017 userSpaceBox.
SetEnd( topRight );
1024 int annot3DHandle = -1;
1029 annotHandles.push_back( annot3DHandle );
1033 int annotArrayHandle = -1;
1036 if( annotHandles.size() > 0 )
1039 bool isFirst =
true;
1043 for(
int handle : annotHandles )
1066 " /ProcSet [/PDF /Text /ImageC /ImageB]\n"
1068 " /XObject {} 0 R >>\n"
1069 "/MediaBox [0 0 {} {}]\n",
1079 if( annotHandles.size() > 0 )
1080 fmt::print(
m_outputFile,
"/Annots {} 0 R", annotArrayHandle );
1093 "/Rect [0 0 {} {}]\n"
1094 "/NM (3D Annotation)\n"
1097 "/3DA<</A/PO/D/PC/TB true/NP true>>\n"
1118 std::stack<OUTLINE_NODE*> nodes;
1121 while( !nodes.empty() )
1135 nodes.push( child );
1147 for(
const std::pair<BOX2I, wxString>& bookmarkPair : groupVector )
1149 const BOX2I& box = bookmarkPair.first;
1150 const wxString& ref = bookmarkPair.second;
1155 actionHandle =
emitGoToAction( pageHandle, bottomLeft, topRight );
1160 std::sort( groupOutlineNode->
children.begin(), groupOutlineNode->
children.end(),
1163 return a->title < b->title;
1176 return StartPlot( aPageNumber, wxEmptyString );
1210 fmt::print(
m_outputFile,
"%PDF-1.5\n%\200\201\202\203\n" );
1237 "<</S /GoTo /D [{} 0 R /FitR {} {} {} {}]\n"
1247 return actionHandle;
1257 "<</S /GoTo /D [{} 0 R /Fit]\n"
1263 return actionHandle;
1270 int prevHandle = -1;
1271 int nextHandle = -1;
1273 for( std::vector<OUTLINE_NODE*>::iterator it = node->
children.begin(); it != node->
children.end(); it++ )
1275 if( it >= node->
children.end() - 1 )
1278 nextHandle = ( *( it + 1 ) )->entryHandle;
1282 prevHandle = ( *it )->entryHandle;
1286 if( parentHandle != -1 )
1298 fmt::println(
m_outputFile,
"/Next {} 0 R", nextNode );
1301 fmt::println(
m_outputFile,
"/Prev {} 0 R", prevNode );
1305 int32_t count = -1 *
static_cast<int32_t
>( node->
children.size() );
1321 const wxString& aTitle )
1342 "<< /Type /Outlines\n"
1382 if( !glyph.m_stream.empty() )
1383 fmt::print(
m_workFile,
"{}\n", glyph.m_stream );
1386 glyph.m_charProcHandle = charProcHandle;
1393 fmt::println(
m_outputFile,
" /{} {} 0 R", glyph.m_name, glyph.m_charProcHandle );
1408 double fontMatrixScale = 1.0 / subset.
UnitsPerEm();
1416 "<<\n/Type /Font\n/Subtype /Type3\n/Name {}\n/FontBBox [ {} {} {} {} ]\n",
1423 "/FontMatrix [ {} 0 0 {} 0 0 ]\n/CharProcs {} 0 R\n",
1428 "/Encoding << /Type /Encoding /Differences {} >>\n",
1431 "/FirstChar {}\n/LastChar {}\n/Widths {}\n",
1436 "/ToUnicode {} 0 R\n/Resources << /ProcSet [/PDF /Text] >>\n>>\n",
1451 if( !subsetPtr || !subsetPtr->HasGlyphs() )
1454 const std::vector<uint8_t>& fontData = subsetPtr->FontFileData();
1456 if( fontData.empty() )
1460 subsetPtr->SetFontFileHandle( fontFileHandle );
1462 if( !fontData.empty() )
1463 fwrite( fontData.data(), fontData.size(), 1,
m_workFile );
1467 std::string cidMap = subsetPtr->BuildCIDToGIDStream();
1469 subsetPtr->SetCIDMapHandle( cidMapHandle );
1471 if( !cidMap.empty() )
1472 fwrite( cidMap.data(), cidMap.size(), 1,
m_workFile );
1476 std::string toUnicode = subsetPtr->BuildToUnicodeCMap();
1478 subsetPtr->SetToUnicodeHandle( toUnicodeHandle );
1480 if( !toUnicode.empty() )
1486 subsetPtr->SetFontDescriptorHandle( descriptorHandle );
1489 "<<\n/Type /FontDescriptor\n/FontName /{}\n/Flags {}\n/ItalicAngle {}\n/Ascent {}\n/Descent {}\n"
1490 "/CapHeight {}\n/StemV {}\n/FontBBox [ {} {} {} {} ]\n/FontFile2 {} 0 R\n>>\n",
1491 subsetPtr->BaseFontName(),
1502 subsetPtr->FontFileHandle() );
1506 subsetPtr->SetCIDFontHandle( cidFontHandle );
1508 std::string widths = subsetPtr->BuildWidthsArray();
1511 "<<\n/Type /Font\n/Subtype /CIDFontType2\n/BaseFont /{}\n"
1512 "/CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >>\n"
1513 "/FontDescriptor {} 0 R\n/W {}\n/CIDToGIDMap {} 0 R\n>>\n",
1514 subsetPtr->BaseFontName(),
1515 subsetPtr->FontDescriptorHandle(),
1517 subsetPtr->CIDMapHandle() );
1521 subsetPtr->SetFontHandle( fontHandle );
1524 "<<\n/Type /Font\n/Subtype /Type0\n/BaseFont /{}\n/Encoding /Identity-H\n"
1525 "/DescendantFonts [ {} 0 R ]\n/ToUnicode {} 0 R\n>>\n",
1526 subsetPtr->BaseFontName(),
1527 subsetPtr->CIDFontHandle(),
1528 subsetPtr->ToUnicodeHandle() );
1547 {
"/Helvetica",
"/KicadFont", 0 },
1548 {
"/Helvetica-Oblique",
"/KicadFontI", 0 },
1549 {
"/Helvetica-Bold",
"/KicadFontB", 0 },
1550 {
"/Helvetica-BoldOblique",
"/KicadFontBI", 0 }
1555 for(
auto& font : base14 )
1561 " /Subtype /Type1\n"
1562 " /Encoding /WinAnsiEncoding\n"
1574 for(
const auto& font : base14 )
1575 fmt::println(
m_outputFile,
" {} {} 0 R", font.rsname, font.handle );
1582 if( subsetPtr && subsetPtr->FontHandle() >= 0 )
1583 fmt::println(
m_outputFile,
" {} {} 0 R", subsetPtr->ResourceName(), subsetPtr->FontHandle() );
1606 fmt::print(
m_outputFile,
" /Im{} {} 0 R\n", imgHandle, imgHandle );
1626 "/BitsPerComponent 8\n"
1630 "/Filter /FlateDecode\n"
1637 if( smaskHandle != -1 )
1638 fmt::println(
m_outputFile,
"/SMask {} 0 R", smaskHandle );
1646 wxFFileOutputStream ffos( outputFFile );
1647 wxZlibOutputStream zos( ffos, wxZ_BEST_COMPRESSION, wxZLIB_ZLIB );
1648 wxDataOutputStream dos( zos );
1654 long imgStreamSize = ftell(
m_outputFile ) - imgStreamStart;
1663 if( smaskHandle != -1 )
1673 "/BitsPerComponent 8\n"
1674 "/ColorSpace /DeviceGray\n"
1678 "/Filter /FlateDecode\n"
1689 wxFFileOutputStream ffos( outputFFile );
1690 wxZlibOutputStream zos( ffos, wxZ_BEST_COMPRESSION, wxZLIB_ZLIB );
1691 wxDataOutputStream dos( zos );
1696 long smaskStreamSize = ftell(
m_outputFile ) - smaskStreamStart;
1702 fmt::println(
m_outputFile,
"{}", (
unsigned) smaskStreamSize );
1706 outputFFile.Detach();
1711 BOX2D box = linkPair.first;
1712 wxString url = linkPair.second;
1720 "/Rect [{} {} {} {}]\n"
1721 "/Border [16 16 0]\n",
1727 wxString pageNumber;
1728 bool pageFound =
false;
1737 "/Dest [{} 0 R /FitB]\n"
1750 "/A << /Type /Action /S /NOP >>\n"
1760 "/A << /Type /Action /S /URI /URI {} >>\n"
1770 const BOX2D& box = menuPair.first;
1771 const std::vector<wxString>& urls = menuPair.second;
1772 wxString js = wxT(
"ShM([\n" );
1774 for(
const wxString& url : urls )
1776 if( url.StartsWith(
"!" ) )
1778 wxString
property = url.AfterFirst(
'!' );
1780 if( property.Find(
"http:" ) >= 0 )
1782 wxString href =
property.substr( property.Find(
"http:" ) );
1790 else if( property.Find(
"https:" ) >= 0 )
1792 wxString href =
property.substr( property.Find(
"https:" ) );
1800 else if( property.Find(
"file:" ) >= 0 )
1802 wxString href =
property.substr( property.Find(
"file:" ) );
1808 wxString displayText =
property.substr( 0, property.Find(
"file:" ) ) + href;
1816 int eqPos =
property.Find( wxS(
" = " ) );
1818 bool converted =
false;
1820 if( eqPos != wxNOT_FOUND )
1822 href =
property.Mid( eqPos + 3 );
1827 if( href.StartsWith( wxS(
"/" ) ) || href.StartsWith( wxS(
"${" ) )
1828 || ( href.Length() >= 2 && wxIsalpha( href[0] ) && href[1] ==
':' )
1829 || href.StartsWith( wxS(
"\\\\" ) ) )
1831 if( !href.StartsWith( wxS(
"/" ) ) )
1833 href.Replace( wxS(
"\\" ), wxS(
"/" ) );
1835 if( href.StartsWith( wxS(
"//" ) ) )
1836 href = wxS(
"file:" ) + href;
1838 href = wxS(
"file:///" ) + href;
1842 href = wxS(
"file://" ) + href;
1852 js += wxString::Format( wxT(
"[\"%s\", \"%s\"],\n" ),
1862 else if( url.StartsWith(
"#" ) )
1864 wxString pageNumber = url.AfterFirst(
'#' );
1870 wxString menuText = wxString::Format(
_(
"Show Page %s" ), pageNumber );
1872 js += wxString::Format( wxT(
"[\"%s\", \"#%d\"],\n" ),
1874 static_cast<int>( ii ) );
1881 wxString href = url;
1887 if( !href.StartsWith( wxS(
"http:" ) )
1888 && !href.StartsWith( wxS(
"https:" ) )
1889 && !href.StartsWith( wxS(
"file:" ) ) )
1891 if( href.StartsWith( wxS(
"/" ) ) || href.StartsWith( wxS(
"${" ) ) )
1893 href = wxS(
"file://" ) + href;
1895 else if( href.Length() >= 2 && wxIsalpha( href[0] ) && href[1] ==
':' )
1897 href.Replace( wxS(
"\\" ), wxS(
"/" ) );
1898 href = wxS(
"file:///" ) + href;
1900 else if( href.StartsWith( wxS(
"\\\\" ) ) )
1902 href.Replace( wxS(
"\\" ), wxS(
"/" ) );
1903 href = wxS(
"file:" ) + href;
1907 if( href.StartsWith( wxS(
"file:" ) ) )
1910 if( href.StartsWith( wxS(
"http:" ) )
1911 || href.StartsWith( wxS(
"https:" ) )
1912 || href.StartsWith( wxS(
"file:" ) ) )
1914 wxString menuText = wxString::Format(
_(
"Open %s" ), href );
1916 js += wxString::Format( wxT(
"[\"%s\", \"%s\"],\n" ),
1931 "/Rect [{} {} {} {}]\n"
1932 "/Border [16 16 0]\n",
1939 "/A << /Type /Action /S /JavaScript /JS {} >>\n"
1950function ShM(aEntries) {
1952 for (var i = 0; i < aEntries.length; ++i) {
1954 cName: aEntries[i][0],
1955 cReturn: aEntries[i].length > 1 ? aEntries[i][1] : ''
1959 var cChoice = app.popUpMenuEx.apply(app, aParams);
1960 if (cChoice == null || cChoice == '') return;
1962 if (cChoice.substring(0, 1) == '#') {
1963 this.pageNum = parseInt(cChoice.slice(1));
1967 // Fallback: some viewers return cName instead of cReturn
1969 if (url.substring(0, 4) != 'http' && url.substring(0, 4) != 'file') {
1970 var idx = url.indexOf('http');
1971 if (idx < 0) idx = url.indexOf('file:');
1972 if (idx >= 0) url = url.substring(idx);
1976 if (url.substring(0, 8) == 'file:///') app.openDoc(url.substring(7));
1977 else if (url.substring(0, 7) == 'file://') app.openDoc('//' + url.substring(7));
1978 else app.launchURL(url);
1985 " [ (JSInit) << /Type /Action /S /JavaScript /JS {} >> ]\n"
2027 std::time_t time = std::time(
nullptr );
2029#if defined( _WIN32 ) || defined( _MSC_VER )
2030 localtime_s( &tm, &time );
2032 localtime_r( &time, &tm );
2034 std::string dt = fmt::format(
"D:{:%Y:%m:%d:%H:%M:%S}", tm );
2045 "/Producer (KiCad PDF)\n"
2046 "/CreationDate ({})\n"
2061 int outlineHandle = -1;
2069 if( outlineHandle > 0 )
2076 "/PageMode /UseOutlines\n"
2077 "/Outlines {} 0 R\n"
2079 "/PageLayout /SinglePage\n"
2092 "/PageMode /UseNone\n"
2093 "/PageLayout /SinglePage\n"
2107 "0000000000 65535 f \n",
2110 for(
unsigned i = 1; i <
m_xrefTable.size(); i++ )
2116 "<< /Size {} /Root {} 0 R /Info {} 0 R >>\n"
2134 int aWidth,
bool aItalic,
bool aBold,
bool aMultilineAllowed,
KIFONT::FONT* aFont,
2138 if( aSize.
x == 0 || aSize.
y == 0 )
2141 wxString
text( aText );
2143 if(
text.Contains( wxS(
"@{" ) ) )
2164 int render_mode = 3;
2167 const char *fontname = aItalic ? ( aBold ?
"/KicadFontBI" :
"/KicadFontI" )
2168 : ( aBold ?
"/KicadFontB" :
"/KicadFont" );
2173 double ctm_a, ctm_b, ctm_c, ctm_d, ctm_e, ctm_f;
2174 double wideningFactor, heightFactor;
2177 bool textMirrored = aSize.
x < 0;
2180 aItalic, aBold, &wideningFactor, &ctm_a, &ctm_b, &ctm_c, &ctm_d, &ctm_e, &ctm_f,
2186 wxStringTokenizer str_tok(
text,
" ", wxTOKEN_RET_DELIMS );
2209 while( str_tok.HasMoreTokens() )
2211 wxString word = str_tok.GetNextToken();
2215 &ctm_a, &ctm_b, &ctm_c, &ctm_d, &ctm_e, &ctm_f, &heightFactor );
2228 if( word.Trim(
false ).Trim(
true ).empty() )
2235 fmt::print(
m_workFile,
"q {:f} {:f} {:f} {:f} {:f} {:f} cm BT {} {:g} Tf {} Tr {:g} Tz ",
2236 ctm_a, ctm_b, ctm_c, ctm_d, ctm_e, ctm_f,
2240 wideningFactor * 100 );
2243 fmt::println(
m_workFile,
"{} Tj ET", txt_pdf );
2249 PLOTTER::Text( aPos, aColor,
text, aOrient, aSize, aH_justify, aV_justify, aWidth, aItalic,
2250 aBold, aMultilineAllowed, aFont, aFontMetrics, aData );
2260 bool textMirrored = aSize.
x < 0;
2262 if( aWidth == 0 && aBold )
2271 auto computeAlignedStartPos =
2279 alignAttrs.
m_Size = t_size;
2283 alignAttrs.
m_Bold = aBold;
2294 drawOffset.
x = -drawOffset.
x;
2297 startPos = aPos + drawOffset;
2314 startPos -= box_x / 2;
2319 startPos += box_y / 2;
2333 std::unique_ptr<MARKUP::NODE> markupTree( markupParser.
Parse() );
2337 wxLogTrace(
tracePdfPlotter,
"PDF_PLOTTER::Text: Markup parsing failed, falling back to plain text." );
2339 wxStringTokenizer str_tok(
text,
" ", wxTOKEN_RET_DELIMS );
2340 VECTOR2I pos = computeAlignedStartPos();
2342 while( str_tok.HasMoreTokens() )
2344 wxString word = str_tok.GetNextToken();
2345 pos =
renderWord( word, pos, t_size, aOrient, textMirrored, aWidth, aBold, aItalic, aFont,
2346 aFontMetrics, aV_justify, 0 );
2351 VECTOR2I pos = computeAlignedStartPos();
2354 std::vector<OVERBAR_INFO> overbars;
2355 renderMarkupNode( markupTree.get(), pos, t_size, aOrient, textMirrored, aWidth, aBold, aItalic, aFont,
2356 aFontMetrics, aV_justify, 0, overbars );
2364 const EDA_ANGLE& aOrient,
bool aTextMirrored,
int aWidth,
bool aBold,
bool aItalic,
2368 if( wxGetEnv(
"KICAD_DEBUG_SYN_STYLE",
nullptr ) )
2375 styleFlags = (int) face->style_flags;
2378 wxLogTrace(
tracePdfPlotter,
"renderWord enter word='%s' bold=%d italic=%d textStyle=%u styleFlags=%d",
2379 TO_UTF8( aWord ), (
int) aBold, (
int) aItalic, (
unsigned) aTextStyle, styleFlags );
2402 auto cursorAdvanceX =
2403 [&](
const wxString& aText )
2410 if( aWord == wxT(
" " ) )
2412 VECTOR2I spaceBox( cursorAdvanceX( wxT(
" " ) ), 0 );
2417 VECTOR2I rotatedSpaceBox = spaceBox;
2419 return aPosition + rotatedSpaceBox;
2423 if( aWord.Contains( wxT(
'\t' ) ) )
2425 auto positionedAdvance =
2426 [&](
const wxString& aText )
2428 VECTOR2I advance( cursorAdvanceX( aText ), 0 );
2443 if( !segment.IsEmpty() )
2445 renderWord( segment, aPosition + positionedAdvance( prefix ), aSize, aOrient, aTextMirrored,
2446 aWidth, aBold, aItalic, aFont, aFontMetrics, aV_justify, aTextStyle );
2452 for( wxUniChar c : aWord )
2467 return aPosition + positionedAdvance( aWord );
2471 double ctm_a, ctm_b, ctm_c, ctm_d, ctm_e, ctm_f;
2472 double wideningFactor, heightFactor;
2476 &ctm_a, &ctm_b, &ctm_c, &ctm_d, &ctm_e, &ctm_f, &heightFactor );
2478 VECTOR2I bbox( cursorAdvanceX( aWord ), 0 );
2484 VECTOR2I nextPos = aPosition + bbox;
2491 double factor = aFont->
IsOutline() ? 0.050 : 0.030;
2492 VECTOR2I offset( 0,
static_cast<int>( std::lround( aSize.
y * factor ) ) );
2503 offset.
y =
static_cast<int>( std::lround( aSize.
y * 0.01 ) );
2513 std::vector<PDF_OUTLINE_FONT_RUN> outlineRuns;
2523 if( !outlineRuns.empty() )
2526 double baseline_factor = 0.17;
2527 double alignment_multiplier = 1.0;
2530 alignment_multiplier = 2.0;
2532 alignment_multiplier = 4.0;
2535 double baseline_adjustment = font_size_dev.
y * baseline_factor * alignment_multiplier;
2537 double adjusted_ctm_e = ctm_e;
2538 double adjusted_ctm_f = ctm_f;
2541 double cos_angle = cos( angle_rad );
2542 double sin_angle = sin( angle_rad );
2544 adjusted_ctm_e = ctm_e - baseline_adjustment * sin_angle;
2545 adjusted_ctm_f = ctm_f + baseline_adjustment * cos_angle;
2547 double adj_c = ctm_c;
2548 double adj_d = ctm_d;
2551 bool syntheticItalicApplied =
false;
2552 double appliedTilt = 0.0;
2553 double syn_c = adj_c;
2554 double syn_d = adj_d;
2555 double syn_a = ctm_a;
2556 double syn_b = ctm_b;
2559 if( std::getenv(
"KICAD_FORCE_SYN_ITALIC" ) )
2563 bool fontIsItalic = aFont->
IsItalic();
2564 bool fontIsBold = aFont->
IsBold();
2572 bool forceSynItalic =
false;
2573 double overrideTilt = 0.0;
2575 if(
const char* envForce = std::getenv(
"KICAD_FORCE_SYN_ITALIC" ) )
2577 if( *envForce !=
'\0' && *envForce !=
'0' )
2578 forceSynItalic =
true;
2581 if(
const char* envTilt = std::getenv(
"KICAD_SYN_ITALIC_TILT" ) )
2583 std::string tiltStr( envTilt );
2587 if( tiltStr.find(
"deg" ) != std::string::npos )
2589 double deg = std::stod( tiltStr );
2590 overrideTilt = tan( deg *
M_PI / 180.0 );
2594 overrideTilt = std::stod( tiltStr );
2604 wxLogTrace(
tracePdfPlotter,
"Outline path word='%s' runs=%zu wantItalic=%d fontIsItalic=%d "
2605 "fontIsFakeItalic=%d wantBold=%d fontIsBold=%d fontIsFakeBold=%d forceSyn=%d",
2606 TO_UTF8( aWord ), outlineRuns.size(), (
int) wantItalic, (
int) fontIsItalic,
2607 (
int) fontIsFakeItalic, (
int) wantBold, (
int) fontIsBold, (
int) fontIsFakeBold,
2608 (
int) forceSynItalic );
2614 bool realItalicFace = fontIsItalic && !fontIsFakeItalic;
2616 if( wantItalic && ( forceSynItalic || !realItalicFace ) )
2627 double tilt = ( overrideTilt != 0.0 ) ? overrideTilt :
ITALIC_TILT;
2629 if( wideningFactor < 0 )
2632 syn_c = adj_c + tilt * syn_a;
2633 syn_d = adj_d + tilt * syn_b;
2635 syntheticItalicApplied =
true;
2637 wxLogTrace(
tracePdfPlotter,
"Synthetic italic shear applied: tilt=%f a=%f b=%f c->%f d->%f",
2638 tilt, syn_a, syn_b, syn_c, syn_d );
2641 if( wantBold && !fontIsBold )
2648 if( syntheticItalicApplied )
2651 fmt::print(
m_workFile,
"% syn-italic tilt={} a={} b={} c={} d={}\n",
2652 appliedTilt, syn_a, syn_b, syn_c, syn_d );
2655 fmt::print(
m_workFile,
"q {:f} {:f} {:f} {:f} {:f} {:f} cm BT {} Tr {} Tz ",
2656 syn_a, syn_b, syn_c, syn_d, adjusted_ctm_e, adjusted_ctm_f,
2663 run.m_subset->ResourceName(),
2669 static_cast<unsigned char>( ( glyph.
cid >> 8 ) & 0xFF ),
2670 static_cast<unsigned char>( glyph.
cid & 0xFF ) );
2686 wxLogTrace(
tracePdfPlotter,
"Stroke path word='%s' wantItalic=%d aItalic=%d aBold=%d",
2688 (
int) aItalic, (
int) aBold );
2690 std::vector<PDF_STROKE_FONT_RUN> runs;
2696 double fontSize = dev_size.
y;
2698 double adj_c = ctm_c;
2699 double adj_d = ctm_d;
2705 if( wideningFactor < 0 )
2708 adj_c -= ctm_a * tilt;
2709 adj_d -= ctm_b * tilt;
2718 const double xCancelDev = xOffsetEm * dev_size.
x;
2719 const double yCancelDev = yOffsetEm * dev_size.
y;
2720 const double xSign = ( wideningFactor < 0 ) ? -1.0 : 1.0;
2722 const double adj_ctm_e = ctm_e - yCancelDev * adj_c - xSign * xCancelDev * ctm_a;
2723 const double adj_ctm_f = ctm_f - yCancelDev * adj_d - xSign * xCancelDev * ctm_b;
2726 const double tzFactor = wideningFactor < 0 ? -100.0 : 100.0;
2728 fmt::print(
m_workFile,
"q {:f} {:f} {:f} {:f} {:f} {:f} cm BT {} Tr {} Tz ",
2729 ctm_a, ctm_b, adj_c, adj_d, adj_ctm_e, adj_ctm_f,
2736 run.m_subset->ResourceName(),
2752 bool aTextMirrored,
int aWidth,
bool aBaseBold,
bool aBaseItalic,
2755 std::vector<OVERBAR_INFO>& aOverbars )
2760 return nextPosition;
2764 bool drawOverbar =
false;
2767 if( !aNode->is_root() )
2773 currentSize =
VECTOR2I( aBaseSize.
x * 0.5, aBaseSize.
y * 0.6 );
2779 currentSize =
VECTOR2I( aBaseSize.
x * 0.5, aBaseSize.
y * 0.6 );
2789 if( aNode->has_content() )
2794 wxStringTokenizer str_tok( nodeText,
" ", wxTOKEN_RET_DELIMS );
2796 while( str_tok.HasMoreTokens() )
2798 wxString word = str_tok.GetNextToken();
2799 nextPosition =
renderWord( word, nextPosition, currentSize, aOrient, aTextMirrored, aWidth,
2802 aFont, aFontMetrics, aV_justify, currentStyle );
2808 for(
const std::unique_ptr<MARKUP::NODE>& child : aNode->children )
2812 nextPosition =
renderMarkupNode( child.get(), nextPosition, currentSize, aOrient, aTextMirrored, aWidth,
2813 aBaseBold, aBaseItalic, aFont, aFontMetrics, aV_justify, currentStyle,
2820 aOverbars.push_back( { startPos, endPos, currentSize, aFont->
IsOutline(), aV_justify } );
2824 return nextPosition;
2834 VECTOR2D dir( overbar.endPos.x - overbar.startPos.x, overbar.endPos.y - overbar.startPos.y );
2836 double len = hypot( dir.
x, dir.
y );
2857 if( overbar.isOutline )
2858 barOffset += overbar.fontSize.y * 0.25;
2863 double alignMult = 1.0;
2865 switch( overbar.vAlign )
2869 default: alignMult = 1.0;
break;
2872 if( alignMult > 1.0 )
2875 double baseline_factor = 0.17;
2876 barOffset += ( alignMult - 1.0 ) * ( baseline_factor * overbar.fontSize.y );
2880 double barTrim = overbar.fontSize.x * 0.1;
2883 VECTOR2D startPt( overbar.startPos.x, overbar.startPos.y );
2884 VECTOR2D endPt( overbar.endPos.x, overbar.endPos.y );
2888 VECTOR2D offVec( -barOffset * nrm.
x, -barOffset * nrm.
y );
2890 startPt.
x += dir.
x * barTrim + offVec.
x;
2891 startPt.
y += dir.
y * barTrim + offVec.
y;
2892 endPt.
x -= dir.
x * barTrim - offVec.
x;
2893 endPt.
y -= dir.
y * barTrim - offVec.
y;
2907 const wxString& aText,
2916 if( size.
x == 0 || size.
y == 0 )
2924 aFont, aFontMetrics, aData );
2943 m_bookmarksInPage[aGroupName].push_back( std::make_pair( aLocation, aSymbolReference ) );
2949 std::map<float, int> m_fovMap;
2950 std::vector<int> m_viewHandles;
2955 wxASSERT( view.m_cameraMatrix.size() == 12 );
2958 if( !m_fovMap.contains( view.m_fov ) )
2961 m_fovMap[view.m_fov] = fovHandle;
2975 fovHandle = m_fovMap[view.m_fov];
2987 "/C2W [{:f} {:f} {:f} {:f} {:f} {:f} {:f} {:f} {:f} {:f} {:f} {:f}]\n"
2994 "/C [1.000000 1.000000 1.000000]>>\n"
2997 "/Type /3DLightingScheme\n"
3000 view.m_name, view.m_name, view.m_cameraMatrix[0],
3001 view.m_cameraMatrix[1],
3002 view.m_cameraMatrix[2], view.m_cameraMatrix[3], view.m_cameraMatrix[4],
3003 view.m_cameraMatrix[5], view.m_cameraMatrix[6], view.m_cameraMatrix[7],
3004 view.m_cameraMatrix[8], view.m_cameraMatrix[9], view.m_cameraMatrix[10],
3005 view.m_cameraMatrix[11],
3006 view.m_cameraCenter,
3011 m_viewHandles.push_back( viewHandle );
3027 for(
int viewHandle : m_viewHandles )
3034 "/Filter /FlateDecode\n"
3045 size_t model_stored_size = 0;
3048 wxFFileOutputStream ffos( outputFFile );
3049 wxZlibOutputStream zos( ffos, wxZ_BEST_COMPRESSION, wxZLIB_ZLIB );
3051 wxFFileInputStream fileStream( aSourcePath );
3053 if( !fileStream.IsOk() )
3054 wxLogError(
_(
"Failed to open 3D model file: %s" ), aSourcePath );
3056 zos.Write( fileStream );
3061 model_stored_size -= imgStreamStart;
3067 fmt::println(
m_outputFile,
"{}", (
unsigned) model_stored_size );
3070 outputFFile.Detach();
3075 float aCameraDistance,
3077 float aPitchDegrees,
3078 float aRollDegrees )
3080 float yRadians = glm::radians( aYawDegrees );
3081 float xRadians = glm::radians( aPitchDegrees );
3082 float zRadians = glm::radians( aRollDegrees );
3085 glm::mat4 rotationMatrix = glm::eulerAngleYXZ( yRadians, xRadians, zRadians );
3089 glm::vec4 cameraOffset = glm::vec4( 0.0f, 0.0f, aCameraDistance, 1.0f );
3092 cameraOffset = rotationMatrix * cameraOffset;
3095 glm::vec3 cameraPosition = glm::vec3(aTargetPosition.
x, aTargetPosition.
y, aTargetPosition.
z)
3096 - glm::vec3( cameraOffset );
3098 std::vector<float>
result( 12 );
3102 for(
int col = 0; col < 3; ++col )
3104 for(
int row = 0; row < 3; ++row )
3105 result[
index++] =
static_cast<float>( rotationMatrix[col][row] );
3109 result[9] =
static_cast<float>( cameraPosition.x );
3110 result[10] =
static_cast<float>( cameraPosition.y );
3111 result[11] =
static_cast<float>( cameraPosition.z );
void WriteImageStream(const wxImage &aImage, wxDataOutputStream &aOut, const wxColor &bg, bool colorMode)
void WriteImageSMaskStream(const wxImage &aImage, wxDataOutputStream &aOut)
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
static const ADVANCED_CFG & GetCfg()
Get the singleton instance's config, which is shared by all consumers.
constexpr const Vec & GetPosition() const
constexpr const Vec GetEnd() const
constexpr void SetOrigin(const Vec &pos)
constexpr BOX2< Vec > & Normalize()
Ensure that the height and width are positive.
constexpr coord_type GetLeft() const
constexpr coord_type GetRight() const
constexpr void SetEnd(coord_type x, coord_type y)
constexpr coord_type GetTop() const
constexpr coord_type GetBottom() const
static bool IsGotoPageHref(const wxString &aHref, wxString *aDestination=nullptr)
Check if aHref is a valid internal hyperlink.
High-level wrapper for evaluating mathematical and string expressions in wxString format.
wxString Evaluate(const wxString &aInput)
Main evaluation function - processes input string and evaluates all} expressions.
FONT is an abstract base class for both outline and stroke fonts.
static FONT * GetFont(const wxString &aFontName=wxEmptyString, bool aBold=false, bool aItalic=false, const std::vector< wxString > *aEmbeddedFiles=nullptr, bool aForDrawingSheet=false)
virtual bool IsStroke() const
virtual bool IsItalic() const
virtual bool IsBold() const
virtual bool IsOutline() const
VECTOR2I GetAlignedDrawPosition(const wxString &aText, const VECTOR2I &aAnchor, const TEXT_ATTRIBUTES &aAttributes, const METRICS &aFontMetrics) const
Return the draw position for the first line of text, using the same alignment rules as GAL rendering ...
VECTOR2I StringBoundaryLimits(const wxString &aText, const VECTOR2I &aSize, int aThickness, bool aBold, bool aItalic, const METRICS &aFontMetrics) const
Compute the boundary limits of aText (the bounding box of all shapes).
virtual VECTOR2I GetTextAsGlyphs(BOX2I *aBBox, std::vector< std::unique_ptr< GLYPH > > *aGlyphs, const wxString &aText, const VECTOR2I &aSize, const VECTOR2I &aPosition, const EDA_ANGLE &aAngle, bool aMirror, const VECTOR2I &aOrigin, TEXT_STYLE_FLAGS aTextStyle) const =0
Convert text string to an array of GLYPHs.
double GetOverbarVerticalPosition(double aGlyphHeight) const
Compute the vertical position of an overbar.
Class OUTLINE_FONT implements outline font drawing.
EMBEDDING_PERMISSION GetEmbeddingPermission() const
A color representation with 4 components: red, green, blue, alpha.
std::unique_ptr< NODE > Parse()
std::vector< int > m_pageHandles
Handles to the page objects.
FILE * m_workFile
Temporary file to construct the stream before zipping.
wxString m_parentPageName
virtual void ClosePage()
Close the current page in the PDF document (and emit its compressed stream).
void emitOutlineNode(OUTLINE_NODE *aNode, int aParentHandle, int aNextNode, int aPrevNode)
Emits a outline item object and recurses into any children.
std::map< int, wxImage > m_imageHandles
int emitOutline()
Starts emitting the outline object.
virtual bool EndPlot() override
int startPdfObject(int aHandle=-1)
Open a new PDF object and returns the handle if the parameter is -1.
virtual void PlotPoly(const std::vector< VECTOR2I > &aCornerList, FILL_T aFill, int aWidth=USE_DEFAULT_LINE_WIDTH, void *aData=nullptr) override
Polygon plotting for PDF.
virtual void Circle(const VECTOR2I &pos, int diametre, FILL_T fill, int width) override
Circle drawing for PDF.
virtual void SetCurrentLineWidth(int width, void *aData=nullptr) override
Pen width setting for PDF.
int m_streamLengthHandle
Handle to the deferred stream length.
void PlotImage(const wxImage &aImage, const VECTOR2I &aPos, double aScaleFactor) override
PDF images are handles as inline, not XObject streams...
int m_jsNamesHandle
Handle for Names dictionary with JS.
virtual void SetDash(int aLineWidth, LINE_STYLE aLineStyle) override
PDF supports dashed lines.
void HyperlinkMenu(const BOX2I &aBox, const std::vector< wxString > &aDestURLs) override
Create a clickable hyperlink menu with a rectangular click area.
virtual bool OpenFile(const wxString &aFullFilename) override
Open or create the plot file aFullFilename.
std::string encodeDoubleForPlotter(double aValue) const
Convert a double to a PDF-compatible numeric token (no exponent notation).
int m_fontResDictHandle
Font resource dictionary.
virtual void emitSetRGBColor(double r, double g, double b, double a) override
PDF supports colors fully.
std::map< int, std::pair< BOX2D, wxString > > m_hyperlinkHandles
Handles for all the hyperlink objects that will be deferred.
int m_pageTreeHandle
Handle to the root of the page tree object.
virtual void Text(const VECTOR2I &aPos, const COLOR4D &aColor, const wxString &aText, const EDA_ANGLE &aOrient, const VECTOR2I &aSize, enum GR_TEXT_H_ALIGN_T aH_justify, enum GR_TEXT_V_ALIGN_T aV_justify, int aWidth, bool aItalic, bool aBold, bool aMultilineAllowed, KIFONT::FONT *aFont, const KIFONT::METRICS &aFontMetrics, void *aData=nullptr) override
Draw text with the plotter.
int emitGoToAction(int aPageHandle, const VECTOR2I &aBottomLeft, const VECTOR2I &aTopRight)
Emit an action object that instructs a goto coordinates on a page.
void closePdfStream()
Finish the current PDF stream (writes the deferred length, too).
void Bookmark(const BOX2I &aBox, const wxString &aName, const wxString &aGroupName=wxEmptyString) override
Create a bookmark to a symbol.
std::vector< long > m_xrefTable
The PDF xref offset table.
void endPlotEmitResources()
virtual void Rect(const VECTOR2I &p1, const VECTOR2I &p2, FILL_T fill, int width, int aCornerRadius=0) override
Rectangles in PDF.
int startPdfStream(int aHandle=-1)
Start a PDF stream (for the page).
VECTOR2I renderMarkupNode(const MARKUP::NODE *aNode, const VECTOR2I &aPosition, const VECTOR2I &aBaseSize, const EDA_ANGLE &aOrient, bool aTextMirrored, int aWidth, bool aBaseBold, bool aBaseItalic, KIFONT::FONT *aFont, const KIFONT::METRICS &aFontMetrics, enum GR_TEXT_V_ALIGN_T aV_justify, TEXT_STYLE_FLAGS aTextStyle, std::vector< OVERBAR_INFO > &aOverbars)
Recursively render markup nodes with appropriate styling.
virtual void Arc(const VECTOR2D &aCenter, const EDA_ANGLE &aStartAngle, const EDA_ANGLE &aAngle, double aRadius, FILL_T aFill, int aWidth) override
The PDF engine can't directly plot arcs so we use polygonization.
void HyperlinkBox(const BOX2I &aBox, const wxString &aDestinationURL) override
Create a clickable hyperlink with a rectangular click area.
virtual void PenTo(const VECTOR2I &pos, char plume) override
Moveto/lineto primitive, moves the 'pen' to the specified direction.
std::map< wxString, std::vector< std::pair< BOX2I, wxString > > > m_bookmarksInPage
virtual bool StartPlot(const wxString &aPageNumber) override
The PDF engine supports multiple pages; the first one is opened 'for free' the following are to be cl...
bool m_usedBase14Fonts
Set when the non-embeddable font fallback references the base-14 /KicadFont* resources.
virtual void StartPage(const wxString &aPageNumber, const wxString &aPageName=wxEmptyString, const wxString &aParentPageNumber=wxEmptyString, const wxString &aParentPageName=wxEmptyString)
Start a new page in the PDF document.
std::unique_ptr< PDF_OUTLINE_FONT_MANAGER > m_outlineFontManager
OUTLINE_NODE * addOutlineNode(OUTLINE_NODE *aParent, int aActionHandle, const wxString &aTitle)
Add a new outline node entry.
int m_imgResDictHandle
Image resource dictionary.
std::string encodeStringForPlotter(const wxString &aUnicode) override
convert a wxString unicode string to a char string compatible with the accepted string PDF format (co...
std::unique_ptr< PDF_STROKE_FONT_MANAGER > m_strokeFontManager
void Plot3DModel(const wxString &aSourcePath, const std::vector< PDF_3D_VIEW > &a3DViews)
std::vector< wxString > m_pageNumbers
List of user-space page numbers for resolving internal hyperlinks.
int allocPdfObject()
Allocate a new handle in the table of the PDF object.
VECTOR2I renderWord(const wxString &aWord, const VECTOR2I &aPosition, const VECTOR2I &aSize, const EDA_ANGLE &aOrient, bool aTextMirrored, int aWidth, bool aBold, bool aItalic, KIFONT::FONT *aFont, const KIFONT::METRICS &aFontMetrics, enum GR_TEXT_V_ALIGN_T aV_justify, TEXT_STYLE_FLAGS aTextStyle)
Render a single word with the given style parameters.
std::string encodeByteString(const std::string &aBytes)
void drawOverbars(const std::vector< OVERBAR_INFO > &aOverbars, const EDA_ANGLE &aOrient, const KIFONT::METRICS &aFontMetrics)
Draw overbar lines above text.
virtual void SetViewport(const VECTOR2I &aOffset, double aIusPerDecimil, double aScale, bool aMirror) override
PDF can have multiple pages, so SetPageSettings can be called with the outputFile open (but not insid...
std::map< int, std::pair< BOX2D, std::vector< wxString > > > m_hyperlinkMenuHandles
int m_pageStreamHandle
Handle of the page content object.
virtual void PlotText(const VECTOR2I &aPos, const COLOR4D &aColor, const wxString &aText, const TEXT_ATTRIBUTES &aAttributes, KIFONT::FONT *aFont, const KIFONT::METRICS &aFontMetrics, void *aData=nullptr) override
static std::vector< float > CreateC2WMatrixFromAngles(const VECTOR3D &aTargetPosition, float aCameraDistance, float aYawDegrees, float aPitchDegrees, float aRollDegrees)
Generates the camera to world matrix for use with a 3D View.
std::vector< std::pair< BOX2I, wxString > > m_hyperlinksInPage
List of loaded hyperlinks in current page.
std::unique_ptr< OUTLINE_NODE > m_outlineRoot
Root outline node.
std::vector< std::pair< BOX2I, std::vector< wxString > > > m_hyperlinkMenusInPage
void closePdfObject()
Close the current PDF object.
int m_totalOutlineNodes
Total number of outline nodes.
std::vector< VECTOR2D > arcPath(const VECTOR2D &aCenter, const EDA_ANGLE &aStartAngle, const EDA_ANGLE &aAngle, double aRadius)
const std::string & ResourceName() const
std::string BuildDifferencesArray() const
double FontBBoxMaxY() const
double FontBBoxMinY() const
double UnitsPerEm() const
double FontBBoxMinX() const
void SetToUnicodeHandle(int aHandle)
int CharProcsHandle() const
std::string BuildWidthsArray() const
double FontBBoxMaxX() const
void SetFontHandle(int aHandle)
int ToUnicodeHandle() const
void SetCharProcsHandle(int aHandle)
std::string BuildToUnicodeCMap() const
std::vector< GLYPH > & Glyphs()
double GetDotMarkLenIU(int aLineWidth) const
double GetDashGapLenIU(int aLineWidth) const
const PROJECT * m_project
bool m_mirrorIsHorizontal
static const int USE_DEFAULT_LINE_WIDTH
void MoveTo(const VECTOR2I &pos)
void FinishTo(const VECTOR2I &pos)
virtual VECTOR2D userToDeviceCoordinates(const VECTOR2I &aCoordinate)
Modify coordinates according to the orientation, scale factor, and offsets trace.
virtual VECTOR2D userToDeviceSize(const VECTOR2I &size)
Modify size according to the plotter scale factors (VECTOR2I version, returns a VECTOR2D).
double m_plotScale
Plot scale - chosen by the user (even implicitly with 'fit in a4')
FILE * m_outputFile
Output file.
void LineTo(const VECTOR2I &pos)
static const int DO_NOT_SET_LINE_WIDTH
RENDER_SETTINGS * m_renderSettings
virtual void Text(const VECTOR2I &aPos, const COLOR4D &aColor, const wxString &aText, const EDA_ANGLE &aOrient, const VECTOR2I &aSize, enum GR_TEXT_H_ALIGN_T aH_justify, enum GR_TEXT_V_ALIGN_T aV_justify, int aPenWidth, bool aItalic, bool aBold, bool aMultilineAllowed, KIFONT::FONT *aFont, const KIFONT::METRICS &aFontMetrics, void *aData=nullptr)
Draw text with the plotter.
virtual int GetCurrentLineWidth() const
double GetDashMarkLenIU(int aLineWidth) const
virtual void SetColor(const COLOR4D &color) override
The SetColor implementation is split with the subclasses: the PSLIKE computes the rgb values,...
double plotScaleAdjX
Fine user scale adjust ( = 1.0 if no correction)
void computeTextParameters(const VECTOR2I &aPos, const wxString &aText, const EDA_ANGLE &aOrient, const VECTOR2I &aSize, bool aMirror, enum GR_TEXT_H_ALIGN_T aH_justify, enum GR_TEXT_V_ALIGN_T aV_justify, int aWidth, bool aItalic, bool aBold, double *wideningFactor, double *ctm_a, double *ctm_b, double *ctm_c, double *ctm_d, double *ctm_e, double *ctm_f, double *heightFactor)
This is the core for postscript/PDF text alignment.
EDA_ANGLE GetCentralAngle() const
Get the "central angle" of the arc - this is the angle at the point of the "pie slice".
EDA_ANGLE GetStartAngle() const
const VECTOR2I & GetCenter() const
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
const SHAPE_ARC & Arc(size_t aArc) const
ssize_t ArcIndex(size_t aSegment) const
Return the arc index for the given segment index.
SEG Segment(int aIndex) const
Return a copy of the aIndex-th segment in the line chain.
int SegmentCount() const
Return the number of segments in this line chain.
bool IsArcSegment(size_t aSegment) const
const SHAPE_LINE_CHAIN Outline() const
void SetRadius(int aRadius)
GR_TEXT_H_ALIGN_T m_Halign
GR_TEXT_V_ALIGN_T m_Valign
An 8 bit string that is assuredly encoded in UTF8, and supplies special conversion support to and fro...
std::string substr(size_t pos=0, size_t len=npos) const
const wxString ResolveUriByEnvVars(const wxString &aUri, const PROJECT *aProject)
Replace any environment and/or text variables in URIs.
static constexpr EDA_ANGLE ANGLE_0
@ FILLED_SHAPE
Fill with object color.
unsigned int TEXT_STYLE_FLAGS
static constexpr double ITALIC_TILT
Tilt factor for italic style (this is the scaling factor on dY relative coordinates to give a tilted ...
int GetPenSizeForBold(int aTextSize)
double m_PDFStrokeFontXOffset
Horizontal offset factor applied to stroke font glyph coordinates (in EM units) after to compensate m...
double m_PDFStrokeFontYOffset
Vertical offset factor applied to stroke font glyph coordinates (in EM units) after Y inversion to co...
const wxChar *const tracePdfPlotter
Flag to enable PDF plotter debug tracing.
void ignore_unused(const T &)
This file contains miscellaneous commonly used macros and functions.
#define KI_FALLTHROUGH
The KI_FALLTHROUGH macro is to be used when switch statement cases should purposely fallthrough from ...
EDA_ANGLE abs(const EDA_ANGLE &aAngle)
Plotting engines similar to ps (PostScript, Gerber, svg)
wxString NormalizeFileUri(const wxString &aFileUri)
Normalize file path aFileUri to URI convention.
wxString EscapeString(const wxString &aSource, ESCAPE_CONTEXT aContext)
The Escape/Unescape routines use HTML-entity-reference-style encoding to handle characters which are:...
#define TO_UTF8(wxstring)
Convert a wxString to a UTF8 encoded C string for all wxWidgets build modes.
LINE_STYLE
Dashed line types.
bool isSuperscript() const
wxString asWxString() const
wxString title
Title of outline node.
std::vector< OUTLINE_NODE * > children
Ordered list of children.
int entryHandle
Allocated handle for this outline entry.
OUTLINE_NODE * AddChild(int aActionHandle, const wxString &aTitle, int aEntryHandle)
int actionHandle
Handle to action.
wxString result
Test unit parsing edge cases and error handling.
GR_TEXT_H_ALIGN_T
This is API surface mapped to common.types.HorizontalAlignment.
GR_TEXT_V_ALIGN_T
This is API surface mapped to common.types.VertialAlignment.
wxLogTrace helper definitions.
void RotatePoint(int *pX, int *pY, const EDA_ANGLE &aAngle)
Calculate the new point of coord coord pX, pY, for a rotation center 0, 0.
VECTOR2< int32_t > VECTOR2I
VECTOR2< double > VECTOR2D
VECTOR3< double > VECTOR3D