CTDB2.0: coverart search

This commit is contained in:
chudov
2012-01-17 08:04:16 +00:00
parent c74afdd8f4
commit bc3c8a1074
20 changed files with 1178 additions and 404 deletions

View File

@@ -0,0 +1,53 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using System.IO;
namespace CUETools.CTDB.EACPlugin
{
public class InternetImage
{
protected string m_URL = null;
protected Bitmap m_bitmap = null;
protected byte[] m_data = null;
public string URL
{
get
{
return m_URL;
}
set
{
m_URL = value;
}
}
public byte[] Data
{
get
{
return m_data;
}
set
{
m_data = value;
}
}
public Bitmap Image
{
get
{
return m_bitmap;
}
set
{
m_bitmap = value;
}
}
}
}