You've already forked lazarus-ccr
fpvectorial: Improves the Pen Width handling
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1668 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -46,8 +46,6 @@ type
|
||||
function IsValidPostScriptChar(AChar: Byte): Boolean;
|
||||
end;
|
||||
|
||||
{ TvEPSFVectorialReader }
|
||||
|
||||
{ TvEPSVectorialReader }
|
||||
|
||||
TvEPSVectorialReader = class(TvCustomVectorialReader)
|
||||
@ -154,7 +152,7 @@ end;
|
||||
|
||||
{@@ Valid PostScript Chars:
|
||||
|
||||
All printable: a..zA..Z0..9
|
||||
All printable ASCII: a..zA..Z0..9 plus punctuation
|
||||
|
||||
Plus the following white spaces
|
||||
000 00 0 Null (nul)
|
||||
|
@ -884,6 +884,7 @@ begin
|
||||
FTmpPath.Brush.Style := bsClear;
|
||||
FTmpPath.Pen.Color := clvBlack;
|
||||
FTmpPath.Pen.Style := psSolid;
|
||||
FTmpPath.Pen.Width := 1;
|
||||
end;
|
||||
|
||||
procedure TvVectorialDocument.AppendSegmentToTmpPath(ASegment: TPathSegment);
|
||||
|
@ -171,6 +171,7 @@ begin
|
||||
|
||||
// Set the path Pen and Brush options
|
||||
ADest.Pen.Style := CurPath.Pen.Style;
|
||||
ADest.Pen.Width := CurPath.Pen.Width;
|
||||
ADest.Brush.Style := CurPath.Brush.Style;
|
||||
{$ifdef USE_LCL_CANVAS}
|
||||
ADest.Pen.Color := VColorToTColor(CurPath.Pen.Color);
|
||||
|
Reference in New Issue
Block a user