Skip to content

Commit 93776b5

Browse files
JosipJosip
Josip
authored and
Josip
committed
v.1.2.1. changes
1 parent f38d677 commit 93776b5

File tree

83 files changed

+328
-143
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+328
-143
lines changed

Ghostscript.NET.DisplayTest/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.2.0")]
36-
[assembly: AssemblyFileVersion("1.2.0")]
35+
[assembly: AssemblyVersion("1.2.1")]
36+
[assembly: AssemblyFileVersion("1.2.1")]

Ghostscript.NET.Samples/ISample.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET.Samples project
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

Ghostscript.NET.Samples/Program.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET.Samples project
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the
@@ -44,7 +44,7 @@ static void Main(string[] args)
4444
ISample sample;
4545

4646
//sample = new GetInkCoverageSample();
47-
//sample = new ProcessorSample1();
47+
sample = new ProcessorSample1();
4848
//sample = new ProcessorSample2();
4949
//sample = new FindInstalledGhostscriptVersionsSample();
5050
//sample = new RunMultipleInstancesSample();
@@ -53,7 +53,7 @@ static void Main(string[] args)
5353
//sample = new RasterizerSample2();
5454
//sample = new AddWatermarkSample();
5555
//sample = new DeviceUsageSample();
56-
sample = new PipedOutputSample();
56+
//sample = new PipedOutputSample();
5757
//sample = new SendToPrinterSample();
5858
//sample = new RasterizerCropSample();
5959

Ghostscript.NET.Samples/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.2.0")]
36-
[assembly: AssemblyFileVersion("1.2.0")]
35+
[assembly: AssemblyVersion("1.2.1")]
36+
[assembly: AssemblyFileVersion("1.2.1")]

Ghostscript.NET.Samples/Samples/AddWatermarkSample.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET.Samples project
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

Ghostscript.NET.Samples/Samples/CustomGsdllLocationSample.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET.Samples project
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

Ghostscript.NET.Samples/Samples/DeviceUsageSample.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET.Samples project
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

Ghostscript.NET.Samples/Samples/FindInstalledGhostscriptVersionsSample.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET.Samples project
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

Ghostscript.NET.Samples/Samples/GetInkCoverageSample.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET.Samples project
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

Ghostscript.NET.Samples/Samples/PipedOutputSample.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET.Samples project
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

Ghostscript.NET.Samples/Samples/ProcessorSample1.cs

+3-8
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET.Samples project
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the
@@ -36,9 +36,6 @@ public class ProcessorSample1 : ISample
3636
{
3737
public void Start()
3838
{
39-
Start2();
40-
return;
41-
4239
string inputFile = @"E:\gss_test\test.pdf";
4340
string outputFile = @"E:\gss_test\output\page-%03d.png";
4441

@@ -77,7 +74,6 @@ void ghostscript_Processing(object sender, GhostscriptProcessorProcessingEventAr
7774
private void Start2()
7875
{
7976
string inputFile = @"E:\__test_data\i1.pdf";
80-
string outputFile = @"E:\gss_test\output\page-%03d.png";
8177

8278
GhostscriptPipedOutput gsPipedOutput = new GhostscriptPipedOutput();
8379

@@ -95,10 +91,9 @@ private void Start2()
9591
switches.Add("-dNOPAUSE");
9692
switches.Add("-dNOPROMPT");
9793
switches.Add("-dPrinted");
98-
switches.Add("-sDEVICE=pdfwrite");
99-
//switches.Add("-sDEVICE=tiffsep1");
94+
//switches.Add("-sDEVICE=pdfwrite");
95+
switches.Add("-sDEVICE=tiff24nc");
10096
switches.Add("-sOutputFile=" + outputPipeHandle);
101-
//switches.Add("-q");
10297
switches.Add("-f");
10398
switches.Add(inputFile);
10499

Ghostscript.NET.Samples/Samples/ProcessorSample2.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET.Samples project
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

Ghostscript.NET.Samples/Samples/RasterizerCropSample.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET.Samples project
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

Ghostscript.NET.Samples/Samples/RasterizerSample1.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET.Samples project
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

Ghostscript.NET.Samples/Samples/RasterizerSample2.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET.Samples project
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

Ghostscript.NET.Samples/Samples/RunMultipleInstancesSample.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET.Samples project
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

Ghostscript.NET.Samples/Samples/SendToPrinterSample.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET.Samples project
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

Ghostscript.NET.Samples/Samples/ViewerSample.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET.Samples project
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

Ghostscript.NET.Samples/StdIOHandlers/ConsoleStdIO.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET.Samples project
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

Ghostscript.NET.VS2015.sln

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.25123.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ghostscript.NET", "Ghostscript.NET\Ghostscript.NET.csproj", "{8BDBDEEC-CAB1-4C0B-86C2-7B0D0D3FE363}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ghostscript.NET.Samples", "Ghostscript.NET.Samples\Ghostscript.NET.Samples.csproj", "{4C7B5A1E-2172-48A8-8139-5CB7A3D6065F}"
9+
EndProject
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ghostscript.NET.DisplayTest", "Ghostscript.NET.DisplayTest\Ghostscript.NET.DisplayTest.csproj", "{3509F0F7-A7AD-4FEE-B388-AA817F3413E9}"
11+
EndProject
12+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ghostscript.NET.Viewer", "Ghostscript.NET.Viewer\Ghostscript.NET.Viewer.csproj", "{C099EB3A-B4D7-4379-AFAB-4FCD4DF4F003}"
13+
EndProject
14+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "root", "root", "{3AA07E8A-8E52-4E60-A6BB-A5991B5F829F}"
15+
ProjectSection(SolutionItems) = preProject
16+
COPYING = COPYING
17+
VERSION-HISTORY = VERSION-HISTORY
18+
EndProjectSection
19+
EndProject
20+
Global
21+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
22+
Debug|Any CPU = Debug|Any CPU
23+
Debug|Mixed Platforms = Debug|Mixed Platforms
24+
Debug|x64 = Debug|x64
25+
Debug|x86 = Debug|x86
26+
Release|Any CPU = Release|Any CPU
27+
Release|Mixed Platforms = Release|Mixed Platforms
28+
Release|x64 = Release|x64
29+
Release|x86 = Release|x86
30+
EndGlobalSection
31+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
32+
{8BDBDEEC-CAB1-4C0B-86C2-7B0D0D3FE363}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
33+
{8BDBDEEC-CAB1-4C0B-86C2-7B0D0D3FE363}.Debug|Any CPU.Build.0 = Debug|Any CPU
34+
{8BDBDEEC-CAB1-4C0B-86C2-7B0D0D3FE363}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
35+
{8BDBDEEC-CAB1-4C0B-86C2-7B0D0D3FE363}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
36+
{8BDBDEEC-CAB1-4C0B-86C2-7B0D0D3FE363}.Debug|x64.ActiveCfg = Debug|x64
37+
{8BDBDEEC-CAB1-4C0B-86C2-7B0D0D3FE363}.Debug|x64.Build.0 = Debug|x64
38+
{8BDBDEEC-CAB1-4C0B-86C2-7B0D0D3FE363}.Debug|x86.ActiveCfg = Debug|Any CPU
39+
{8BDBDEEC-CAB1-4C0B-86C2-7B0D0D3FE363}.Release|Any CPU.ActiveCfg = Release|Any CPU
40+
{8BDBDEEC-CAB1-4C0B-86C2-7B0D0D3FE363}.Release|Any CPU.Build.0 = Release|Any CPU
41+
{8BDBDEEC-CAB1-4C0B-86C2-7B0D0D3FE363}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
42+
{8BDBDEEC-CAB1-4C0B-86C2-7B0D0D3FE363}.Release|Mixed Platforms.Build.0 = Release|Any CPU
43+
{8BDBDEEC-CAB1-4C0B-86C2-7B0D0D3FE363}.Release|x64.ActiveCfg = Release|x64
44+
{8BDBDEEC-CAB1-4C0B-86C2-7B0D0D3FE363}.Release|x64.Build.0 = Release|x64
45+
{8BDBDEEC-CAB1-4C0B-86C2-7B0D0D3FE363}.Release|x86.ActiveCfg = Release|Any CPU
46+
{4C7B5A1E-2172-48A8-8139-5CB7A3D6065F}.Debug|Any CPU.ActiveCfg = Debug|x86
47+
{4C7B5A1E-2172-48A8-8139-5CB7A3D6065F}.Debug|Any CPU.Build.0 = Debug|x86
48+
{4C7B5A1E-2172-48A8-8139-5CB7A3D6065F}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
49+
{4C7B5A1E-2172-48A8-8139-5CB7A3D6065F}.Debug|Mixed Platforms.Build.0 = Debug|x86
50+
{4C7B5A1E-2172-48A8-8139-5CB7A3D6065F}.Debug|x64.ActiveCfg = Debug|x64
51+
{4C7B5A1E-2172-48A8-8139-5CB7A3D6065F}.Debug|x64.Build.0 = Debug|x64
52+
{4C7B5A1E-2172-48A8-8139-5CB7A3D6065F}.Debug|x86.ActiveCfg = Debug|x86
53+
{4C7B5A1E-2172-48A8-8139-5CB7A3D6065F}.Debug|x86.Build.0 = Debug|x86
54+
{4C7B5A1E-2172-48A8-8139-5CB7A3D6065F}.Release|Any CPU.ActiveCfg = Release|x86
55+
{4C7B5A1E-2172-48A8-8139-5CB7A3D6065F}.Release|Any CPU.Build.0 = Release|x86
56+
{4C7B5A1E-2172-48A8-8139-5CB7A3D6065F}.Release|Mixed Platforms.ActiveCfg = Release|x86
57+
{4C7B5A1E-2172-48A8-8139-5CB7A3D6065F}.Release|Mixed Platforms.Build.0 = Release|x86
58+
{4C7B5A1E-2172-48A8-8139-5CB7A3D6065F}.Release|x64.ActiveCfg = Release|x64
59+
{4C7B5A1E-2172-48A8-8139-5CB7A3D6065F}.Release|x64.Build.0 = Release|x64
60+
{4C7B5A1E-2172-48A8-8139-5CB7A3D6065F}.Release|x86.ActiveCfg = Release|x86
61+
{4C7B5A1E-2172-48A8-8139-5CB7A3D6065F}.Release|x86.Build.0 = Release|x86
62+
{3509F0F7-A7AD-4FEE-B388-AA817F3413E9}.Debug|Any CPU.ActiveCfg = Debug|x86
63+
{3509F0F7-A7AD-4FEE-B388-AA817F3413E9}.Debug|Any CPU.Build.0 = Debug|x86
64+
{3509F0F7-A7AD-4FEE-B388-AA817F3413E9}.Debug|Mixed Platforms.ActiveCfg = Debug|x64
65+
{3509F0F7-A7AD-4FEE-B388-AA817F3413E9}.Debug|Mixed Platforms.Build.0 = Debug|x64
66+
{3509F0F7-A7AD-4FEE-B388-AA817F3413E9}.Debug|x64.ActiveCfg = Debug|x64
67+
{3509F0F7-A7AD-4FEE-B388-AA817F3413E9}.Debug|x64.Build.0 = Debug|x64
68+
{3509F0F7-A7AD-4FEE-B388-AA817F3413E9}.Debug|x86.ActiveCfg = Debug|x86
69+
{3509F0F7-A7AD-4FEE-B388-AA817F3413E9}.Debug|x86.Build.0 = Debug|x86
70+
{3509F0F7-A7AD-4FEE-B388-AA817F3413E9}.Release|Any CPU.ActiveCfg = Release|x86
71+
{3509F0F7-A7AD-4FEE-B388-AA817F3413E9}.Release|Any CPU.Build.0 = Release|x86
72+
{3509F0F7-A7AD-4FEE-B388-AA817F3413E9}.Release|Mixed Platforms.ActiveCfg = Release|x86
73+
{3509F0F7-A7AD-4FEE-B388-AA817F3413E9}.Release|Mixed Platforms.Build.0 = Release|x86
74+
{3509F0F7-A7AD-4FEE-B388-AA817F3413E9}.Release|x64.ActiveCfg = Release|x64
75+
{3509F0F7-A7AD-4FEE-B388-AA817F3413E9}.Release|x64.Build.0 = Release|x64
76+
{3509F0F7-A7AD-4FEE-B388-AA817F3413E9}.Release|x86.ActiveCfg = Release|x86
77+
{3509F0F7-A7AD-4FEE-B388-AA817F3413E9}.Release|x86.Build.0 = Release|x86
78+
{C099EB3A-B4D7-4379-AFAB-4FCD4DF4F003}.Debug|Any CPU.ActiveCfg = Debug|x86
79+
{C099EB3A-B4D7-4379-AFAB-4FCD4DF4F003}.Debug|Any CPU.Build.0 = Debug|x86
80+
{C099EB3A-B4D7-4379-AFAB-4FCD4DF4F003}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
81+
{C099EB3A-B4D7-4379-AFAB-4FCD4DF4F003}.Debug|Mixed Platforms.Build.0 = Debug|x86
82+
{C099EB3A-B4D7-4379-AFAB-4FCD4DF4F003}.Debug|x64.ActiveCfg = Debug|x86
83+
{C099EB3A-B4D7-4379-AFAB-4FCD4DF4F003}.Debug|x86.ActiveCfg = Debug|x86
84+
{C099EB3A-B4D7-4379-AFAB-4FCD4DF4F003}.Debug|x86.Build.0 = Debug|x86
85+
{C099EB3A-B4D7-4379-AFAB-4FCD4DF4F003}.Release|Any CPU.ActiveCfg = Release|x86
86+
{C099EB3A-B4D7-4379-AFAB-4FCD4DF4F003}.Release|Any CPU.Build.0 = Release|x86
87+
{C099EB3A-B4D7-4379-AFAB-4FCD4DF4F003}.Release|Mixed Platforms.ActiveCfg = Release|x86
88+
{C099EB3A-B4D7-4379-AFAB-4FCD4DF4F003}.Release|Mixed Platforms.Build.0 = Release|x86
89+
{C099EB3A-B4D7-4379-AFAB-4FCD4DF4F003}.Release|x64.ActiveCfg = Release|x86
90+
{C099EB3A-B4D7-4379-AFAB-4FCD4DF4F003}.Release|x86.ActiveCfg = Release|x86
91+
{C099EB3A-B4D7-4379-AFAB-4FCD4DF4F003}.Release|x86.Build.0 = Release|x86
92+
EndGlobalSection
93+
GlobalSection(SolutionProperties) = preSolution
94+
HideSolutionNode = FALSE
95+
EndGlobalSection
96+
EndGlobal

Ghostscript.NET.Viewer/FMain.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET.Viewer project
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the
@@ -99,6 +99,7 @@ private void mnuFileOpen_Click(object sender, EventArgs e)
9999
mnuFileClose_Click(this, null);
100100

101101
_viewer.Open(ofd.FileName, _gsVersion, false);
102+
102103
this.Text = System.IO.Path.GetFileName(ofd.FileName) + " - " + Program.NAME;
103104
}
104105
}

Ghostscript.NET.Viewer/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET.Samples project
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

Ghostscript.NET.Viewer/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.2.0")]
36-
[assembly: AssemblyFileVersion("1.2.0")]
35+
[assembly: AssemblyVersion("1.2.1")]
36+
[assembly: AssemblyFileVersion("1.2.1")]

Ghostscript.NET/Exceptions/GhostscriptAPICallException.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET library
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

Ghostscript.NET/Exceptions/GhostscriptException.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET library
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

Ghostscript.NET/Exceptions/GhostscriptLibraryNotInstalledException.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET library
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

Ghostscript.NET/Ghostscript.NET.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@
104104
<Compile Include="Helpers\ImageMemoryHelper.cs" />
105105
<Compile Include="Helpers\NativeLibraryHelper.cs" />
106106
<Compile Include="Helpers\StreamHelper.cs" />
107+
<Compile Include="Helpers\StringHelper.cs" />
107108
<Compile Include="Interpreter\GhostscriptInterpreter.cs" />
108109
<Compile Include="Microsoft.WinAny.Helper\Interop\DynamicNativeLibrary.cs" />
109110
<Compile Include="Microsoft.WinAny.Helper\_native\memory.cs" />

Ghostscript.NET/GhostscriptDisplayDeviceHandler.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This file is part of Ghostscript.NET library
44
//
55
// Author: Josip Habjan ([email protected], http://www.linkedin.com/in/habjan)
6-
// Copyright (c) 2013-2015 by Josip Habjan. All rights reserved.
6+
// Copyright (c) 2013-2016 by Josip Habjan. All rights reserved.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining
99
// a copy of this software and associated documentation files (the

0 commit comments

Comments
 (0)