本文整理汇总了C#中Nikse.SubtitleEdit.Logic.NikseBitmap.ConverToFourColors方法的典型用法代码示例。如果您正苦于以下问题:C# NikseBitmap.ConverToFourColors方法的具体用法?C# NikseBitmap.ConverToFourColors怎么用?C# NikseBitmap.ConverToFourColors使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Nikse.SubtitleEdit.Logic.NikseBitmap
的用法示例。
在下文中一共展示了NikseBitmap.ConverToFourColors方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GenerateImageFromTextWithStyle
private Bitmap GenerateImageFromTextWithStyle(Paragraph p, out MakeBitmapParameter mbp)
{
mbp = new MakeBitmapParameter();
mbp.P = p;
if (_vobSubOcr != null)
{
var index = _subtitle.GetIndex(p);
if (index >= 0)
return _vobSubOcr.GetSubtitleBitmap(index);
}
mbp.AlignLeft = comboBoxHAlign.SelectedIndex == 0;
mbp.AlignRight = comboBoxHAlign.SelectedIndex == 2;
mbp.SimpleRendering = checkBoxSimpleRender.Checked;
mbp.BorderWidth = _borderWidth;
mbp.BorderColor = _borderColor;
mbp.SubtitleFontName = _subtitleFontName;
mbp.SubtitleColor = _subtitleColor;
mbp.SubtitleFontSize = _subtitleFontSize;
mbp.SubtitleFontBold = _subtitleFontBold;
mbp.LineHeight = (int) numericUpDownLineSpacing.Value;
if (_format.HasStyleSupport && !string.IsNullOrEmpty(p.Extra))
{
if (_format.GetType() == typeof(SubStationAlpha))
{
var style = AdvancedSubStationAlpha.GetSsaStyle(p.Extra, _subtitle.Header);
mbp.SubtitleColor = style.Primary;
mbp.SubtitleFontBold = style.Bold;
mbp.SubtitleFontSize = style.FontSize;
if (style.BorderStyle == "3")
{
mbp.BackgroundColor = style.Background;
}
}
else if (_format.GetType() == typeof(AdvancedSubStationAlpha))
{
var style = AdvancedSubStationAlpha.GetSsaStyle(p.Extra, _subtitle.Header);
mbp.SubtitleColor = style.Primary;
mbp.SubtitleFontBold = style.Bold;
mbp.SubtitleFontSize = style.FontSize;
if (style.BorderStyle == "3")
{
mbp.BackgroundColor = style.Outline;
}
}
}
if (comboBoxBorderWidth.SelectedItem.ToString() == Configuration.Settings.Language.ExportPngXml.BorderStyleBoxForEachLine)
{
_borderWidth = 0;
mbp.BackgroundColor = panelBorderColor.BackColor;
mbp.BoxSingleLine = true;
}
else if (comboBoxBorderWidth.SelectedItem.ToString() == Configuration.Settings.Language.ExportPngXml.BorderStyleOneBox)
{
_borderWidth = 0;
mbp.BackgroundColor = panelBorderColor.BackColor;
}
int width = 0;
int height = 0;
GetResolution(ref width, ref height);
mbp.ScreenWidth = width;
mbp.ScreenHeight = height;
mbp.Type3D = comboBox3D.SelectedIndex;
mbp.Depth3D = (int)numericUpDownDepth3D.Value;
mbp.BottomMargin = comboBoxBottomMargin.SelectedIndex;
mbp.ShadowWidth = comboBoxShadowWidth.SelectedIndex;
mbp.ShadowAlpha = (int)numericUpDownShadowTransparency.Value;
mbp.ShadowColor = panelShadowColor.BackColor;
mbp.LineHeight = (int)numericUpDownLineSpacing.Value;
if (_exportType == "VOBSUB" || _exportType == "STL" || _exportType == "SPUMUX")
{
mbp.LineJoinRound = true;
}
var bmp = GenerateImageFromTextWithStyle(mbp);
if (_exportType == "VOBSUB" || _exportType == "STL" || _exportType == "SPUMUX")
{
var nbmp = new NikseBitmap(bmp);
nbmp.ConverToFourColors(Color.Transparent, _subtitleColor, _borderColor, !checkBoxTransAntiAliase.Checked);
var temp = nbmp.GetBitmap();
bmp.Dispose();
return temp;
}
return bmp;
}