SubtitleEdit/libse/Interfaces/IBinaryParagraph.cs
niksedk 21c51290ba Allow some image to image convert in Batch Convert - thx Tim :)
sup -> sup or bdn/xml or dost or vobsub
2019-08-01 18:14:30 +02:00

11 lines
184 B
C#

using System.Drawing;
namespace Nikse.SubtitleEdit.Core.Interfaces
{
public interface IBinaryParagraph
{
bool IsForced { get; }
Bitmap GetBitmap();
}
}