As mentioned, your proposed companies are not related to tech at all, and this logo was in a kit of high tech logos, not low tech. Your proposed solution has no context to the OP's original question.
Also, the original poster has been inactive since posting the question (and has not visited this site in over two months - Last Activity: Oct 30th, 2019) ; so the question is moot.
Moderator's Comments:
Thread Closed - Original Poster Not Active for Three Months - Last Post by OP: Does anyone know what technology this logo belongs to? Sep 21st, 2019 05:09 AM - Consider reopening this discussion when and if the OP returns to the site or show interest in this topic. See email to OP:
Hi All
I'm not sure if anyone else notices this or not - however when I view the unix.com forums in Windows, the flash logo at the top of the page absolutely kills my performance - CPU usage rockets to 100%! If you open the task manager and monitor performance, and slowly scroll down so that the... (1 Reply)
hiho,
where are the frisky CDE admins.... ;-)
how can i change the welcome logo?
i found the /usr/dt/config/C/Xresources
and the entry:
Dtlogin*logo*bitmapFile:
but when i enter my own *.bm or *.xpm file the screen use a black logo.... i think i am using the wrong resolution for my picture...... (3 Replies)
let I executed the following command:
ls -lrt mdase mvfile test | grep '\.xml'
the output is :
-rw-r--r-- 1 surjya other 0 Sep 23 16:25 sample.xml
-rw-r--r-- 1 surjya other 0 Oct 5 16:11 tst2.xml
-rw-r--r-- 1 surjya other 0 Oct 5 16:12 test3.xml... (1 Reply)
I saw this on another board, and burst out laughing.
http://www.brandsoftheworld.com/brands/0011/0070/brand.gif
Apparently it's a new logo (may even be a new name) for a clothing line.
Check them out: www.A-Style.it (9 Replies)
While doing a "little" clean up job, i noticed something weird...
A ls -altr of my / showed this:
drwxr-xr-x 1549 johcham grands 102400 Jan 28 13:13 home
How can a user become the owner / modify the group of my /home??? any thoughts? Can i chown this back to bin:bin (i think that... (2 Replies)
Discussion started by: Stephan
2 Replies
LEARN ABOUT PHP
ps_begin_template
PS_BEGIN_TEMPLATE(3) 1 PS_BEGIN_TEMPLATE(3)ps_begin_template - Start a new templateSYNOPSIS
int ps_begin_template (resource $psdoc, float $width, float $height)
DESCRIPTION
Starts a new template. A template is called a form in the postscript language. It is created similar to a pattern but used like an image.
Templates are often used for drawings which are placed several times through out the document, e.g. like a company logo. All drawing func-
tions may be used within a template. The template will not be drawn until it is placed by ps_place_image(3).
PARAMETERS
o $psdoc
- Resource identifier of the postscript file as returned by ps_new(3).
o $width
- The width of the template in pixel.
o $height
- The height of the template in pixel.
RETURN VALUES
Returns TRUE on success or FALSE on failure.
EXAMPLES
Example #1
Creating and using a template
<?php
$ps = ps_new();
if (!ps_open_file($ps, "template.ps")) {
print "Cannot open PostScript file
";
exit;
}
ps_set_parameter($ps, "warning", "true");
ps_set_info($ps, "Creator", "template.php");
ps_set_info($ps, "Author", "Uwe Steinmann");
ps_set_info($ps, "Title", "Template example");
$pstemplate = ps_begin_template($ps, 30.0, 30.0);
ps_moveto($ps, 0, 0);
ps_lineto($ps, 30, 30);
ps_moveto($ps, 0, 30);
ps_lineto($ps, 30, 0);
ps_stroke($ps);
ps_end_template($ps);
ps_begin_page($ps, 596, 842);
ps_place_image($ps, $pstemplate, 20.0, 20.0, 1.0);
ps_place_image($ps, $pstemplate, 50.0, 30.0, 0.5);
ps_place_image($ps, $pstemplate, 70.0, 70.0, 0.6);
ps_place_image($ps, $pstemplate, 30.0, 50.0, 1.3);
ps_end_page($ps);
ps_close($ps);
ps_delete($ps);
?>
SEE ALSO ps_end_template(3).
PHP Documentation Group PS_BEGIN_TEMPLATE(3)