Tuesday, January 22, 2013

Where can I find Old Hebrew Letters in Vector form?

Q. Im a graphic designer at a t-shirt company and sometimes we do designs for Bar and Bat Mitzvahs. Occasionally, people request Hebrew Letters in their design. Does anybody know where I can get the Hebrew letters in a Vector format or very very high resolution file?

A. There are Hebrew TrueType/OpenType fonts from Windows, and Mac, and some FreeType fonts for Linux.
Adobe's software have ME ("Middle East") versions that supports writing from right to left, but even the normal versions let use Hebrew fonts (you just have to type from left to right, which shouldn't be a problem if you don't know Hebrew anyway)

What's the best free vector program to vector my little ponies?
Q. Hello I'd really like to start vectoring cartoons(not just MLP) I do have photoshop CS5 but Im having a hard time figuring it out and a lot of other adobe products are way too expensive so does anyone know where I can get a free program that's made to vector/trace art??

A. One vector program that I know of that is free is Inkscape. It is completely free, open source, and available on Win, Mac, and Linux. I've seen posts by brony artists saying they made their picture in inkscape.

Hopethis helps,
Brohoof forever.

How do I read in file names in a directory for C++?
Q. I'm making a program in C++ using Linux and I have a folder in which there lies 25 different word documents. I am going to create a loop to open each document and browse it, but I am unsure of how to get the names of the documents out of that folder so that I can open them for file transfer.

Does anyone know how I could do this? Thanks.

A. Read this - http://www.gnu.org/software/libc/manual/html_node/File-System-Interface.html#File-System-Interface

I wrote a simple program, you can modify it as you wish:

#include <sys/types.h>
#include <dirent.h>
#include <errno.h>
#include <vector>
#include <string>
#include <iostream>

using namespace std;

//Nice function to have
int getdir (string dir, vector<string> &files)
{
DIR *dp;
struct dirent *dirp;
if((dp = opendir(dir.c_str())) == NULL) {
cout << "Error(" << errno << ") opening " << dir << endl;
return errno;
}

while ((dirp = readdir(dp)) != NULL) {
files.push_back(string(dirp->d_name));
}
closedir(dp);
return 0;
}

int main()
{
string dir = string(".");
vector<string> files = vector<string>();

getdir(dir,files);

for (unsigned int i = 0;i < files.size();i++) {
cout << files[i] << endl;
}
return 0;
}



Nec Projector Review

Plastic Shed Reviews

Ati Graphic Reviews

Nurse Uniforms Reviews

Cabochons Reviews

Inflatable Water Slides Reviews

Barcode Scanner Reviews

No comments:

Post a Comment