mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2024-11-24 11:42:00 -08:00
326 lines
12 KiB
C#
326 lines
12 KiB
C#
|
/*
|
|||
|
* Misc.cs
|
|||
|
* Copyright (c) 2008-2009 kbinani
|
|||
|
*
|
|||
|
* This file is part of Boare.Lib.AppUtil.
|
|||
|
*
|
|||
|
* Boare.Lib.AppUtil is free software; you can redistribute it and/or
|
|||
|
* modify it under the terms of the BSD License.
|
|||
|
*
|
|||
|
* Boare.Lib.AppUtil is distributed in the hope that it will be useful,
|
|||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|||
|
*/
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using System.Drawing;
|
|||
|
using System.Windows.Forms;
|
|||
|
using System.Drawing.Imaging;
|
|||
|
using System.Reflection;
|
|||
|
using System.IO;
|
|||
|
|
|||
|
namespace Boare.Lib.AppUtil {
|
|||
|
|
|||
|
public static partial class Misc {
|
|||
|
/// <summary>
|
|||
|
/// 指定したディレクトリに作成可能な、一時ファイル名を取得します
|
|||
|
/// </summary>
|
|||
|
/// <param name="directory">ディレクトリ</param>
|
|||
|
/// <returns></returns>
|
|||
|
public static string GetTempFileNameIn( string directory ) {
|
|||
|
for ( uint i = uint.MinValue; i <= uint.MaxValue; i++ ) {
|
|||
|
string file = Path.Combine( directory, "temp" + i );
|
|||
|
if ( !File.Exists( file ) ) {
|
|||
|
return file;
|
|||
|
}
|
|||
|
}
|
|||
|
return "";
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 指定したディレクトリに作成可能な、一時ファイル名を取得します
|
|||
|
/// </summary>
|
|||
|
/// <param name="directory">ディレクトリ</param>
|
|||
|
/// <param name="extention">拡張子(ex. ".txt")</param>
|
|||
|
/// <returns></returns>
|
|||
|
public static string GetTempFileNameIn( string directory, string extention ){
|
|||
|
for ( uint i = uint.MinValue; i <= uint.MaxValue; i++ ) {
|
|||
|
string file = Path.Combine( directory, "temp" + i + extention );
|
|||
|
if ( !File.Exists( file ) ) {
|
|||
|
return file;
|
|||
|
}
|
|||
|
}
|
|||
|
return "";
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 指定した画像ファイルから新しいBitmapオブジェクトを作成します
|
|||
|
/// </summary>
|
|||
|
/// <param name="file"></param>
|
|||
|
/// <returns></returns>
|
|||
|
public static Bitmap BitmapFromStream( string file ) {
|
|||
|
if ( !File.Exists( file ) ) {
|
|||
|
return null;
|
|||
|
}
|
|||
|
FileStream fs = new FileStream( file, FileMode.Open );
|
|||
|
Bitmap ret = new Bitmap( fs );
|
|||
|
fs.Close();
|
|||
|
return ret;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 指定した画像ファイルから新しいImageオブジェクトを作成します
|
|||
|
/// </summary>
|
|||
|
/// <param name="file"></param>
|
|||
|
/// <returns></returns>
|
|||
|
public static Image ImageFromStream( string file ) {
|
|||
|
if ( !File.Exists( file ) ) {
|
|||
|
return null;
|
|||
|
}
|
|||
|
FileStream fs = new FileStream( file, FileMode.Open );
|
|||
|
Image ret = Image.FromStream( fs );
|
|||
|
fs.Close();
|
|||
|
return ret;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// ImageFormatから,デフォルトの拡張子を取得します
|
|||
|
/// </summary>
|
|||
|
/// <param name="format"></param>
|
|||
|
/// <returns></returns>
|
|||
|
public static string GetExtensionFromImageFormat( ImageFormat format ) {
|
|||
|
switch ( format.ToString().ToLower() ) {
|
|||
|
case "bmp":
|
|||
|
return "bmp";
|
|||
|
case "emf":
|
|||
|
return "emf";
|
|||
|
case "gif":
|
|||
|
return "gif";
|
|||
|
case "jpeg":
|
|||
|
return "jpg";
|
|||
|
case "png":
|
|||
|
return "png";
|
|||
|
case "tiff":
|
|||
|
return "tiff";
|
|||
|
case "wmf":
|
|||
|
return "wmf";
|
|||
|
default:
|
|||
|
return "";
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// System.Drawimg.Imaging.ImageFormatで使用可能なフォーマットの一覧を取得します
|
|||
|
/// </summary>
|
|||
|
/// <returns></returns>
|
|||
|
public static ImageFormat[] GetImageFormats() {
|
|||
|
#if DEBUG
|
|||
|
Console.WriteLine( "GetImageFormats()" );
|
|||
|
#endif
|
|||
|
PropertyInfo[] properties = typeof( System.Drawing.Imaging.ImageFormat ).GetProperties();
|
|||
|
List<ImageFormat> ret = new List<ImageFormat>();
|
|||
|
foreach ( PropertyInfo pi in properties ) {
|
|||
|
if ( pi.PropertyType.Equals( typeof( System.Drawing.Imaging.ImageFormat ) ) ) {
|
|||
|
ImageFormat ifmt = (System.Drawing.Imaging.ImageFormat)pi.GetValue( null, null );
|
|||
|
#if DEBUG
|
|||
|
Console.WriteLine( ifmt.ToString() );
|
|||
|
#endif
|
|||
|
ret.Add( ifmt );
|
|||
|
}
|
|||
|
}
|
|||
|
return ret.ToArray();
|
|||
|
}
|
|||
|
|
|||
|
public static void RgbToHsv( int r, int g, int b, out double h, out double s, out double v ) {
|
|||
|
RgbToHsv( r / 255.0, g / 255.0, b / 255.0, out h, out s, out v );
|
|||
|
}
|
|||
|
|
|||
|
public static void RgbToHsv( double r, double g, double b, out double h, out double s, out double v ) {
|
|||
|
double tmph, imax, imin;
|
|||
|
const double sqrt3 = 1.7320508075688772935274463415059;
|
|||
|
imax = Math.Max( r, Math.Max( g, b ) );
|
|||
|
imin = Math.Min( r, Math.Min( g, b ) );
|
|||
|
if ( imax == 0.0 ) {
|
|||
|
h = 0;
|
|||
|
s = 0;
|
|||
|
v = 0;
|
|||
|
return;
|
|||
|
} else if ( imax == imin ) {
|
|||
|
tmph = 0;
|
|||
|
} else {
|
|||
|
if ( r == imax ) {
|
|||
|
tmph = 60.0 * (g - b) / (imax - imin);
|
|||
|
} else if ( g == imax ) {
|
|||
|
tmph = 60.0 * (b - r) / (imax - imin) + 120.0;
|
|||
|
} else {
|
|||
|
tmph = 60.0 * (r - g) / (imax - imin) + 240.0;
|
|||
|
}
|
|||
|
}
|
|||
|
while ( tmph < 0.0 ) {
|
|||
|
tmph = tmph + 360.0;
|
|||
|
}
|
|||
|
while ( tmph >= 360.0 ) {
|
|||
|
tmph = tmph - 360.0;
|
|||
|
}
|
|||
|
h = tmph / 360.0;
|
|||
|
s = (imax - imin) / imax;
|
|||
|
v = imax;
|
|||
|
}
|
|||
|
|
|||
|
/*public static void RgbToHsv( double r, double g, double b, out double h, out double s, out double v ) {
|
|||
|
double tmph, imax, imin;
|
|||
|
const double sqrt3 = 1.7320508075688772935274463415059;
|
|||
|
const double deg2rad = 180.0 / Math.PI;
|
|||
|
imax = Math.Max( r, Math.Max( g, b ) );
|
|||
|
imin = Math.Min( r, Math.Min( g, b ) );
|
|||
|
if ( imax == 0.0 ) {
|
|||
|
h = 0;
|
|||
|
s = 0;
|
|||
|
v = 0;
|
|||
|
return;
|
|||
|
} else if ( imax == imin ) {
|
|||
|
tmph = 0;
|
|||
|
} else {
|
|||
|
double x = 2.0 * r - g - b;
|
|||
|
double y = sqrt3 * (g - b);
|
|||
|
if ( x == 0.0 ) {
|
|||
|
if ( y > 0.0 ) {
|
|||
|
tmph = 90.0;
|
|||
|
} else {
|
|||
|
tmph = 270.0;
|
|||
|
}
|
|||
|
} else {
|
|||
|
tmph = Math.Atan2( y, x );
|
|||
|
tmph = tmph * deg2rad;
|
|||
|
}
|
|||
|
}
|
|||
|
while ( tmph < 0.0 ) {
|
|||
|
tmph = tmph + 360.0;
|
|||
|
}
|
|||
|
while ( tmph >= 360.0 ) {
|
|||
|
tmph = tmph - 360.0;
|
|||
|
}
|
|||
|
h = tmph / 360.0;
|
|||
|
s = (imax - imin) / imax;
|
|||
|
v = imax;
|
|||
|
}*/
|
|||
|
|
|||
|
public static Color HsvToColor( double h, double s, double v ) {
|
|||
|
double dr, dg, db;
|
|||
|
HsvToRgb( h, s, v, out dr, out dg, out db );
|
|||
|
return Color.FromArgb( (int)(dr * 255), (int)(dg * 255), (int)(db * 255) );
|
|||
|
}
|
|||
|
|
|||
|
public static void HsvToRgb( double h, double s, double v, out byte r, out byte g, out byte b ) {
|
|||
|
double dr, dg, db;
|
|||
|
HsvToRgb( h, s, v, out dr, out dg, out db );
|
|||
|
r = (byte)(dr * 255);
|
|||
|
g = (byte)(dg * 255);
|
|||
|
b = (byte)(db * 255);
|
|||
|
}
|
|||
|
|
|||
|
public static void HsvToRgb( double h, double s, double v, out double r, out double g, out double b ) {
|
|||
|
double f, p, q, t, hh;
|
|||
|
int hi;
|
|||
|
r = g = b = 0.0;
|
|||
|
if ( s == 0 ) {
|
|||
|
r = v;
|
|||
|
g = v;
|
|||
|
b = v;
|
|||
|
} else {
|
|||
|
hh = h * 360.0;
|
|||
|
hi = (int)(hh / 60.0) % 6;
|
|||
|
f = hh / 60.0 - (double)(hi);
|
|||
|
p = v * (1.0 - s);
|
|||
|
q = v * (1.0 - f * s);
|
|||
|
t = v * (1.0 - (1.0 - f) * s);
|
|||
|
switch ( hi ) {
|
|||
|
case 0:
|
|||
|
r = v;
|
|||
|
g = t;
|
|||
|
b = p;
|
|||
|
break;
|
|||
|
case 1:
|
|||
|
r = q;
|
|||
|
g = v;
|
|||
|
b = p;
|
|||
|
break;
|
|||
|
case 2:
|
|||
|
r = p;
|
|||
|
g = v;
|
|||
|
b = t;
|
|||
|
break;
|
|||
|
case 3:
|
|||
|
r = p;
|
|||
|
g = q;
|
|||
|
b = v;
|
|||
|
break;
|
|||
|
case 4:
|
|||
|
r = t;
|
|||
|
g = p;
|
|||
|
b = v;
|
|||
|
break;
|
|||
|
case 5:
|
|||
|
r = v;
|
|||
|
g = p;
|
|||
|
b = q;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 指定された文字列を指定されたフォントで描画したときのサイズを計測します。
|
|||
|
/// </summary>
|
|||
|
/// <param name="text"></param>
|
|||
|
/// <param name="font"></param>
|
|||
|
/// <returns></returns>
|
|||
|
public static Size MeasureString( string text, Font font ) {
|
|||
|
using ( Bitmap dumy = new Bitmap( 1, 1 ) )
|
|||
|
using ( Graphics g = Graphics.FromImage( dumy ) ) {
|
|||
|
SizeF tmp = g.MeasureString( text, font );
|
|||
|
return new Size( (int)tmp.Width, (int)tmp.Height );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 指定したコントロールと、その子コントロールのフォントを変更します
|
|||
|
/// </summary>
|
|||
|
/// <param name="c"></param>
|
|||
|
/// <param name="font"></param>
|
|||
|
public static void ApplyFontRecurse( Control c, Font font ) {
|
|||
|
c.Font = font;
|
|||
|
for ( int i = 0; i < c.Controls.Count; i++ ) {
|
|||
|
ApplyFontRecurse( c.Controls[i], font );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///
|
|||
|
/// </summary>
|
|||
|
/// <param name="start1"></param>
|
|||
|
/// <param name="end1"></param>
|
|||
|
/// <param name="start2"></param>
|
|||
|
/// <param name="end2"></param>
|
|||
|
/// <returns></returns>
|
|||
|
public static bool IsOverwrapped( double start1, double end1, double start2, double end2 ) {
|
|||
|
if ( start2 <= start1 && start1 < end2 ) {
|
|||
|
return true;
|
|||
|
} else if ( start2 < end1 && end1 < end2 ) {
|
|||
|
return true;
|
|||
|
} else {
|
|||
|
if ( start1 <= start2 && start2 < end1 ) {
|
|||
|
return true;
|
|||
|
} else if ( start1 < end2 && end2 < end1 ) {
|
|||
|
return true;
|
|||
|
} else {
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|