Hi Robin,<br><br>There are lots of different ways to do what you want. From Drupal&#39;s perspective there is no difference between a photo and an image for graphics purposes. Some of the things that will determine what route you take:<br>
<br>1. Do you need <i>inline</i> insertion of images? You&#39;ve got a lot more choices, especially if editors are not technical people, if you do<i> not </i>need inline insertion. Probably imagefield, filefield, or asset modules in combination with imagecache would provide the most flexible results and would be quite easy for the end user. Placement of the images is done via theming and provides a really consistent look that editors can&#39;t break.<br>
<br>2. If you do need inline insertion -- you&#39;ve got the image/img_assist combination. The problem with image module in general is that it creates a node for each image. Nodes come with a lot of overhead and most people say, if an image isn&#39;t going to benefit from being a node, then don&#39;t use image module. If you are using TinyMCE on your site then asset module in combination with TinyMCE could be a great solution. A popular lightweight solution for folks needing inline images is the IMCE module, and it&#39;s really robust in Drupal 6. As you suggested, you can simply upload your images to your server (or any server actually, doesn&#39;t need to be hosting your Drupal site) and use img tags. Just make sure its in your files directory if you have them local. You can create a new folder for easier organization though using the same directory as another image module would probably be okay. But even if you are going to put the image tag directly in the content, I&#39;d recommend the image tag in combination with Drupal core&#39;s upload module. After you&#39;ve uploaded the image, the upload module provides you with the url which you can put in the img tag. That way the node itself would have a reference to the image or images you are using in that node. Make sure your imput format is set to accept the img tag.<br>
<br>Lots of choices... ultimately you&#39;ll choose a way -- which, based on your learning... may not be what you choose next time. That&#39;s Drupal for you!<br><br>Let us know what you do,<br><br>Shai<br><br><div class="gmail_quote">
On Tue, Dec 23, 2008 at 7:30 AM, Clarke Robin <span dir="ltr">&lt;<a href="mailto:Robin.Clarke@networkrail.co.uk">Robin.Clarke@networkrail.co.uk</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi all,<br>
<br>
I have a question around the best way to handle images refereed to by the HTML for the body of a page type node. To be more specific, I am not talking about general photographs, for which I would use the Image module to handle resizing and galleries, but graphic type images.<br>

<br>
These images are generally used for diagrams or graphs in newspaper articles to break up all the text. A good example is the graph at the top of the article on this page - <a href="http://news.bbc.co.uk/1/hi/business/7764741.stm" target="_blank">http://news.bbc.co.uk/1/hi/business/7764741.stm</a><br>

<br>
How should I add these kinds of images to Drupal? Should I even add them to Drupal (e.g. using Upload or Image, etc)?<br>
<br>
Or should I just FTP the files to my web server, and then refer to them in the &lt;img&gt; tag directly? e.g. &lt;img src=&quot;/some_directory/my_image.gif&quot;&gt;<br>
<br>
If FTP-ing the files, which is the best folder to store the file in? (Would storing these files in the &#39;images&#39; folder cause confusion with the Image module, and some with the &#39;files&#39; and Upload module?)<br>

<br>
Is there a &#39;best practise&#39; for this?<br>
<br>
<br>
<br>
Many thanks<br>
<br>
robin<br>
<br>
<br>
****************************************************************************************************************************************************************<br>
<br>
The content of this email (and any attachment) is confidential. It may also be legally privileged or otherwise protected from disclosure.<br>
<br>
This email should not be used by anyone who is not an original intended recipient, nor may it be copied or disclosed to anyone who is not an original intended recipient.<br>
<br>
If you have received this email by mistake please notify us by emailing the sender, and then delete the email and any copies from your system.<br>
<br>
Liability cannot be accepted for statements made which are clearly the senders own and not made on behalf of Network Rail.<br>
<br>
Network Rail Infrastructure Limited registered in England and Wales No. 2904587, registered office Kings Place, 90 York Way London N1 9AG<br>
<br>
****************************************************************************************************************************************************************<br>
<br>
<br>--<br>
[ Drupal support list | <a href="http://lists.drupal.org/" target="_blank">http://lists.drupal.org/</a> ]<br></blockquote></div><br>