using System; using System.Collections.Generic; using System.Drawing; using System.Linq; namespace Nikse.SubtitleEdit.Core { public class TextSplitResult { public List Lines { get; set; } public List LengthPixels { get; set; } public List LengthCharacters { get; set; } public bool IsBottomHeavy => LengthPixels[1] + 2 > LengthPixels[0]; // allow a small diff of 2 pixels public static float SpaceLengthPixels { get; set; } public double TotalLength => Lines.Sum(p => p.Length); public double TotalLengthPixels => LengthPixels.Sum(p => p) - SpaceLengthPixels; private static readonly Graphics Graphics = Graphics.FromHwnd(IntPtr.Zero); private static readonly Font DefaultFont = SystemFonts.DefaultFont; private static readonly object GdiLock = new object(); public TextSplitResult(List lines) { Lines = lines; LengthPixels = new List(); if (Configuration.Settings.Tools.AutoBreakUsePixelWidth) { lock (GdiLock) { var lineOneWidth = Graphics.MeasureString(Lines[0], DefaultFont).Width; LengthPixels.Add(lineOneWidth); } lock (GdiLock) { var lineTwoWidth = Graphics.MeasureString(Lines[1], DefaultFont).Width; LengthPixels.Add(lineTwoWidth); } if (Math.Abs(SpaceLengthPixels) < 0.01) { lock (GdiLock) { SpaceLengthPixels = Graphics.MeasureString(" ", DefaultFont).Width; } } } LengthCharacters = new List(); foreach (var line in lines) { LengthCharacters.Add(line.Length); } } public bool IsLineLengthOkay(int singleLineMaxLength) { return Lines[0].Length <= singleLineMaxLength && Lines[1].Length <= singleLineMaxLength; } public double DiffFromAverage() { var avg = TotalLength / Lines.Count; return Lines.Sum(line => Math.Abs(avg - line.Length)); } public double DiffFromAveragePixel() { var avg = TotalLengthPixels / Lines.Count; return LengthPixels.Sum(w => Math.Abs(avg - w)); } public double DiffFromAveragePixelBottomHeavy() { var avg = TotalLengthPixels / Lines.Count; double diff = 0; double bottomHeavyPercentageFactor = 0; if (Configuration.Settings.Tools.AutoBreakPreferBottomHeavy) { bottomHeavyPercentageFactor = Configuration.Settings.Tools.AutoBreakPreferBottomPercent / 100.0; } var bottomDiffPixels = avg * bottomHeavyPercentageFactor; diff += Math.Abs(avg - bottomDiffPixels - LengthPixels[0]); diff += Math.Abs(avg + bottomDiffPixels - LengthPixels[1]); return diff; } } }