2015-08-26 22:42:40 +02:00
|
|
|
|
namespace Nikse.SubtitleEdit.Core
|
|
|
|
|
{
|
|
|
|
|
public class ImageSplitterItem
|
|
|
|
|
{
|
|
|
|
|
public int X { get; set; }
|
|
|
|
|
public int Y { get; set; }
|
|
|
|
|
public int ParentY { get; set; }
|
2016-05-06 15:38:22 +02:00
|
|
|
|
public int Top { get; set; }
|
2015-08-26 22:42:40 +02:00
|
|
|
|
public NikseBitmap NikseBitmap { get; set; }
|
|
|
|
|
public string SpecialCharacter { get; set; }
|
|
|
|
|
|
|
|
|
|
public ImageSplitterItem(int x, int y, NikseBitmap bitmap)
|
|
|
|
|
{
|
|
|
|
|
X = x;
|
|
|
|
|
Y = y;
|
|
|
|
|
NikseBitmap = bitmap;
|
|
|
|
|
SpecialCharacter = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ImageSplitterItem(string specialCharacter)
|
|
|
|
|
{
|
|
|
|
|
X = 0;
|
|
|
|
|
Y = 0;
|
|
|
|
|
SpecialCharacter = specialCharacter;
|
|
|
|
|
NikseBitmap = null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|