pancakes

MicrostockGroup Sponsors


Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - elvinstar

Pages: 1 ... 28 29 30 31 32 [33] 34 35 36 37 38 ... 46
801
Since I buy photos too, I can't in good conscience recommend IS because of the "Did you mean..." syndrome. I would recommend DT. It seems much faster for me to find what I need and they have a great selection.

802
General Stock Discussion / Re: Who cares they closed StockXpert?
« on: February 11, 2010, 12:34 »
Quote
If they are going to Istock, as directed, you sure wouldn't know it from my sales there.  OTOH if all they see on IS are mostly exclusive images, then that would explain it.  In that case the 7% of my income represented by StockXpert is truly gone.

+1 (except my percentage is closer to 11 or 12%)

803
Dreamstime.com / Re: Featured photographer with only 259 images?
« on: February 11, 2010, 10:42 »
The images that I saw weren't that awe-inspiring. They were nice, quality photos, but nothing made them stand out that much. I think that I may have clicked on a different link or something. My mistake.

804
Dreamstime.com / Re: Featured photographer with only 259 images?
« on: February 10, 2010, 22:28 »
That is weird. I clicked the link for the featured photographer on the home page and that is the information it gave me. Now when I click it is a different photographer than what was was showing before.  ???

805
Dreamstime.com / Featured photographer with only 259 images?
« on: February 10, 2010, 22:13 »
Does anyone besides me think that it's strange that this week's featured photographer only has 259 images at DT? How do they choose the featured photographer anyway?

806
123RF / Re: sales this february!
« on: February 10, 2010, 12:36 »
123 has pretty much always sucked for me. It actually seems a tiny bit better lately.

807
Bigstock.com / Re: Bigstock Sign-in
« on: February 10, 2010, 12:35 »
I just had no problem with Firefox.

808
Photo Critique / Re: Here we go my first vector..what'd think?
« on: February 09, 2010, 23:24 »
Quote
After what you said I think I'll stay away from iStock

I think that with upload limits, that sounds like a fine long-term strategy from my vectors!

809
Photo Critique / Re: Here we go my first vector..what'd think?
« on: February 09, 2010, 17:51 »
Quote
Istock seem to like to see strong drawing in their application files

These weren't application files, just regular uploads.

810
Photo Critique / Re: Here we go my first vector..what'd think?
« on: February 09, 2010, 13:46 »
Quote
I don't know if I'm starting the Art board at the right size or not.


It doesn't matter what size the art board is because you can scale the illustration up if you need to when you create the JPG.

To view requirements for all sites, please view this thread.

Also, size requirements for IS and SS can be found at the end of this very useful tutorial.

811
Photo Critique / Re: Here we go my first vector..what'd think?
« on: February 09, 2010, 13:42 »
Quote
We're sorry, but we found the overall composition of this file lacking visual impact and therefore not suitable as stock. With the rapid growth of the iStock collection, we give valuable consideration to each file but unfortunately cannot accept all submissions. Please don't take it personally. This isn't necessarily a reflection of your skill, rather a decision by iStock to determine commercial applications for your illustration as royalty-free stock.

The same reason for both.

812
Photo Critique / Re: Here we go my first vector..what'd think?
« on: February 09, 2010, 11:03 »
My first two vectors were rejected on iStock today...    :(

813
General Stock Discussion / Re: Vectors
« on: February 06, 2010, 22:25 »
Here are some links for sites with tutorials. http://vector.tutsplus.com/category/tutorials/ http://www.graphicmania.net/35-high-quality-illustrator-tutorials-you-can-not-miss/
http://www.minervity.com/features/illustrator/25-awesome-illustrator-cartoon-tutorials/

This one is about how to create a vector drawing and then how to save it for stock. I found it very helpful.
http://vector.tutsplus.com/tutorials/designing/how-to-create-a-vector-illustration-and-prepare-it-for-micro-stock-sale/#more-2069

How I have taught myself so far was to learn how the pen tool works. That is the tool you will be using most to create your shapes. Then once I understood how it works I then scanned some drawings I had made and I traced them in illustrator. Next learn how to color them in and ad gradients. Something I read somewhere was when using gradients always start off with both sides the same color and then adjust from there. It gives it a much more natural look. other than that once you understand the basic tools start practicing. Good luck!

814
StockXpert.com / Re: Last Stockxpert payout related issue
« on: February 05, 2010, 12:21 »
Leon, I think that it's a great idea! If I had any buyer credits, I would take your suggestion immediately.

815
Photo Critique / Re: Here we go my first vector..what'd think?
« on: February 05, 2010, 10:13 »
Great idea! Thanks for the tip.

816
Quote
Now why do people shots when some local park does so much better?:-)

IMHO, the second people photo would be better if the models were all wearing the same color.

817
Anyone know where i can find source code [java, asp] that reads the IPTC data?

Basically, when i present an image on a webpage, i want to also show its title, desc and keywords; no need to change anything

i've tried google searches, but all i can find are either standalone exif editors/managers, or expensive image management software toolkots that are massive overkill, so i'm looking for something basic and reasonably priced (< $30)

i'd like to avoid activex or other components that each visitor would have to explicitly set up

steve

The code below should do the trick if you're OK with PHP...

Code: [Select]
      if (trim($_FILES['myfiles']['name'][$i])!="")
  {
        $newfile = 'your-image.jpg';
   $size = getimagesize ($newfile, $IIM);       
   if(is_array($IIM))
    {   
    $iptc = iptcparse($IIM["APP13"]);
if (is_array($iptc))
{
    foreach (array_keys($iptc) as $s9)
{             
     $c9 = count ($iptc[$s9]);
     for ($i9=0; $i9 <$c9; $i9++)
           {
   $output = $s9.' = '.$iptc[$s9][$i9];
   $begin = substr($output,0,5);
   $full = strlen($output);
   $len = ($full - 8);
   $word = substr($output,-$len);
        if ($begin == '2#005')
        {
        $title = "$word";
        }
if ($begin == '2#120')
{
$all_about = "$word";
}
if ($begin == '2#025')
{
if (($i9 < 1) or ($i9 > ($c9 - 1)))
{
$comma = '';
}
else
{
$comma = ', ';
}
$the_tags = "$the_tags" . "$comma" . "$word";
}
    }
       }

818
Thank you all so much for the valuable info! It's nice to know that there are still people out there that are willing to help out someone other than just themselves!  ;)

819
I uploaded to just shutterstock first to see if they got approved because I wasn't sure I had saved everything correctly. They approved them so then I uploaded to istock because they had instructions of how to upload. The other sites have nothing, or if they do I couldn't find it. I like to always upload the same files to all the sites every week though. Otherwise it gets very confusing. So this process has been frustrating! It is hard enough to teach yourself a program!

820
Illustration - General / uploading vectors to the different sites
« on: February 03, 2010, 13:41 »
I found this link explaining how to upload vectors to each site. http://www.microstockgroup.com/knowledgebase/doku.php?id=vector I do not however understand dreamstime. It says to upload a jpg first, then an eps file. When do you upload the eps file? After the jpg gets approved or after the jpg shows up in the unfinnished section( I am using ftp to upload)?

Also fotolia it says svg file. What is that? I am only familiar with the eps file.

Finally I would like to say it has been very frustrating trying to learn how to upload vectors to the different sites. Some of them tell you exactly what to do and others there is no information! Thank goodness for the microstock group!!!!  ;D

821
Photo Critique / Re: Here we go my first vector..what'd think?
« on: February 03, 2010, 13:19 »
The light bulb needs Mouse Staches!!!!

822
General Stock Discussion / Re: Who's sending 1099's this year?
« on: February 03, 2010, 08:09 »
I got the following:

SS
DT
FT
BigStock

I think that's all of them.
Ditto. But who knows. There may be more?

Based on last year, that should be it.

823
General Stock Discussion / Re: Who's sending 1099's this year?
« on: February 02, 2010, 12:29 »
I got the following:

SS
DT
FT
BigStock

I think that's all of them.

824
Quote
I think iStock/Getty cares as much about what we think as Fotolia

I don't really think that any site/agency cares about what we think. Why should they? We're just wallets with cameras...

825
Photo Critique / Re: Here we go my first vector..what'd think?
« on: February 01, 2010, 18:22 »
^^ I like it!  ;D

Pages: 1 ... 28 29 30 31 32 [33] 34 35 36 37 38 ... 46

Sponsors

Mega Bundle of 5,900+ Professional Lightroom Presets

Microstock Poll Results

Sponsors