|
@@ -15,16 +15,13 @@ using ComPDFKit.PDFPage;
|
|
|
using static Dropbox.Api.TeamLog.PaperDownloadFormat;
|
|
|
using Microsoft.Office.Interop.Word;
|
|
|
using Task = System.Threading.Tasks.Task;
|
|
|
-using System.Drawing.Imaging;
|
|
|
+using System.Drawing.Imaging;
|
|
|
using System.Windows.Media;
|
|
|
|
|
|
namespace PDF_Office.Helper
|
|
|
{
|
|
|
public static class EditToolsHelper
|
|
|
{
|
|
|
- private static byte[] BitmapData = null;
|
|
|
-
|
|
|
- private static int Width=0;
|
|
|
|
|
|
public static byte[] ConvertColor(Color color)
|
|
|
{
|
|
@@ -32,6 +29,7 @@ namespace PDF_Office.Helper
|
|
|
rgb_array[0] = color.R;
|
|
|
rgb_array[1] = color.G;
|
|
|
rgb_array[2] = color.B;
|
|
|
+
|
|
|
return rgb_array;
|
|
|
}
|
|
|
|