Img.cs
Description du code
Img.cs est un fichier du projet BiblioBrol.Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/src/.
Projet BiblioBrol :
Gestion de media en CSharp.
Pour plus d'infos, vous pouvez consulter la brève analyse.
Code source ou contenu du fichier
Code c# (Img.cs) (88 lignes)
using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using System.IO; using be.gaudry.bibliobrol.model; using System.Drawing; using System.Resources; using be.gaudry.observer; using be.gaudry.model.drawing; using be.gaudry.bibliobrol.config; namespace be.gaudry.bibliobrol.view.utils { public class Img : ImageHelper { /// <summary> /// Get an image from the resource file /// </summary> /// <param name="typeName">Name of the brolType</param> /// <returns>Requested image or default imageif not found</returns> public static Image getTypeImage(String typeName) { Image img; try { //try to find user custom image img = new System.Drawing.Bitmap(String.Format("{0}{1}{2}.gif", Config.ImgAppDir, Path.DirectorySeparatorChar, typeName)); } catch { //try to find image in the resources img = rm.GetObject(String.Format("{0}TypeSmall", typeName)) as Bitmap; if (img == null) { //use default image img = global::be.gaudry.bibliobrol.Properties.Resources.defaultTypeSmall; } } return img; } /// <summary> /// Get person's image file path. Needed to have each time a same naming method. /// </summary> /// <returns>(String) Path of the person image file</returns> public static String getPersImgPath(Person person) { if (person == null) return ""; /*StringBuilder s = new StringBuilder(RefactoredConfig.ImgAppDir); if(person.LastName!=null) s.Append(person.LastName.Trim().ToLower()); s.Append("_"); if (person.FirstName != null) s.Append(person.FirstName.Trim().ToLower()); s.Append(".jpg"); return s.ToString();*/ return string.Format("{0}{1}{2}.jpg", Config.ImgPersDir, Path.DirectorySeparatorChar, person.Id); } /// <summary> /// Get person's image file path. Needed to have each time a same naming method. /// </summary> /// <returns>(String) Path of the person image file</returns> public static String getPersImgPath(PersonLO person) { if (person == null) return ""; /*StringBuilder s = new StringBuilder(RefactoredConfig.ImgAppDir); s.Append(person.Text.Replace(' ','_')); s.Append(".jpg"); return s.ToString();*/ return string.Format("{0}{1}{2}.jpg", Config.ImgAppDir, Path.DirectorySeparatorChar, person.Id); } /// <summary> /// Get brol's image file path. Needed to have each time a same naming method. /// </summary> /// <returns>(String) Path of the brol image file</returns> public static String getBrolImgPath(Brol brol) { if (brol==null || brol.Id < 1) return ""; s.Append(Path.DirectorySeparatorChar); s.Append(brol.Id); s.Append(".jpg"); return s.ToString(); } } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Pas de sous-répertoires. | |||
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1731638218 15/11/2024 03:36:58 |
Utilisation de l'explorateur de code
- Navigation :
- Un clic sur une icône de répertoire ouvre ce répertoire pour en afficher les fichiers.
- Lorsque le répertoire en cours ne contient pas de sous-répertoires il est possible de remonter vers le répertoire parent.
- La structure de répertoires en treetable (tableau en forme d'arborescence) n'est plus possibledans cette version.
- Un clic sur une icône de fichier ouvre ce fichier pour en afficher le code avec la coloration syntaxique adaptée en fonction du langage principal utilisé dans le fichier.
- Affichage :
- Il est possible de trier les répertoires ou les fichiers selon certains critères (nom, taille, date).
- Actions :
- Les actions possible sur les fichiers dépendent de vos droits d'utilisateur sur le site. Veuillez activer le mode utilisateur pour activer les actions.
Version en cache
15/11/2024 03:36:58 Cette version de la page est en cache (à la date du 15/11/2024 03:36:58) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 16/10/2009, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/cs-bibliobrol-source-rf-view/utils/Img.cs.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.