PrivateFontCollection.cs 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. //
  2. // System.Drawing.Text.PrivateFontCollection.cs
  3. //
  4. // (C) 2002 Ximian, Inc. http://www.ximian.com
  5. // Author: Everaldo Canuto [email protected]
  6. // Sanjay Gupta ([email protected])
  7. // Peter Dennis Bartok ([email protected])
  8. //
  9. //
  10. // Copyright (C) 2004 - 2006 Novell, Inc (http://www.novell.com)
  11. //
  12. // Permission is hereby granted, free of charge, to any person obtaining
  13. // a copy of this software and associated documentation files (the
  14. // "Software"), to deal in the Software without restriction, including
  15. // without limitation the rights to use, copy, modify, merge, publish,
  16. // distribute, sublicense, and/or sell copies of the Software, and to
  17. // permit persons to whom the Software is furnished to do so, subject to
  18. // the following conditions:
  19. //
  20. // The above copyright notice and this permission notice shall be
  21. // included in all copies or substantial portions of the Software.
  22. //
  23. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  24. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  25. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  26. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  27. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  28. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  29. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  30. //
  31. using System.IO;
  32. using System.Security.Permissions;
  33. using System.Runtime.InteropServices;
  34. namespace System.Drawing.Text {
  35. public sealed class PrivateFontCollection : FontCollection {
  36. // constructors
  37. public PrivateFontCollection ()
  38. {
  39. Status status = GDIPlus.GdipNewPrivateFontCollection (out nativeFontCollection);
  40. GDIPlus.CheckStatus (status);
  41. }
  42. // methods
  43. public void AddFontFile (string filename)
  44. {
  45. if (filename == null)
  46. throw new ArgumentNullException ("filename");
  47. // this ensure the filename is valid (or throw the correct exception)
  48. string fname = Path.GetFullPath (filename);
  49. if (!File.Exists (fname))
  50. throw new FileNotFoundException ();
  51. // note: MS throw the same exception FileNotFoundException if the file exists but isn't a valid font file
  52. Status status = GDIPlus.GdipPrivateAddFontFile (nativeFontCollection, fname);
  53. GDIPlus.CheckStatus (status);
  54. }
  55. [SecurityPermission (SecurityAction.Demand, UnmanagedCode = true)]
  56. public void AddMemoryFont (IntPtr memory, int length)
  57. {
  58. // note: MS throw FileNotFoundException if something is bad with the data (except for a null pointer)
  59. Status status = GDIPlus.GdipPrivateAddMemoryFont (nativeFontCollection, memory, length);
  60. GDIPlus.CheckStatus (status);
  61. }
  62. // methods
  63. protected override void Dispose (bool disposing)
  64. {
  65. if (nativeFontCollection!=IntPtr.Zero) {
  66. GDIPlus.GdipDeletePrivateFontCollection (ref nativeFontCollection);
  67. // This must be zeroed out, otherwise our base will also call
  68. // the GDI+ delete method on unix platforms. We're keeping the
  69. // base.Dispose() call in case other cleanup ever gets added there
  70. nativeFontCollection = IntPtr.Zero;
  71. }
  72. base.Dispose (disposing);
  73. }
  74. }
  75. }