1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- using System.Drawing;
- using System.IO;
- using System.Windows.Forms;
- namespace FastReport.Utils
- {
- partial class ResourceLoader
- {
- /// <summary>
- /// Gets a bitmap from specified assembly resource.
- /// </summary>
- /// <param name="assembly">Assembly name.</param>
- /// <param name="resource">Resource name.</param>
- /// <returns>Bitmap object.</returns>
- public static Bitmap GetBitmap(string assembly, string resource)
- {
- Stream stream = GetStream(assembly, resource);
- if (stream == null)
- return null;
- Bitmap bmp = new Bitmap(stream);
- // To avoid the requirement to keep a stream alive, we clone a bitmap.
- Bitmap result = ImageHelper.CloneBitmap(bmp);
- bmp.Dispose();
- stream.Dispose();
- return result;
- }
- /// <summary>
- /// Gets a bitmap from specified FastReport assembly resource.
- /// </summary>
- /// <param name="resource">Resource name.</param>
- /// <returns>Bitmap object.</returns>
- public static Bitmap GetBitmap(string resource)
- {
- return GetBitmap("FastReport", resource);
- }
- /// <summary>
- /// Gets a cursor from specified assembly resource.
- /// </summary>
- /// <param name="assembly">Assembly name.</param>
- /// <param name="resource">Resource name.</param>
- /// <returns>Cursor object.</returns>
- public static Cursor GetCursor(string assembly, string resource)
- {
- Stream stream = GetStream(assembly, resource);
- Cursor result = new Cursor(stream);
- stream.Dispose();
- return result;
- }
- /// <summary>
- /// Gets a cursor from specified FastReport assembly resource.
- /// </summary>
- /// <param name="resource">Resource name.</param>
- /// <returns>Cursor object.</returns>
- public static Cursor GetCursor(string resource)
- {
- return GetCursor("FastReport", resource);
- }
- /// <summary>
- /// Gets an icon from specified assembly resource.
- /// </summary>
- /// <param name="assembly">Assembly name.</param>
- /// <param name="resource">Resource name.</param>
- /// <returns>Icon object.</returns>
- public static Icon GetIcon(string assembly, string resource)
- {
- Stream stream = GetStream(assembly, resource);
- Icon result = new Icon(stream);
- stream.Dispose();
- return result;
- }
- /// <summary>
- /// Gets an icon from specified FastReport assembly resource.
- /// </summary>
- /// <param name="resource">Resource name.</param>
- /// <returns>Icon object.</returns>
- public static Icon GetIcon(string resource)
- {
- return GetIcon("FastReport", resource);
- }
- }
- }
|